*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #0F0E1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

:root {
  --brand: #2D236C;
  --brand-dark: #1E175A;
  --brand-mid: #4A3D8F;
  --brand-pale: #EDEEF8;
  --brand-border: #CCCAE6;
  --text: #0F0E1A;
  --text-2: #60607A;
  --text-3: #9E9CB8;
  --bg: #fff;
  --bg-2: #F8F8FB;
  --border: #E8E7F2;
  --r-s: 6px;
  --r: 10px;
  --r-l: 16px;
  --shadow-s: 0 1px 4px rgba(30,23,90,.07);
  --shadow: 0 4px 20px rgba(30,23,90,.10);
  --shadow-l: 0 12px 40px rgba(30,23,90,.14);
  --max: 1160px;
  --nav-h: 72px;
}

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 7px 14px; border-radius: var(--r-s); transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: var(--brand-pale); }
.nav-links .nav-cta {
  background: var(--brand) !important; color: #fff !important;
  margin-left: 6px; padding: 7px 18px !important;
}
.nav-links .nav-cta:hover { background: var(--brand-dark) !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; border: none; background: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; padding: 11px 22px;
  border-radius: var(--r-s); border: none; cursor: pointer;
  transition: all .2s; letter-spacing: -.01em; line-height: 1;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,35,108,.28); }
.btn-outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand-border); }
.btn-outline:hover { background: var(--brand-pale); border-color: var(--brand); }
.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* ── HOME HERO ────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 88px;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--brand-pale) 0%, #fff 55%);
}
.hero::before {
  content: '';
  position: absolute; right: -180px; top: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(45,35,108,.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; left: 10%; bottom: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(45,35,108,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-pale); border: 1px solid var(--brand-border);
  color: var(--brand); font-size: 11px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.hero-title {
  font-size: clamp(38px, 5.5vw, 68px); font-weight: 700;
  line-height: 1.08; letter-spacing: -.035em; color: var(--text);
  margin-bottom: 20px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.hero-title em { color: var(--brand); font-style: normal; }
.hero-desc {
  font-size: 18px; color: var(--text-2); line-height: 1.72;
  max-width: 520px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-num { font-size: 28px; font-weight: 700; color: var(--brand); letter-spacing: -.02em; line-height: 1; }
.trust-label { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: var(--brand);
  color: #fff; text-align: center;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 700;
  letter-spacing: -.025em; margin-bottom: 10px;
}
.page-hero p { font-size: 17px; opacity: .7; max-width: 480px; margin: 0 auto; }

/* ── SECTIONS ─────────────────────────────────────── */
.section { padding: 96px 28px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section.bg-2 { background: var(--bg-2); }
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.18; margin-bottom: 14px; color: var(--text);
}
.section-lead {
  font-size: 17px; color: var(--text-2); line-height: 1.72; max-width: 500px;
}
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin: 0 auto; }

/* ── SERVICE CARDS ────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-l); padding: 32px; transition: all .25s;
}
.card:hover { border-color: var(--brand-border); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-icon {
  width: 46px; height: 46px;
  background: var(--brand-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--brand); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.card p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── STATS BAR ────────────────────────────────────── */
.stats-bar { background: var(--brand); color: #fff; padding: 72px 28px; }
.stats-bar-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; text-align: center;
}
.stat-num { font-size: 50px; font-weight: 700; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; opacity: .65; font-weight: 500; letter-spacing: .02em; }

/* ── FEATURE LIST ─────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-item { display: flex; gap: 14px; }
.feature-dot {
  width: 6px; height: 6px; min-width: 6px;
  background: var(--brand); border-radius: 50%; margin-top: 9px;
}
.feature-item h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 5px; letter-spacing: -.01em; }
.feature-item p { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── TESTIMONIAL ──────────────────────────────────── */
.testimonial-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.testimonial-quote-mark { font-size: 72px; color: var(--brand); line-height: .4; font-family: Georgia, serif; opacity: .35; margin-bottom: 20px; }
.testimonial-text { font-size: 21px; font-weight: 500; color: var(--text); line-height: 1.6; letter-spacing: -.01em; margin-bottom: 24px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; }

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band { background: var(--brand); color: #fff; padding: 96px 28px; text-align: center; }
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 14px; }
.cta-band p { font-size: 17px; opacity: .72; margin-bottom: 36px; line-height: 1.65; }
.cta-band-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── NEWSLETTER ───────────────────────────────────── */
.newsletter { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 28px; text-align: center; }
.newsletter-inner { max-width: 480px; margin: 0 auto; }
.newsletter h3 { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -.01em; }
.newsletter p { font-size: 14px; color: var(--text-2); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r-s); font-family: inherit; font-size: 14px;
  color: var(--text); outline: none; transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form input::placeholder { color: var(--text-3); }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: #0F0E1A; color: rgba(255,255,255,.55); padding: 64px 28px 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo img { height: 30px; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13.5px; line-height: 1.65; max-width: 240px; }
.footer-col h4 {
  color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 10px; }
.footer-contact-row svg { width: 14px; height: 14px; min-width: 14px; stroke: rgba(255,255,255,.45); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.footer-contact-row a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-contact-row a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ── CONTACT PAGE ─────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: start; }
.contact-form-head h2 { font-size: 28px; font-weight: 700; color: var(--text); letter-spacing: -.02em; margin-bottom: 6px; }
.contact-form-head p { font-size: 15px; color: var(--text-2); margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -.01em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-s);
  font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--bg); outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(45,35,108,.07); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group textarea { height: 130px; resize: vertical; }
.consent-wrap {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px; margin-bottom: 22px;
}
.consent-label { display: flex; gap: 11px; cursor: pointer; align-items: flex-start; }
.consent-checkbox { width: 16px; height: 16px; min-width: 16px; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.consent-text { font-size: 12px; color: var(--text-2); line-height: 1.65; }
.consent-text a { color: var(--brand); font-weight: 500; }
.consent-text a:hover { text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }
.form-success {
  display: none; background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: var(--r); padding: 20px; text-align: center;
  color: #166534; font-weight: 500; margin-top: 16px;
}

/* Contact sidebar */
.contact-sidebar {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-l); padding: 36px;
  position: sticky; top: calc(var(--nav-h) + 20px);
}
.contact-sidebar h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 28px; letter-spacing: -.01em; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--brand-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 17px; height: 17px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-label { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.info-value { font-size: 14px; color: var(--text); line-height: 1.5; }
.info-value a { color: var(--text); transition: color .2s; }
.info-value a:hover { color: var(--brand); }
.sidebar-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  background: var(--brand-pale); border-radius: var(--r-l);
  padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-stat-card {
  background: #fff; border-radius: var(--r); padding: 24px 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-s);
}
.about-stat-card .num { font-size: 36px; font-weight: 700; color: var(--brand); letter-spacing: -.03em; line-height: 1; }
.about-stat-card .lbl { font-size: 12px; color: var(--text-2); margin-top: 5px; font-weight: 500; }
.about-stat-card.accent { background: var(--brand); border-color: transparent; }
.about-stat-card.accent .num, .about-stat-card.accent .lbl { color: rgba(255,255,255,.9); }
.about-stat-card.accent .lbl { opacity: .7; }

/* ── TERMS PAGE ───────────────────────────────────── */
.terms-body { max-width: 740px; margin: 0 auto; }
.terms-body h2 { font-size: 20px; font-weight: 600; color: var(--text); margin: 40px 0 10px; letter-spacing: -.01em; }
.terms-body h2:first-child { margin-top: 0; }
.terms-body p { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.terms-body ul { padding-left: 20px; margin-bottom: 14px; }
.terms-body li { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 6px; }
.terms-date { font-size: 13px; color: var(--text-3); margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 12px 16px 16px;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,.07);
    gap: 2px; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 6px; justify-content: center; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-trust { gap: 20px; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .about-visual { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

/* ── SERVICE HERO ─────────────────────────────────── */
.service-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  background-color: var(--brand);
  position: relative; color: white; text-align: center;
}
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,14,26,.88) 0%, rgba(45,35,108,.80) 100%);
}
.service-hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.hero-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500;
  margin-bottom: 24px; transition: color .2s;
}
.hero-back-link:hover { color: #fff; }
.hero-back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.service-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.service-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 700;
  letter-spacing: -.035em; line-height: 1.07; margin-bottom: 18px;
}
.service-hero .hero-desc { font-size: 18px; opacity: .78; max-width: 540px; margin: 0 auto 36px; }

/* ── PROCESS STEPS ────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--r-l); overflow: hidden;
}
.step-item {
  padding: 36px 22px; text-align: center;
  border-right: 1px solid var(--border); background: var(--bg);
}
.step-item:last-child { border-right: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-item h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: -.01em; }
.step-item p { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── CONTENT IMAGE BLOCK ──────────────────────────── */
.content-image { border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-l); }
.content-image img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; display: block; }

/* ── CARD AS LINK ─────────────────────────────────── */
a.card { display: block; color: inherit; }
.card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--brand);
}
.card-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
a.card:hover .card-cta svg { transform: translateX(3px); }

/* ── RELATED SERVICES ─────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
a.related-card {
  display: block; color: inherit;
  border: 1px solid var(--border); border-radius: var(--r-l);
  padding: 28px; transition: all .25s;
}
a.related-card:hover { border-color: var(--brand-border); box-shadow: var(--shadow); transform: translateY(-2px); }
a.related-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: -.01em; }
a.related-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-top: 8px; }
.related-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--brand); }
.related-arrow svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
a.related-card:hover .related-arrow svg { transform: translateX(3px); }

/* ── HIGHLIGHT BOX ────────────────────────────────── */
.highlight-box {
  background: var(--brand-pale); border: 1px solid var(--brand-border);
  border-radius: var(--r-l); padding: 36px;
}
.highlight-box .section-eyebrow { margin-bottom: 10px; }
.highlight-box h3 { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -.02em; margin-bottom: 10px; }
.highlight-box p { font-size: 15px; color: var(--text-2); line-height: 1.75; }

/* ── SERVICE PAGE RESPONSIVE ──────────────────────── */
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-item { border-bottom: 1px solid var(--border); }
  .step-item:nth-child(2n) { border-right: none; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-item { border-right: none; }
}

/* ── NAV DROPDOWN ─────────────────────────────────── */
.nav-item-has-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 7px 14px; border-radius: var(--r-s);
  transition: color .2s, background .2s; cursor: pointer;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--brand); background: var(--brand-pale); }
.nav-item-has-dropdown:hover .nav-dropdown-trigger { color: var(--brand); background: var(--brand-pale); }

.chevron {
  width: 13px; height: 13px; flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .22s ease;
}
.nav-item-has-dropdown:hover .chevron,
.nav-item-has-dropdown.mobile-open .chevron { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 292px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  box-shadow: 0 20px 56px rgba(15,14,26,.14), 0 4px 16px rgba(15,14,26,.06);
  padding: 6px;
  opacity: 0; visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 800;
}
/* Up-arrow caret */
.dropdown-menu::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #fff;
  border-left: 1px solid var(--border); border-top: 1px solid var(--border);
}
.nav-item-has-dropdown:hover .dropdown-menu,
.nav-item-has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 10px; border-radius: var(--r);
  transition: background .15s; color: inherit;
}
.dropdown-item:hover { background: var(--bg-2); }

.dropdown-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--brand-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.dropdown-icon svg {
  width: 17px; height: 17px;
  stroke: var(--brand); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .18s;
}
.dropdown-item:hover .dropdown-icon { background: var(--brand); }
.dropdown-item:hover .dropdown-icon svg { stroke: #fff; }

.dropdown-item-title { font-size: 13.5px; font-weight: 600; color: var(--text); letter-spacing: -.01em; line-height: 1.2; }
.dropdown-item-desc { font-size: 11.5px; color: var(--text-2); margin-top: 2px; line-height: 1.3; }

/* Footer link */
.dropdown-footer { border-top: 1px solid var(--border); margin-top: 4px; padding: 10px 10px 5px; }
.dropdown-all-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--brand);
}
.dropdown-all-link svg {
  width: 12px; height: 12px; stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}
.dropdown-all-link:hover svg { transform: translateX(3px); }

/* ── DROPDOWN — MOBILE ────────────────────────────── */
@media (max-width: 768px) {
  .nav-item-has-dropdown { width: 100%; }
  .nav-dropdown-trigger {
    width: 100%; justify-content: space-between;
    padding: 8px 16px;
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    box-shadow: none !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    width: 100% !important;
    display: none; padding: 4px !important;
    margin-top: 6px;
    background: var(--bg-2) !important;
  }
  .dropdown-menu::before { display: none !important; }
  .nav-item-has-dropdown.mobile-open .dropdown-menu { display: block; }
  .dropdown-footer { padding: 8px 10px 4px !important; }
}
