:root {
  --core-blue:       #1EB8E0;
  --core-blue-dark:  #1598BA;
  --core-blue-mid:   #7DD8EC;
  --core-blue-light: #E3F6FB;
  --core-navy:       #1A1E5B;
  --core-navy-dark:  #0F1240;
  --core-navy-mid:   #2D3478;
  --core-navy-light: #ECEDF7;
  --white:     #FFFFFF;
  --snow:      #F6F9FB;
  --gray-100:  #EAF0F4;
  --gray-300:  #C2CDD6;
  --gray-500:  #7A8FA0;
  --gray-700:  #3D5060;
  --ink:       #1A2533;
  --success:  #1EC97C;
  --warning:  #F5A623;
  --font: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --r-sm:  4px;  --r-md:  8px;  --r-lg: 12px;  --r-xl: 20px;
  --shadow-sm: 0 1px 4px rgba(26,30,91,0.07);
  --shadow-md: 0 3px 12px rgba(26,30,91,0.09);
  --shadow-lg: 0 6px 24px rgba(26,30,91,0.10);
  --shadow-blue: 0 8px 28px rgba(30,184,224,0.18);
  --maxw: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── Eyebrow / section heading ── */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--core-blue-dark);
  margin-bottom: 10px;
}
.sec-head {
  font-size: 30px; font-weight: 700; color: var(--core-navy);
  line-height: 1.3; letter-spacing: -0.4px; margin-bottom: 12px;
}
.sec-desc { color: var(--gray-500); font-size: 16px; max-width: 640px; }
section { padding: 88px 0; }
.sec-snow { background: var(--snow); }
.sec-tint { background: var(--core-blue-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 600; font-family: var(--font);
  border: none; cursor: pointer; line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--core-blue); color: #fff; }
.btn-primary:hover { background: var(--core-blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn-navy { background: var(--core-navy); color: #fff; }
.btn-navy:hover { background: var(--core-navy-dark); transform: translateY(-1px); }
.btn-ghost-light { background: rgba(255,255,255,0.10); color: #fff; border: 1.5px solid rgba(255,255,255,0.28); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }
.btn-outline { background: transparent; color: var(--core-blue-dark); border: 1.5px solid var(--core-blue); }
.btn-outline:hover { background: var(--core-blue-light); }

/* ── Notice bar (상단 공지 띠) ── */
.notice-bar {
  background: var(--core-navy-dark); color: rgba(255,255,255,0.92);
  font-size: 15px;
  border-top: 1px solid rgba(30,184,224,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.notice-bar .nb-inner { display: flex; align-items: center; gap: 16px; height: 52px; }
.notice-bar .nb-tag {
  flex-shrink: 0; font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  background: var(--core-blue); color: #fff; padding: 4px 11px; border-radius: 20px;
}
.notice-bar .nb-track { flex: 1; overflow: hidden; position: relative; height: 26px; }
.notice-bar .nb-item {
  position: absolute; inset: 0; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; opacity: 0; transition: opacity .5s ease;
}
.notice-bar .nb-item.on { opacity: 1; }
.notice-bar .nb-item .nb-date { color: var(--core-blue-mid); font-size: 13px; font-weight: 600; }
.notice-bar .nb-item .nb-txt { overflow: hidden; text-overflow: ellipsis; }
.notice-bar .nb-more {
  flex-shrink: 0; font-size: 13.5px; font-weight: 600; color: var(--core-blue-mid);
  display: inline-flex; align-items: center; gap: 4px;
}
.notice-bar .nb-more:hover { color: #fff; }
.notice-bar .nb-more svg { width: 13px; height: 13px; }
@media (max-width: 560px) { .notice-bar .nb-tag { display: none; } .notice-bar .nb-more span { display: none; } }

/* ── Nav ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .bar { width: 4px; height: 24px; background: var(--core-blue); border-radius: 2px; }
.brand .name { font-size: 19px; font-weight: 700; color: var(--core-navy); letter-spacing: -0.3px; }
.brand .name b { color: var(--core-blue); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--gray-700); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--core-blue-dark); }
.nav-cta { background: var(--core-blue); color: #fff !important; padding: 9px 18px; border-radius: var(--r-md); font-weight: 600; }
.nav-cta:hover { background: var(--core-blue-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--core-navy); margin: 4px 0; border-radius: 2px; }
/* 언어 토글 */
.lang-toggle { display: inline-flex; align-items: center; border: 1px solid var(--gray-300); border-radius: 20px; overflow: hidden; }
.lang-toggle a { font-size: 12.5px; font-weight: 600; padding: 5px 11px; color: var(--gray-500); }
.lang-toggle a.on { background: var(--core-navy); color: #fff; }

/* ── Hero ── */
.hero { background: var(--core-navy); color: #fff; position: relative; overflow: hidden; padding: 110px 0 100px; }
/* 배경 전환 장면 */
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-scene { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-scene.on { opacity: 1; }
.hero-scene svg { width: 100%; height: 100%; display: block; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,30,91,0.94) 0%, rgba(26,30,91,0.78) 42%, rgba(26,30,91,0.35) 100%); pointer-events: none; }
.hero-inner { position: relative; max-width: 720px; z-index: 2; }
.hero .eyebrow { color: var(--core-blue-mid); }
.hero h1 { font-size: 52px; font-weight: 700; line-height: 1.18; letter-spacing: -1px; margin-bottom: 22px; }
.hero h1 .accent { color: var(--core-blue); }
.hero .lead { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 36px; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
/* 협력사 강조 (#10) */
.partner-line { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.partner-line .pl-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 700; }
.partner-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.partner-badges .pb {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(30,184,224,0.35);
  border-radius: 8px; padding: 8px 14px;
}
.partner-badges .pb .pb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--core-blue); flex-shrink: 0; }
.partner-badges .pb .pb-name { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 0.3px; }
/* 브랜드 색 (B안 · 네이비 배경에서 읽히게 밝힌 톤) */
.partner-badges .pb-dhl   .pb-dot { background: #FFCC00; }
.partner-badges .pb-dhl   .pb-name { color: #FFD633; }
.partner-badges .pb-fedex .pb-dot { background: #9B6FD4; }
.partner-badges .pb-fedex .pb-name { color: #B795E6; }
.partner-badges .pb-ups   .pb-dot { background: #C8A07A; }
.partner-badges .pb-ups   .pb-name { color: #D4A878; }
/* 히어로 배경 전환 점 */
.hero-dots { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 2; display: flex; gap: 9px; }
.hero-dots .hd { width: 9px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.35); cursor: pointer; transition: .3s; border: none; padding: 0; }
.hero-dots .hd.on { width: 26px; background: var(--core-blue); }

/* ── Fuel surcharge strip (히어로 바로 아래, #4) ── */
.fuel-section { background: var(--core-navy-dark); padding: 0; }
.fuel-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 22px 0; }
.fuel-strip .fs-left { display: flex; align-items: center; gap: 14px; }
.fuel-strip .fs-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(30,184,224,0.15); color: var(--core-blue-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fuel-strip .fs-icon svg { width: 24px; height: 24px; }
.fuel-strip .fs-title { font-size: 16px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 9px; }
.fuel-strip .fs-title .fs-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; background: var(--core-blue); color: #fff; padding: 2px 8px; border-radius: 20px; }
.fuel-strip .fs-period { font-size: 12.5px; color: rgba(255,255,255,0.55); }
.fuel-strip .fs-rates { display: flex; gap: 30px; flex-wrap: wrap; }
.fuel-strip .fs-item { text-align: center; }
.fuel-strip .fs-item .fi-carrier { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 0.3px; margin-bottom: 1px; }
.fuel-strip .fs-item .fi-pct { font-size: 23px; font-weight: 700; color: var(--core-blue-mid); font-feature-settings: "tnum"; }
@media (max-width: 560px) { .fuel-strip { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ── Trust strip (#3 슬림 한 줄 신뢰 띠) ── */
.cred-section { padding: 0; }
.cred-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; padding: 20px 0; }
.cred-item { display: flex; align-items: center; gap: 9px; padding: 5px 28px; font-size: 14.5px; font-weight: 600; color: var(--core-navy); position: relative; }
.cred-item svg { width: 19px; height: 19px; color: var(--core-blue-dark); flex-shrink: 0; }
.cred-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: var(--gray-300); }
@media (max-width: 560px) {
  .cred-strip { padding: 16px 0; gap: 6px 0; }
  .cred-item { padding: 5px 14px; font-size: 13px; }
  .cred-item:not(:last-child)::after { display: none; }
}

/* ── Feature strip ── */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 28px 24px; transition: transform .18s ease, box-shadow .18s ease; }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feat-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--core-blue-light); color: var(--core-blue-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-icon svg { width: 24px; height: 24px; }
.feat-card h3 { font-size: 17px; font-weight: 700; color: var(--core-navy); margin-bottom: 5px; }
.feat-card p { font-size: 14px; color: var(--gray-500); }

/* ── Promotion (이 달의 프로모션, #8) ── */
.promo-card {
  background: var(--core-navy); color: #fff; border-radius: var(--r-xl);
  padding: 40px 44px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.promo-card .ring { position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; border-radius: 50%; border: 38px solid rgba(30,184,224,0.10); pointer-events: none; }
.promo-card .pm-left { position: relative; max-width: 640px; }
.promo-card .pm-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--core-blue-mid); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 8px; }
.promo-card .pm-month { background: var(--core-blue); color: #fff; padding: 2px 10px; border-radius: 20px; font-size: 11px; letter-spacing: 0.5px; }
.promo-card h3 { font-size: 26px; font-weight: 700; line-height: 1.3; letter-spacing: -0.4px; margin-bottom: 12px; }
.promo-card p { font-size: 15.5px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.promo-card .pm-cta { position: relative; flex-shrink: 0; }
@media (max-width: 640px) { .promo-card { padding: 30px 26px; } .promo-card h3 { font-size: 22px; } }

/* ── Services ── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
.svc-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 34px 32px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); border-color: var(--core-blue-mid); }
.svc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.svc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--core-navy); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 20px; font-weight: 700; color: var(--core-navy); }
.svc-card .svc-body { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 18px; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-list li { font-size: 14px; color: var(--gray-700); display: flex; align-items: flex-start; gap: 9px; }
.svc-list li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; background: var(--core-blue); border-radius: 50%; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/12px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ── Rate panel ── */
.rate-panel { margin-top: 44px; background: var(--core-navy); color: #fff; border-radius: var(--r-lg); padding: 42px 44px; position: relative; overflow: hidden; }
.rate-panel .ring { position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; border: 34px solid rgba(30,184,224,0.10); pointer-events: none; }
.rate-panel > h3 { font-size: 20px; font-weight: 700; margin-bottom: 26px; position: relative; }
.rate-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; margin-bottom: 32px; }
.rate-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-md); padding: 22px; }
.rate-step .num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 8px; background: rgba(30,184,224,0.18); color: var(--core-blue-mid); font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.rate-step .rs-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.rate-step .rs-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.rate-cta-wrap { position: relative; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rate-cta-wrap .rc-note { font-size: 13px; color: rgba(255,255,255,0.6); }
@media (max-width: 760px) { .rate-steps { grid-template-columns: 1fr; } .rate-panel { padding: 30px 26px; } }

/* ── Why us ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.why-item { display: flex; gap: 18px; }
.why-num { font-size: 13px; font-weight: 700; color: var(--core-blue); letter-spacing: 1px; padding-top: 4px; flex-shrink: 0; }
.why-item h3 { font-size: 18px; font-weight: 700; color: var(--core-navy); margin-bottom: 6px; }
.why-item p { font-size: 15px; color: var(--gray-700); line-height: 1.7; }

/* ── Process ── */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 30px 28px; position: relative; }
.step-card .step-num { font-size: 13px; font-weight: 700; color: #fff; background: var(--core-blue); width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--core-navy); margin-bottom: 4px; }
.step-card .step-time { font-size: 12px; font-weight: 600; color: var(--core-blue-dark); background: var(--core-blue-light); display: inline-block; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--gray-700); line-height: 1.7; }

/* ── FAQ ── */
.faq-list { margin-top: 40px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 17px; font-weight: 600; color: var(--core-navy); padding: 22px 40px 22px 0; position: relative; line-height: 1.5; }
.faq-q::after { content: ''; position: absolute; right: 4px; top: 26px; width: 14px; height: 14px; background: var(--core-blue-dark); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 16 6 10l1.4-1.4 4.6 4.6 4.6-4.6L18 10z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 16 6 10l1.4-1.4 4.6 4.6 4.6-4.6L18 10z'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform .2s ease; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 40px 22px 0; font-size: 15px; color: var(--gray-700); line-height: 1.75; }

/* ── Quote form (견적 문의 폼, Netlify, #9) ── */
.quote-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px; align-items: start; }
.quote-intro h3 { font-size: 22px; font-weight: 700; color: var(--core-navy); margin-bottom: 12px; }
.quote-intro p { font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 24px; }
.quote-contact { display: flex; flex-direction: column; gap: 14px; }
.quote-contact .qc-item { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--gray-700); }
.quote-contact .qc-item svg { width: 19px; height: 19px; color: var(--core-blue-dark); flex-shrink: 0; }
.quote-contact .qc-item b { color: var(--core-navy); font-weight: 600; }
.quote-form { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 30px 30px 32px; box-shadow: var(--shadow-md); }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-field { margin-bottom: 16px; }
.qf-field label { display: block; font-size: 13px; font-weight: 600; color: var(--core-navy); margin-bottom: 6px; }
.qf-field label .req { color: var(--core-blue-dark); }
.qf-field input, .qf-field select, .qf-field textarea {
  width: 100%; font-family: var(--font); font-size: 14.5px; color: var(--ink);
  border: 1px solid var(--gray-300); border-radius: var(--r-md); padding: 11px 13px;
  background: var(--snow); transition: border-color .15s, box-shadow .15s;
}
.qf-field input:focus, .qf-field select:focus, .qf-field textarea:focus {
  outline: none; border-color: var(--core-blue); box-shadow: 0 0 0 3px rgba(30,184,224,0.15); background: #fff;
}
.qf-field textarea { resize: vertical; min-height: 92px; }
.qf-hidden { position: absolute; left: -9999px; }
.qf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.qf-note { font-size: 12px; color: var(--gray-500); margin-top: 12px; text-align: center; }
.qf-success { display: none; text-align: center; padding: 30px 10px; }
.qf-success.show { display: block; }
.qf-success .qs-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--core-blue-light); color: var(--core-blue-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.qf-success .qs-icon svg { width: 28px; height: 28px; }
.qf-success h4 { font-size: 19px; font-weight: 700; color: var(--core-navy); margin-bottom: 8px; }
.qf-success p { font-size: 14.5px; color: var(--gray-700); }
@media (max-width: 820px) { .quote-wrap { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .qf-row { grid-template-columns: 1fr; } }

/* ── Final CTA ── */
.cta { background: var(--core-navy); color: #fff; position: relative; overflow: hidden; }
.cta .ring1 { position: absolute; left: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 48px solid rgba(30,184,224,0.09); pointer-events: none; }
.cta .ring2 { position: absolute; right: 60px; bottom: -100px; width: 220px; height: 220px; border-radius: 50%; border: 34px solid rgba(30,184,224,0.06); pointer-events: none; }
.cta-inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: 36px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.cta p { font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-contact { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.7); }
.cta-contact .cc-item { display: flex; align-items: center; gap: 8px; }
.cta-contact .cc-item svg { width: 17px; height: 17px; color: var(--core-blue-mid); }
.cta-contact .cc-item b { color: #fff; font-weight: 600; }

/* ── Footer ── */
footer { background: var(--core-navy-dark); color: rgba(255,255,255,0.6); padding: 48px 0 36px; }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.foot-brand .name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.foot-brand .name b { color: var(--core-blue); }
.foot-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 360px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.foot-col a, .foot-col p { font-size: 14px; color: rgba(255,255,255,0.65); display: block; margin-bottom: 8px; }
.foot-col a:hover { color: var(--core-blue-mid); }
.foot-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── Notices page (공지사항 페이지) ── */
.page-head { background: var(--core-navy); color: #fff; padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-head .ring { position: absolute; right: -60px; top: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(30,184,224,0.09); pointer-events: none; }
.page-head .ph-inner { position: relative; }
.page-head .eyebrow { color: var(--core-blue-mid); }
.page-head h1 { font-size: 38px; font-weight: 700; letter-spacing: -0.6px; margin-bottom: 10px; }
.page-head p { font-size: 16px; color: rgba(255,255,255,0.7); }
.notice-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.notice-filters button {
  font-family: var(--font); font-size: 13.5px; font-weight: 600; cursor: pointer;
  background: #fff; color: var(--gray-700); border: 1px solid var(--gray-300);
  padding: 8px 16px; border-radius: 20px; transition: .15s;
}
.notice-filters button:hover { border-color: var(--core-blue); color: var(--core-blue-dark); }
.notice-filters button.on { background: var(--core-navy); color: #fff; border-color: var(--core-navy); }
.notice-list { display: flex; flex-direction: column; gap: 12px; }
.notice-card { background: #fff; border: 1px solid var(--gray-100); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .18s, border-color .18s; }
.notice-card:hover { border-color: var(--core-blue-mid); }
.notice-card.open { box-shadow: var(--shadow-md); }
.nc-head { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--font); text-align: left; display: flex; align-items: center; gap: 14px; padding: 20px 24px; }
.nc-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nc-cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.3px; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.nc-cat.fuel { background: var(--core-blue-light); color: var(--core-blue-dark); }
.nc-cat.surcharge { background: #FFF1DC; color: #B5750C; }
.nc-cat.general { background: var(--core-navy-light); color: var(--core-navy-mid); }
.nc-date { font-size: 13px; color: var(--gray-500); font-weight: 500; white-space: nowrap; }
.nc-title { flex: 1; font-size: 16.5px; font-weight: 700; color: var(--core-navy); line-height: 1.45; }
.nc-chev { width: 15px; height: 15px; flex-shrink: 0; background: var(--core-blue-dark); transition: transform .25s ease; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 16 6 10l1.4-1.4 4.6 4.6 4.6-4.6L18 10z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 16 6 10l1.4-1.4 4.6 4.6 4.6-4.6L18 10z'/%3E%3C/svg%3E") center/contain no-repeat; }
.notice-card.open .nc-chev { transform: rotate(180deg); }
.nc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.nc-body-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--gray-700); line-height: 1.8; }
.nc-body-inner .nc-intro { margin-bottom: 16px; }
.nc-body-inner .nc-block { margin-bottom: 20px; }
.nc-block-h { font-size: 15px; font-weight: 700; color: var(--core-navy); margin-bottom: 8px; }
.nc-block-h em { font-style: normal; font-weight: 500; font-size: 12px; color: var(--gray-500); margin-left: 7px; }
.nc-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.nc-table th, .nc-table td { padding: 8px 12px; border-bottom: 1px solid var(--gray-100); text-align: left; }
.nc-table thead th { background: var(--snow); color: var(--core-navy); font-weight: 700; font-size: 12.5px; }
.nc-table th:not(:first-child), .nc-table td:not(:first-child) { text-align: right; white-space: nowrap; font-feature-settings: "tnum"; }
.nc-table tbody tr:last-child td { border-bottom: none; }
.nc-body-inner .nc-foot { margin-top: 6px; font-size: 12.5px; color: var(--gray-500); line-height: 1.7; }
@media (max-width: 480px) { .nc-table th, .nc-table td { padding: 7px 8px; font-size: 12.5px; } }
.notice-empty { text-align: center; color: var(--gray-500); padding: 50px 0; font-size: 15px; }
@media (max-width: 560px) {
  .nc-head { flex-wrap: wrap; gap: 8px; padding: 18px 18px; }
  .nc-title { flex-basis: 100%; order: 3; }
  .nc-chev { position: absolute; right: 18px; top: 20px; }
  .notice-card { position: relative; }
  .nc-body-inner { padding: 0 18px 20px; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .why-grid, .rate-layout { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; }
  .nav-links { position: fixed; top: 66px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-md); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 28px; }
  .nav-cta { margin: 8px 28px; text-align: center; }
  .lang-toggle { margin: 4px 28px; align-self: flex-start; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  section { padding: 64px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 70px; }
  .hero h1 { font-size: 34px; }
  .sec-head { font-size: 25px; }
  .cta h2 { font-size: 28px; }
}
