/* ============================================================
   Fleet Driver Network — section & page component styles
   ============================================================ */

/* ---------------------------------------------------------- HERO */
.hero { position: relative; overflow: hidden; padding: 92px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 0; }
.hero .lead { margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; align-items: center;
  font-size: var(--text-sm); color: var(--fg-muted); }
.hero-meta .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 17px; height: 17px; color: var(--success); }

/* dual-audience picker on hero */
.path-toggle { display: inline-flex; padding: 5px; gap: 4px; background: var(--bg-alt);
  border: 1px solid var(--hairline); border-radius: var(--r-pill); }
.path-toggle button { border: none; background: none; cursor: pointer; height: 38px; padding: 0 20px;
  border-radius: var(--r-pill); font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  color: var(--fg-muted); transition: all .2s var(--ease-out); }
.path-toggle button.on { background: var(--surface); color: var(--fg); box-shadow: var(--shadow-sm); }

/* hero visual — navy panel with logo + circuit */
.hero-visual { position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-700), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-pop); padding: 32px; min-height: 460px;
  display: flex; flex-direction: column; }
.hero-visual::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: 0.5; }
.hv-logo { width: 88px; height: 88px; border-radius: 18px; position: relative; z-index: 1; }
.hv-head { position: relative; z-index: 1; margin-top: 22px; }
.hv-head .k { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan-400); }
.hv-head h3 { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 26px;
  margin: 10px 0 0; letter-spacing: -0.01em; }
.hv-card { position: relative; z-index: 1; margin-top: auto; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 20px; backdrop-filter: blur(4px); }
.hv-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); }
.hv-row:last-child { border-bottom: none; }
.hv-row .l { display: flex; align-items: center; gap: 11px; color: var(--on-navy); font-size: var(--text-sm); font-weight: 600; }
.hv-row .l .av { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(150deg, var(--blue-400), var(--cyan-400));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; font-family: var(--font-body); }
.hv-row .r { font-size: var(--text-xs); font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(54,197,240,0.15); color: var(--cyan-400); }
.hv-row .r.placed { background: rgba(63,136,232,0.18); color: #86b8f5; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 380px; }
}

/* ---------------------------------------------------------- STATS */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--surface); padding: 30px 24px; text-align: center; }
.stat .n { font-family: var(--font-mono); font-weight: 600; font-size: clamp(30px, 4vw, 44px);
  color: var(--primary); letter-spacing: -0.02em; line-height: 1; }
.stat .l { font-size: var(--text-sm); color: var(--fg-muted); margin-top: 10px; font-weight: 600; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------- STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 28px; position: relative; }
.step .num { font-family: var(--font-mono); font-size: var(--text-sm); font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 9px; }
.step .num::before { counter-increment: step; content: counter(step, decimal-leading-zero);
  width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.step h4 { margin: 18px 0 8px; }
.step p { margin: 0; color: var(--fg-muted); font-size: var(--text-sm); }
.step-line { display: none; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- SPLIT (drivers/carriers) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card { border-radius: var(--r-xl); padding: 40px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 380px; }
.split-card.drivers { background: var(--surface); border: 1px solid var(--hairline); box-shadow: var(--shadow-card); }
.split-card.carriers { background: linear-gradient(155deg, var(--navy-700), var(--navy-900)); color: var(--on-navy);
  border: 1px solid rgba(255,255,255,0.08); }
.split-card .ico { width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center; }
.split-card.drivers .ico { background: var(--blue-50); color: var(--primary); border: 1px solid var(--blue-100); }
.split-card.carriers .ico { background: rgba(54,197,240,0.14); color: var(--cyan-400); border: 1px solid rgba(54,197,240,0.2); }
.split-card .ico svg { width: 28px; height: 28px; }
.split-card h3 { margin: 22px 0 10px; font-family: var(--font-display); font-weight: 600; font-size: 27px; letter-spacing: -0.01em; }
.split-card.carriers h3 { color: #fff; }
.split-card p { margin: 0 0 22px; font-size: var(--text-md); }
.split-card.carriers p { color: var(--on-navy-muted); }
.split-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.split-list li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--text-sm); font-weight: 500; }
.split-list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.split-card.carriers .split-list svg { color: var(--cyan-400); }
.split-card .foot { margin-top: auto; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- WHY / BENEFITS */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento .card { padding: 30px; }
.bento h4 { margin: 18px 0 8px; }
.bento p { margin: 0; color: var(--fg-muted); font-size: var(--text-sm); }
@media (max-width: 860px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- MAP / SERVICE AREA */
.map-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.map-svg { width: 100%; height: auto; }
.map-svg .state { fill: var(--surface); stroke: var(--border); stroke-width: 1.5; transition: fill .2s; }
.map-svg .state.on { fill: var(--blue-100); stroke: var(--primary); }
.map-svg .city { fill: var(--accent); }
@media (max-width: 820px) { .map-wrap { grid-template-columns: 1fr; gap: 32px; } }

/* region coverage list */
.regions { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.regions li { display: flex; gap: 13px; align-items: flex-start; }
.regions .pin { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-50); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--blue-100); }
.regions .pin svg { width: 18px; height: 18px; }
:root[data-theme="dark"] .regions .pin { background: rgba(63,136,232,0.14); border-color: rgba(63,136,232,0.25); }
.regions b { display: block; font-size: var(--text-sm); color: var(--fg); font-weight: 700; }
.regions span { font-size: var(--text-xs); color: var(--fg-muted); }

/* national network panel (replaces fragile state map) */
.net-panel { position: relative; overflow: hidden; border-radius: var(--r-xl); min-height: 440px;
  background: radial-gradient(120% 130% at 75% 10%, var(--navy-600), var(--navy-900));
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-pop); padding: 30px; }
.net-panel::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 22px 22px; opacity: 0.6; }
.net-head { position: relative; z-index: 2; }
.net-head .k { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan-400); }
.net-head .big { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: #fff; letter-spacing: -0.01em; margin: 8px 0 0; }
.net-map { position: absolute; inset: 70px 24px 24px; z-index: 1; }
.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.net-lines path { fill: none; stroke: rgba(54,197,240,0.28); stroke-width: 1; stroke-dasharray: 3 4; }
.net-node { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2; }
.net-node .nd { width: 11px; height: 11px; border-radius: 999px; background: var(--cyan-400);
  box-shadow: 0 0 0 4px rgba(54,197,240,0.18), 0 0 12px rgba(54,197,240,0.6); }
.net-node.hub .nd { width: 15px; height: 15px; background: var(--accent);
  box-shadow: 0 0 0 5px rgba(216,107,31,0.22), 0 0 14px rgba(216,107,31,0.7); }
.net-node .lbl { font-size: 10.5px; font-weight: 700; color: var(--on-navy); white-space: nowrap;
  background: rgba(8,19,32,0.55); padding: 2px 7px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.08); }
.net-node.hub .lbl { color: #fff; }
@keyframes netPulse { 0%,100% { box-shadow: 0 0 0 4px rgba(54,197,240,0.18), 0 0 12px rgba(54,197,240,0.6); } 50% { box-shadow: 0 0 0 7px rgba(54,197,240,0.08), 0 0 16px rgba(54,197,240,0.8); } }
@media (prefers-reduced-motion: no-preference) { .net-node .nd { animation: netPulse 2.6s var(--ease-out) infinite; } }
@media (max-width: 480px) { .net-panel { min-height: 360px; } .net-node .lbl { display: none; } }

/* ---------------------------------------------------------- TESTIMONIALS */
.tcols { columns: 3; column-gap: 22px; }
.tcard { break-inside: avoid; margin-bottom: 22px; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-card); }
.tcard .stars { display: flex; gap: 3px; color: var(--accent); margin-bottom: 14px; }
.tcard .stars svg { width: 16px; height: 16px; }
.tcard blockquote { margin: 0 0 18px; font-size: var(--text-md); line-height: 1.5; color: var(--fg);
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .who .av { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(150deg, var(--blue-400), var(--cyan-400));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.tcard .who b { display: block; font-size: var(--text-sm); color: var(--fg); }
.tcard .who span { font-size: var(--text-xs); color: var(--fg-muted); }
@media (max-width: 900px) { .tcols { columns: 2; } }
@media (max-width: 600px) { .tcols { columns: 1; } }

/* ---------------------------------------------------------- LOGO STRIP */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.logo-item { display: inline-flex; align-items: center; gap: 10px; color: var(--fg-faint); font-weight: 800;
  font-size: var(--text-lg); letter-spacing: -0.01em; opacity: 0.8; }
.logo-item svg { width: 26px; height: 26px; }

/* ---------------------------------------------------------- FAQ */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-md); color: var(--fg); }
.faq-q .ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 999px; border: 1px solid var(--border);
  display: grid; place-items: center; transition: transform .25s var(--ease-out), background .2s, color .2s; }
.faq-q .ic svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--primary); color: #fff; border-color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.faq-a p { margin: 0; padding: 0 4px 26px; color: var(--fg-muted); max-width: 90%; }

/* ---------------------------------------------------------- CTA BAND */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: var(--on-navy);
  padding: 64px; text-align: center; border: 1px solid rgba(255,255,255,0.08); }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(54,197,240,0.08) 1px, transparent 1px); background-size: 24px 24px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.01em; margin: 0; }
.cta-band p { color: var(--on-navy-muted); max-width: 540px; margin: 16px auto 0; font-size: var(--text-md); }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------------------------------------------------------- BLOG */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); text-decoration: none; }
.post .thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.post .thumb .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.post .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post .meta { display: flex; align-items: center; gap: 10px; font-size: var(--text-xs); color: var(--fg-muted); }
.post h3 { font-family: var(--font-display); font-weight: 600; font-size: var(--text-xl); letter-spacing: -0.01em;
  line-height: 1.2; color: var(--fg); }
.post p { margin: 0; font-size: var(--text-sm); color: var(--fg-muted); }
.post .read { margin-top: auto; font-size: var(--text-sm); font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px; }
.post.feature { grid-column: span 3; flex-direction: row; }
.post.feature .thumb { flex: 1.1; aspect-ratio: auto; }
.post.feature .body { flex: 1; padding: 40px; justify-content: center; gap: 16px; }
.post.feature h3 { font-size: clamp(26px, 3vw, 36px); }
.post.feature p { font-size: var(--text-md); }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr 1fr; } .post.feature { grid-column: span 2; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } .post.feature, .post.feature .thumb, .post.feature .body { grid-column: auto; flex-direction: column; padding: 24px; } .post.feature .thumb { aspect-ratio: 16/10; } }

.thumb-grad-1 { background: linear-gradient(140deg, #16314B, #081320); }
.thumb-grad-2 { background: linear-gradient(140deg, #2A6FDB, #143A74); }
.thumb-grad-3 { background: linear-gradient(140deg, #D86B1F, #8C3F14); }
.thumb-grad-4 { background: linear-gradient(140deg, #2E6B78, #122C33); }
.thumb-glyph { color: rgba(255,255,255,0.9); }
.thumb-glyph svg { width: 54px; height: 54px; }

/* ---------------------------------------------------------- ARTICLE */
.article-head { max-width: 760px; margin: 0 auto; text-align: center; }
.article-head h1 { margin: 18px 0 0; font-size: clamp(32px, 4.5vw, 50px); }
.article-byline { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 26px;
  font-size: var(--text-sm); color: var(--fg-muted); }
.article-byline .av { width: 40px; height: 40px; border-radius: 999px; background: linear-gradient(150deg, var(--blue-400), var(--cyan-400));
  display: grid; place-items: center; color: #fff; font-weight: 700; }
.article-hero { aspect-ratio: 21/9; border-radius: var(--r-xl); margin: 40px 0; overflow: hidden;
  display: grid; place-items: center; position: relative; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { max-width: 720px; margin: 0 auto; }
.prose > * { max-width: 100%; }
.prose p { font-size: var(--text-md); line-height: 1.75; color: var(--fg-body); margin: 0 0 24px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -0.01em;
  color: var(--fg); margin: 48px 0 16px; }
.prose h3 { font-weight: 700; font-size: var(--text-lg); color: var(--fg); margin: 36px 0 12px; }
.prose ul { margin: 0 0 24px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { display: flex; gap: 12px; font-size: var(--text-md); line-height: 1.6; }
.prose ul li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent);
  margin-top: 11px; flex-shrink: 0; }
.prose blockquote { margin: 36px 0; padding: 4px 0 4px 28px; border-left: 3px solid var(--accent);
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: var(--text-xl);
  color: var(--fg); line-height: 1.4; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-pull { background: var(--bg-alt); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  padding: 28px; margin: 36px 0; }
.article-pull h4 { margin: 0 0 8px; }
.article-pull p { margin: 0; font-size: var(--text-sm); color: var(--fg-muted); }

/* ---------------------------------------------------------- PRICING */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-xl); padding: 34px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card); position: relative; }
.price.featured { border: 1.5px solid var(--primary); box-shadow: var(--shadow-pop); }
.price .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent);
  color: #fff; font-size: var(--text-2xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap; }
.price .pname { font-weight: 700; font-size: var(--text-lg); color: var(--fg); }
.price .pdesc { font-size: var(--text-sm); color: var(--fg-muted); margin: 6px 0 22px; min-height: 40px; }
.price .amt { font-family: var(--font-display); font-weight: 600; font-size: 48px; color: var(--fg); letter-spacing: -0.02em; line-height: 1; }
.price .amt small { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: var(--fg-muted); letter-spacing: 0; }
.price .pfeat { list-style: none; padding: 0; margin: 26px 0 28px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price .pfeat li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--text-sm); }
.price .pfeat svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--success); }
.price .pfeat li.off { color: var(--fg-faint); }
.price .pfeat li.off svg { color: var(--fg-faint); }
/* driver-free banner — warm clay tint that works in light AND dark */
.driver-free-banner { background: var(--accent-soft); border-color: var(--clay-100); }
:root[data-theme="dark"] .driver-free-banner { background: rgba(216,107,31,0.10); border-color: rgba(216,107,31,0.28); }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* compare table */
.compare { width: 100%; border-collapse: collapse; margin-top: 16px; }
.compare th, .compare td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--hairline); font-size: var(--text-sm); }
.compare thead th { font-weight: 700; color: var(--fg); font-size: var(--text-sm); }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; }
.compare td:first-child { color: var(--fg-body); font-weight: 500; }
.compare svg { width: 18px; height: 18px; color: var(--success); }
.compare .no { color: var(--fg-faint); }

/* ---------------------------------------------------------- FORMS / CONTACT */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--fg); }
.field input, .field select, .field textarea {
  width: 100%; height: 50px; padding: 0 16px; border: 1px solid var(--border); background: var(--surface);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: var(--text-base); color: var(--fg);
  box-shadow: var(--shadow-sm); outline: none; transition: border-color .15s, box-shadow .15s; }
.field textarea { height: auto; min-height: 130px; padding: 14px 16px; resize: vertical; line-height: 1.6; }
.field select { appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-muted) 50%), linear-gradient(135deg, var(--fg-muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 15px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--blue-100); }
:root[data-theme="dark"] .field input:focus, :root[data-theme="dark"] .field select:focus, :root[data-theme="dark"] .field textarea:focus { box-shadow: 0 0 0 3px rgba(63,136,232,0.25); }
.field .hint { font-size: var(--text-xs); color: var(--fg-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ico { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--blue-50); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--blue-100); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item b { display: block; color: var(--fg); font-size: var(--text-base); }
.contact-item p { margin: 4px 0 0; font-size: var(--text-sm); color: var(--fg-muted); }

/* ---------------------------------------------------------- APPLY FUNNEL */
.funnel { max-width: 640px; margin: 0 auto; }
.funnel-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 36px; }
.funnel-progress .seg { flex: 1; height: 6px; border-radius: 999px; background: var(--hairline); overflow: hidden; }
.funnel-progress .seg .fill { height: 100%; background: var(--primary); width: 0; transition: width .4s var(--ease-out); }
.funnel-progress .seg.done .fill, .funnel-progress .seg.active .fill { width: 100%; }
.funnel-progress .seg.active .fill { background: var(--accent); }
.funnel-step { display: none; }
.funnel-step.active { display: block; animation: fadeUp .4s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.funnel-step .stepk { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--accent); font-weight: 600; }
.funnel-step h2 { margin: 10px 0 6px; }
.funnel-step .sub { color: var(--fg-muted); margin: 0 0 28px; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--border);
  border-radius: var(--r-md); background: var(--surface); cursor: pointer; transition: all .15s var(--ease-out); text-align: left; font-family: var(--font-body); }
.opt:hover { border-color: var(--primary); background: var(--blue-50); }
:root[data-theme="dark"] .opt:hover { background: rgba(63,136,232,0.1); }
.opt.sel { border-color: var(--primary); background: var(--blue-50); box-shadow: 0 0 0 3px var(--blue-100); }
:root[data-theme="dark"] .opt.sel { background: rgba(63,136,232,0.12); box-shadow: 0 0 0 3px rgba(63,136,232,0.25); }
.opt .oico { width: 40px; height: 40px; border-radius: 9px; background: var(--blue-50); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0; }
.opt .oico svg { width: 21px; height: 21px; }
.opt b { display: block; color: var(--fg); font-size: var(--text-sm); }
.opt span { font-size: var(--text-xs); color: var(--fg-muted); }
.funnel-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; }
.funnel-done { text-align: center; padding: 20px 0; }
.funnel-done .check { width: 72px; height: 72px; border-radius: 999px; background: var(--success-bg); color: var(--success);
  display: grid; place-items: center; margin: 0 auto 24px; }
.funnel-done .check svg { width: 36px; height: 36px; }
@media (max-width: 520px) { .opt-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- PAGE HEADER (interior) */
.page-head { padding: 72px 0 56px; border-bottom: 1px solid var(--hairline); background: var(--bg-alt); }
.page-head .eyebrow { margin-bottom: 16px; }
.page-head h1 { max-width: 760px; }
.page-head p { max-width: 600px; margin: 18px 0 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--fg-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--fg-muted); }
.breadcrumb svg { width: 14px; height: 14px; }

/* utility */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 820px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.mt-2{margin-top:8px}.mt-3{margin-top:12px}.mt-4{margin-top:16px}.mt-6{margin-top:24px}.mt-8{margin-top:32px}.mt-12{margin-top:48px}
.mb-0{margin-bottom:0}
