:root {
  --ink: #111113;
  --body: #3a3a3c;
  --muted: #6e6e73;
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --surface-3: #eef5fd;
  --line: #d9d9dd;
  --line-strong: #b9b9bf;
  --accent: #0066cc;
  --accent-dark: #004f9f;
  --accent-soft: #edf5ff;
  --success: #087f5b;
  --success-soft: #e9f8f2;
  --warning: #8a5d00;
  --warning-soft: #fff7dc;
  --danger: #c92a2a;
  --danger-soft: #fff0f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 14px 38px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.12);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --container: 1240px;
  --measure: 70ch;
  --header-height: 66px;
  --tap: 48px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  min-width: 280px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  min-width: 280px;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--body);
  font-family: var(--font);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; overscroll-behavior: none; touch-action: none; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-dark); }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
input, select, textarea { font-size: 16px; }
main:focus { outline: 0; }
section[id], article[id] { scroll-margin-top: calc(var(--header-height) + 1rem); }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { max-width: 20ch; font-size: clamp(2.35rem, 5.5vw, 5.25rem); line-height: 0.99; }
h2 { font-size: clamp(1.65rem, 3.3vw, 3rem); }
h3 { font-size: clamp(1.12rem, 1.8vw, 1.52rem); }
p { max-width: var(--measure); margin: 0 0 1rem; text-wrap: pretty; }
ul, ol { margin: 0 0 1.4rem; padding-left: 1.3rem; }
li + li { margin-top: 0.45rem; }
button, a, input, select, textarea { touch-action: manipulation; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2.4rem, 860px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section-lg { padding: clamp(6rem, 12vw, 10rem) 0; }
.surface-2 { background: var(--surface-2); }
.grid { display: grid; gap: 1.25rem; }
.grid > * { min-width: 0; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
.cluster { display: flex; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.center-actions { justify-content: center; }
.muted, .help, .content-meta { color: var(--muted); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.34rem); line-height: 1.58; color: #515154; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 1.6rem; height: 1px; background: currentColor; content: ""; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.65rem;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 720;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 22%, transparent); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { border-color: #c9c9ce; background: #fff; color: #1d1d1f; }
.btn-secondary:hover { border-color: #77777b; color: #111; }
.btn-light { border-color: #fff; background: #fff; color: #111; }
.btn-light:hover { background: #f5f5f7; color: #111; }
.icon-button, .menu-btn, .drawer-close {
  display: inline-grid;
  width: var(--tap);
  height: var(--tap);
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 55%, white); outline-offset: 3px; }
.skip-link {
  position: fixed;
  top: -120px;
  left: 1rem;
  z-index: 10000;
  padding: 0.7rem 1rem;
  border-radius: 7px;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow-lg);
}
.skip-link:focus { top: 1rem; }

/* Header and navigation */
.topbar { background: #0b0b0c; color: #d2d2d7; font-size: 0.76rem; }
.topbar-inner { display: flex; min-height: 35px; align-items: center; justify-content: center; gap: clamp(1rem, 5vw, 4rem); }
.topbar-inner > * { min-width: 0; }
.topbar-copy { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar-link { display: inline-flex; align-items: center; gap: 0.35rem; color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }
.header {
  position: sticky;
  top: 0;
  z-index: 5000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  isolation: isolate;
}
.header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; min-width: 0; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 0.75rem; }
.brand { display: flex; min-width: 0; align-items: center; gap: 0.62rem; }
.brand-mark { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 8px; background: #111113; color: #fff; font-weight: 820; letter-spacing: -0.04em; }
.brand-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.1; }
.brand-copy strong { color: var(--ink); font-size: 0.98rem; letter-spacing: -0.025em; white-space: nowrap; }
.brand-copy span { color: #77777b; font-size: 0.61rem; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav { display: none; min-width: 0; align-items: center; justify-content: center; gap: 0.08rem; }
.nav-group { position: static; }
.nav-trigger-wrap { display: flex; align-items: center; border-radius: 7px; }
.nav-link { display: inline-flex; min-height: 42px; align-items: center; padding: 0.55rem 0.62rem; border-radius: 7px; color: #333336; font-size: 0.84rem; font-weight: 620; white-space: nowrap; }
.nav-link:hover, .nav-link[aria-current="page"], .nav-group.open .nav-trigger-wrap { background: #f0f0f2; color: #111; }
.nav-toggle { display: inline-grid; width: 28px; height: 38px; place-items: center; margin-left: -0.2rem; padding: 0; border: 0; border-radius: 6px; background: transparent; color: #56565b; }
.nav-toggle svg { transition: transform 0.2s ease; }
.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.header-cta { display: none; white-space: nowrap; }
.menu-btn { display: inline-grid; width: 48px; height: 48px; flex: 0 0 auto; place-content: center; gap: 4px; padding: 0; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.menu-btn span { display: block; width: 21px; height: 2px; border-radius: 99px; background: #202024; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.mega-menu[hidden] { display: none; }
.mega-menu-inner { width: min(100% - 3rem, var(--container)); margin-inline: auto; padding: 1.4rem 0 1.7rem; }
.mega-menu-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.mega-menu-heading h2 { margin: 0; font-size: 1.25rem; letter-spacing: -0.02em; }
.mega-menu-heading > a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--accent-dark); font-size: 0.86rem; font-weight: 720; }
.mega-kicker { display: block; color: var(--muted); font-size: 0.66rem; font-weight: 750; letter-spacing: 0.13em; text-transform: uppercase; }
.mega-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr); gap: 1.25rem; }
.mega-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
.mega-link { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 0.7rem; min-width: 0; padding: 0.8rem; border: 1px solid transparent; border-radius: 10px; color: #28282b; }
.mega-link:hover, .mega-link.active { border-color: #cfe3fa; background: #f5f9ff; color: #111; }
.mega-link > span:nth-child(2) { min-width: 0; }
.mega-link strong, .mega-link small { display: block; }
.mega-link strong { font-size: 0.9rem; line-height: 1.25; }
.mega-link small { margin-top: 0.18rem; color: var(--muted); font-size: 0.75rem; line-height: 1.35; }
.mega-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 9px; background: var(--accent-soft); color: var(--accent); }
.mega-feature { padding: 1.25rem; border: 1px solid #cfe3fa; border-radius: 12px; background: radial-gradient(circle at 100% 0, color-mix(in srgb, var(--accent) 13%, transparent), transparent 42%), #f5f9ff; }
.mega-feature h3 { margin-top: 0.8rem; font-size: 1.3rem; }
.mega-feature p { color: #55555a; font-size: 0.9rem; }
.mega-feature .btn { margin-top: 0.4rem; }

/* Mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; z-index: 7000; background: rgba(8, 10, 14, 0.56); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.drawer-backdrop[hidden] { display: none; }
.drawer { position: fixed; inset: 0 0 0 auto; z-index: 7001; display: flex; width: min(440px, 92vw); height: 100vh; height: 100dvh; flex-direction: column; background: #fff; box-shadow: -24px 0 70px rgba(0, 0, 0, 0.18); transform: translateX(105%); visibility: hidden; pointer-events: none; transition: transform 0.25s ease; }
.drawer.active { transform: translateX(0); visibility: visible; pointer-events: auto; }
.drawer-head { display: flex; min-height: 76px; flex: 0 0 auto; align-items: center; justify-content: space-between; padding: max(0.9rem, var(--safe-top)) max(1rem, var(--safe-right)) 0.9rem max(1rem, var(--safe-left)); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.97); }
.drawer-nav { display: grid; gap: 0.25rem; flex: 1 1 auto; padding: 0.8rem max(1rem, var(--safe-right)) 1rem max(1rem, var(--safe-left)); overflow-y: auto; overscroll-behavior: contain; }
.mobile-direct-link, .mobile-nav-row > a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 0.8rem; padding: 0.72rem 0.78rem; border-radius: 9px; color: #28282b; font-weight: 680; }
.mobile-direct-link:hover, .mobile-direct-link.active, .mobile-nav-row > a:hover, .mobile-nav-group.active > .mobile-nav-row > a { background: #edf5ff; color: var(--accent-dark); }
.mobile-nav-row { display: grid; grid-template-columns: minmax(0, 1fr) 48px; align-items: center; }
.mobile-nav-row button { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 0; border-radius: 8px; background: #f5f5f7; }
.mobile-nav-row button svg { transition: transform 0.2s ease; }
.mobile-nav-row button[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-submenu { display: grid; gap: 0.25rem; margin: 0.2rem 0 0.55rem; padding-left: 0.55rem; border-left: 2px solid #d8eaff; }
.mobile-submenu[hidden] { display: none; }
.mobile-submenu a { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: center; gap: 0.65rem; padding: 0.65rem; border-radius: 8px; color: #333336; }
.mobile-submenu a:hover, .mobile-submenu a.active { background: #f5f9ff; color: #111; }
.mobile-submenu strong, .mobile-submenu small { display: block; }
.mobile-submenu strong { font-size: 0.86rem; line-height: 1.25; }
.mobile-submenu small { margin-top: 0.12rem; color: var(--muted); font-size: 0.72rem; line-height: 1.35; }
.mobile-sub-icon { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 8px; background: var(--accent-soft); color: var(--accent); }
.drawer-contact { display: grid; gap: 0.65rem; flex: 0 0 auto; padding: 1rem max(1rem, var(--safe-right)) max(1rem, calc(var(--safe-bottom) + 0.75rem)) max(1rem, var(--safe-left)); border-top: 1px solid var(--line); background: #f8f8fa; }
.drawer-contact p { margin: 0; color: #55555a; font-size: 0.86rem; }
.drawer-contact-link { display: flex; align-items: center; gap: 0.45rem; color: var(--accent-dark); font-size: 0.84rem; }

/* Homepage */
.hero { padding: clamp(5rem, 9vw, 9rem) 0 clamp(4.5rem, 8vw, 7rem); border-bottom: 1px solid #e5e5e7; background: #fff; }
.hero-grid { display: grid; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.hero-copy { max-width: 720px; }
.hero h1 { max-width: 14ch; }
.hero-actions { margin-top: 1.8rem; }
.hero-note { margin-top: 1rem; color: var(--muted); font-size: 0.82rem; }
.system-visual { overflow: hidden; border: 1px solid #cfcfd4; border-radius: 14px; background: #f7f7f8; box-shadow: var(--shadow-lg); }
.system-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.9rem 1rem; border-bottom: 1px solid var(--line); background: #fff; }
.system-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 0.8rem; font-weight: 720; }
.system-status { flex: 0 0 auto; padding: 0.3rem 0.52rem; border: 1px solid #cfe9dc; border-radius: 4px; background: #edf8f2; color: #176b48; font-size: 0.7rem; }
.visual-card { padding: 1.25rem; background: #fff; }
.visual-card h2 { font-size: 1rem; }
.week-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.5rem; }
.week-grid span { display: grid; min-height: 92px; align-content: start; gap: 0.45rem; padding: 0.58rem; border-radius: 6px; background: #f1f1f3; }
.week-grid strong { font-size: 0.75rem; }
.week-grid i { height: 5px; border-radius: 2px; background: var(--accent); }
.week-grid i:nth-child(3) { width: 68%; }
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); background: #fff; }
.metric-row > div { min-width: 0; padding: 1rem; border-right: 1px solid var(--line); }
.metric-row > div:last-child { border-right: 0; }
.metric-row strong, .metric-row span { display: block; }
.metric-row strong { color: #111; font-size: 0.9rem; }
.metric-row span { color: var(--muted); font-size: 0.72rem; }
.trust-strip { border-bottom: 1px solid #e5e5e7; }
.trust-strip .container { padding: 1rem 0; }
.trust-strip .grid > div { display: flex; align-items: center; gap: 0.55rem; color: #222; font-size: 0.82rem; font-weight: 620; }
.trust-strip svg { color: var(--accent); }
.section-intro { max-width: 780px; margin-bottom: 2.8rem; }
.section-intro.center { margin-inline: auto; text-align: center; }
.feature-bento { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.bento { position: relative; min-height: 270px; padding: 2rem; background: #fff; }
.bento:hover { background: #f8f8fa; color: inherit; }
.bento.large { background: #f5f5f7; }
.bento h3 { margin-top: 1.2rem; font-size: clamp(1.35rem, 2vw, 1.9rem); }
.bento p { color: var(--muted); }
.icon-box { display: grid; width: 3rem; height: 3rem; flex: 0 0 auto; place-items: center; border-radius: 8px; background: var(--accent-soft); color: var(--accent); }
.tile-link { position: absolute; right: 1.25rem; bottom: 1.25rem; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 7px; background: #f1f1f3; color: var(--accent); }
.method-grid { display: grid; grid-template-columns: minmax(0, 1fr); border-top: 1px solid #cfcfd4; border-bottom: 1px solid #cfcfd4; }
.method-grid > div { padding: 1.8rem; border-bottom: 1px solid #cfcfd4; }
.method-grid > div:last-child { border-bottom: 0; }
.method-grid strong { display: block; margin-bottom: 2.2rem; color: var(--accent); }
.dark { background: #111113; color: #d2d2d7; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .lead { color: #d2d2d7; }
.dark .eyebrow { color: #78baff; }
.dark-points > div { padding: 1.2rem 0; border-top: 1px solid #3a3a3c; }

/* Cards and listings */
.card { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.lift { transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.lift:hover { border-color: #9a9aa0; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.listing-grid { margin-top: 2.5rem; }
.listing-card { display: flex; min-height: 100%; flex-direction: column; }
.listing-card h2 { margin-top: 1rem; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.listing-card p { color: #5f5f64; }
.listing-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; color: var(--accent-dark); font-weight: 720; }
.filter-bar { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.filter { min-height: 44px; padding: 0.55rem 0.85rem; border: 1px solid #cfcfd4; border-radius: 7px; background: #fff; font-weight: 680; }
.filter.active { border-color: #1d1d1f; background: #1d1d1f; color: #fff; }

/* Inner pages */
.page-hero { padding: clamp(3.6rem, 7vw, 6.8rem) 0 clamp(3rem, 5vw, 4.8rem); border-bottom: 1px solid #e5e5e7; background: linear-gradient(180deg, #fff, #fafbfc); }
.page-hero .breadcrumb { margin-bottom: 2rem; }
.page-hero .badge { margin-bottom: 1.15rem; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 68ch; margin-bottom: 0; }
.content-meta { margin-top: 1rem; font-size: 0.83rem; }
.page-section { background: #fff; }
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; align-items: start; }
.article-card { min-width: 0; padding: clamp(1.25rem, 4vw, 3.1rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.article-card > :first-child { margin-top: 0; }
.article-card h2 { margin-top: 3.2rem; padding-top: 0.25rem; font-size: clamp(1.6rem, 3vw, 2.55rem); }
.article-card h3 { margin-top: 1.8rem; }
.article-card p, .article-card ul, .article-card ol { max-width: var(--measure); }
.article-card a:not(.btn):not(.listing-link) { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 0.16em; }
.managed-content { margin: 0 0 2.2rem; }
.managed-content > :first-child { margin-top: 0; }
.page-aside { display: none; }
.toc-card, .aside-contact { padding: 1.1rem; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.toc-title { display: block; margin-bottom: 0.75rem; color: var(--ink); font-weight: 780; }
.toc-card ol { display: grid; gap: 0.1rem; margin: 0; padding: 0; list-style: none; }
.toc-card a { display: block; padding: 0.45rem 0.5rem; border-radius: 7px; color: #55555a; font-size: 0.82rem; line-height: 1.35; }
.toc-card a:hover, .toc-card a.active { background: var(--accent-soft); color: var(--accent-dark); }
.aside-contact { margin-top: 1rem; background: #f5f9ff; }
.aside-contact h2 { margin-top: 0.8rem; font-size: 1.15rem; }
.aside-contact p { color: #5d5d62; font-size: 0.86rem; }
.aside-contact > a { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--accent-dark); font-weight: 720; font-size: 0.86rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 1.5rem; padding: 0; list-style: none; color: var(--muted); font-size: 0.76rem; }
.breadcrumb li { display: flex; align-items: center; gap: 0.45rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; opacity: 0.45; }
.step-list { counter-reset: steps; display: grid; gap: 0.9rem; padding: 0; list-style: none; }
.step-list li { counter-increment: steps; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 10px; }
.step-list li::before { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: #111; color: #fff; font-weight: 800; content: counter(steps); }
.step-list p { margin-bottom: 0; }
.service-summary { margin: 0 0 2.5rem; }
.service-summary section { padding: 1.2rem; border: 1px solid var(--line); border-radius: 11px; background: #fafbfc; }
.service-summary h2 { margin-top: 0; font-size: 1.35rem; }
.service-area-card { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: 1.2rem; margin-top: 1.5rem; padding: clamp(1.3rem, 4vw, 2.2rem); border: 1px solid var(--line); border-radius: 12px; background: radial-gradient(circle at 95% 0, color-mix(in srgb, var(--accent) 10%, transparent), transparent 36%), #f8fafc; }
.service-area-card h2 { font-size: clamp(1.55rem, 3vw, 2.6rem); }
.service-area-list { display: grid; gap: 0.55rem; margin: 1rem 0; }
.service-area-list span { display: flex; align-items: flex-start; gap: 0.55rem; color: #28282b; font-weight: 650; }
.service-area-list svg { margin-top: 0.2rem; color: var(--success); }
.consultation-cta { margin-top: 2.7rem; border-color: #bfd9f5; background: radial-gradient(circle at 100% 0, color-mix(in srgb, var(--accent) 12%, transparent), transparent 42%), #f4f9ff; }
.consultation-cta h2 { margin-top: 0; font-size: clamp(1.45rem, 2.5vw, 2rem); }
.official-source { display: flex; align-items: flex-start; gap: 0.7rem; margin: 1.2rem 0; padding: 0.9rem 1rem; border: 1px solid #cfe3fa; border-radius: 8px; background: #f5f9ff; color: #343437; font-size: 0.9rem; }
.notice { margin: 1.25rem 0; padding: 1rem; border-left: 4px solid var(--accent); border-radius: 0 8px 8px 0; background: var(--accent-soft); }
.notice.info { border-color: var(--accent); background: #edf6ff; }
.notice.success { border-color: var(--success); background: var(--success-soft); }
.notice.warning { border-color: var(--warning); background: var(--warning-soft); }
.notice.error { border-color: var(--danger); background: var(--danger-soft); }
.notice h2 { margin-top: 0; font-size: 1.35rem; }
.legal-system-card { margin: 2rem 0; background: #f8fafc; }
.legal-system-card dl { display: grid; gap: 0.8rem; margin: 0; }
.legal-system-card dl div { display: grid; grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr); gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.legal-system-card dl div:last-child { border-bottom: 0; }
.legal-system-card dt { color: var(--ink); font-weight: 750; }
.legal-system-card dd { margin: 0; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 740; }
.faq-btn [data-faq-symbol] { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--surface-2); color: var(--accent-dark); }
.faq-panel { padding: 0 0 1rem; }
.faq-panel[hidden] { display: none; }

/* Forms */
.form-shell { overflow: hidden; border: 1px solid #cfcfd4; border-radius: 12px; background: #fff; box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08); }
.progress { height: 7px; background: #ececef; }
.progress span { display: block; width: 25%; height: 100%; background: var(--accent); transition: width 0.2s ease; }
.progress-text { margin: 0; padding: 0.65rem 1.1rem 0; color: var(--muted); font-size: 0.76rem; font-weight: 700; text-align: right; }
.form-body { padding: clamp(1.1rem, 4vw, 2.3rem); }
.form-step { display: block; }
.js .form-step { display: none; }
.js .form-step.active { display: block; }
.step-label { display: inline-flex; margin-bottom: 0.55rem; color: var(--accent-dark); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.08em; }
.form-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.42rem; }
.field label, .field legend, fieldset legend { color: var(--ink); font-weight: 720; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.choice-grid { display: grid; gap: 0.65rem; }
.choice { display: flex; gap: 0.65rem; align-items: flex-start; padding: 0.85rem; border: 1px solid #cfcfd4; border-radius: 8px; background: #fff; }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.choice input { flex: 0 0 auto; margin-top: 0.25rem; accent-color: var(--accent); }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.78rem;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); }
.error-text { min-height: 1.2em; margin: 0; color: var(--danger); font-size: 0.84rem; }
.help { margin: 0; font-size: 0.8rem; }
.form-actions { display: flex; justify-content: space-between; gap: 0.8rem; margin-top: 1.3rem; }
.form-actions .btn:only-child { margin-left: auto; }
.form-status:not(:empty) { margin-bottom: 1rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.link-button { display: inline; padding: 0; border: 0; background: transparent; color: var(--accent-dark); font-weight: 720; text-decoration: underline; text-underline-offset: 0.16em; }
.form-review { margin-bottom: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: 9px; background: #fafbfc; }
.form-review h3 { margin-top: 0; font-size: 1.1rem; }
.form-review dl { display: grid; gap: 0.55rem; margin: 0; }
.form-review dl div { display: grid; grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr); gap: 0.65rem; }
.form-review dt { color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.form-review dd { margin: 0; color: var(--ink); font-size: 0.88rem; }
.form-success { padding: clamp(1.4rem, 4vw, 2.4rem); }
.form-success[hidden] { display: none; }
.kvkk-dialog { width: min(100% - 2rem, 680px); max-height: calc(100dvh - 2rem); padding: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-lg); }
.kvkk-dialog::backdrop { background: rgba(8, 10, 14, 0.62); backdrop-filter: blur(3px); }
.dialog-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
.dialog-head h2 { margin: 0; font-size: 1.25rem; }
.dialog-body { padding: 1.2rem; overflow-y: auto; }
.form-shell[data-current-step="1"] .progress span { width: 25%; }
.form-shell[data-current-step="2"] .progress span { width: 50%; }
.form-shell[data-current-step="3"] .progress span { width: 75%; }
.form-shell[data-current-step="4"] .progress span { width: 100%; }

/* Calculators */
.calc-table { display: grid; gap: 0.55rem; overflow: hidden; }
.calc-row { display: grid; grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(72px, 0.55fr)); gap: 0.6rem; align-items: center; padding: 0.65rem; border-radius: 8px; background: var(--surface-2); }
.calc-head { border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; font-weight: 750; }
.calc-row input { min-width: 0; text-align: center; }
.calc-row output { color: var(--ink); font-weight: 760; text-align: center; }
.calculator-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.result { margin-top: 1rem; }
.result:empty { display: none; }
.result-box { padding: 1rem; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); text-align: center; }
.result-value { color: var(--ink); font-size: 1.55rem; font-weight: 850; }
.study-test { display: grid; gap: 1rem; }
.study-test fieldset { display: grid; gap: 0.65rem; }

/* Footer */
.footer { overflow: hidden; padding: 0 0 max(1.5rem, var(--safe-bottom)); background: #111113; color: #a1a1a6; }
.footer-lead { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(2rem, 5vw, 3.5rem) 0; border-bottom: 1px solid #3a3a3c; }
.footer-lead h2 { max-width: 24ch; color: #fff; font-size: clamp(1.75rem, 3vw, 2.8rem); }
.footer-lead p { margin-bottom: 0; color: #b9b9bf; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2rem; padding: 3rem 0 2rem; }
.footer h2 { color: #f5f5f7; font-size: 1rem; letter-spacing: -0.01em; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-about p { margin-top: 1rem; color: #aeb0b5; font-size: 0.9rem; }
.footer-trust { display: grid; gap: 0.5rem; }
.footer-trust span { display: flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; }
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { color: #d2d2d7; font-size: 0.88rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; gap: 1rem; justify-content: space-between; flex-wrap: wrap; padding-top: 1.2rem; border-top: 1px solid #3a3a3c; font-size: 0.78rem; }
.footer-bottom > span:last-child { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.mobile-action-bar { display: none; }

/* Responsive */
@media (min-width: 620px) {
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid.grid-2, .choice-grid.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento.large:last-child { grid-column: 1 / -1; }
  .method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-grid > div:nth-child(odd) { border-right: 1px solid #cfcfd4; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 840px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-strip .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.25fr repeat(3, minmax(0, 0.8fr)); }
}

@media (min-width: 1180px) {
  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr); }
  .feature-bento { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .bento { grid-column: span 4; }
  .bento.large { grid-column: span 8; }
  .method-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .method-grid > div { border-right: 1px solid #cfcfd4; border-bottom: 0; }
  .method-grid > div:last-child { border-right: 0; }
  .page-layout { grid-template-columns: minmax(0, 1fr) 260px; gap: 2.5rem; }
  .page-aside { position: sticky; top: calc(var(--header-height) + 1.2rem); display: block; }
}

@media (min-width: 1200px) {
  .container { width: min(100% - 3rem, var(--container)); }
  .nav-link { padding-inline: 0.72rem; }
}

@media (max-width: 1179px) {
  .topbar-hours { display: none; }
  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4500;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.45rem max(0.6rem, var(--safe-right)) max(0.45rem, var(--safe-bottom)) max(0.6rem, var(--safe-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  }
  .mobile-action-bar a { display: flex; min-height: 46px; align-items: center; justify-content: center; gap: 0.4rem; border-radius: 8px; color: var(--accent-dark); font-size: 0.78rem; font-weight: 720; }
  .mobile-action-bar a:first-child { background: var(--accent); color: #fff; }
  body { padding-bottom: calc(61px + var(--safe-bottom)); }
}

@media (max-width: 619px) {
  .topbar { display: none; }
  .header { position: sticky; top: 0; }
  .header-inner { min-height: 60px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-copy strong { font-size: 0.9rem; }
  .brand-copy span { display: none; }
  .drawer { inset: 0; width: 100vw; max-width: none; box-shadow: none; }
  .drawer-backdrop { display: none; }
  h1 { font-size: clamp(2.15rem, 9.8vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 7.8vw, 2.3rem); }
  .container, .narrow { width: min(100% - 1.3rem, var(--container)); }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .hero { padding: 3.6rem 0 3.4rem; }
  .hero-grid { gap: 2.6rem; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .hero-actions .btn { width: 100%; }
  .week-grid { gap: 0.3rem; }
  .week-grid span { min-height: 78px; padding: 0.4rem 0.3rem; }
  .week-grid strong { font-size: 0.62rem; }
  .metric-row { grid-template-columns: minmax(0, 1fr); }
  .metric-row > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-row > div:last-child { border-bottom: 0; }
  .trust-strip .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
  .trust-strip .container { padding-inline: 0.65rem; }
  .trust-strip .grid > div { align-items: flex-start; font-size: 0.74rem; }
  .bento { min-height: 225px; padding: 1.25rem; }
  .method-grid > div { padding: 1.4rem 0.2rem; border-right: 0 !important; }
  .page-hero { padding: 3rem 0 2.7rem; }
  .page-hero .breadcrumb { margin-bottom: 1.3rem; }
  .article-card { padding: 0; border: 0; border-radius: 0; box-shadow: none; }
  .article-card h2 { margin-top: 2.4rem; font-size: clamp(1.55rem, 7vw, 2rem); }
  .service-summary section { padding: 1rem; }
  .service-area-card { grid-template-columns: minmax(0, 1fr); gap: 0.8rem; padding: 1rem; }
  .consultation-cta { padding: 1rem; }
  .consultation-cta .cluster { display: grid; grid-template-columns: minmax(0, 1fr); }
  .consultation-cta .btn { width: 100%; }
  .form-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .form-actions .btn { width: 100%; margin: 0; }
  .form-actions .prev { order: 2; }
  .form-actions .next, .form-actions [type="submit"] { order: 1; }
  .form-review dl div, .legal-system-card dl div { grid-template-columns: minmax(0, 1fr); gap: 0.15rem; }
  .calc-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.4rem; }
  .calc-row > :first-child { grid-column: 1 / -1; }
  .calc-head { display: none; }
  .footer-lead { align-items: stretch; flex-direction: column; }
  .footer-lead .btn { width: 100%; }
  .footer-grid { padding-top: 2.5rem; }
}

@media (max-width: 359px) {
  .container, .narrow { width: min(100% - 1rem, var(--container)); }
  .brand-mark { width: 33px; height: 33px; }
  .menu-btn { width: 44px; height: 44px; }
  h1 { font-size: clamp(2.05rem, 11vw, 2.55rem); }
  .hero { padding-top: 3.1rem; }
  .trust-strip .grid { grid-template-columns: minmax(0, 1fr); }
  .calc-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calc-row output { grid-column: 1 / -1; }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}
@media (hover: none) {
  .lift:hover, .btn:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
@media (prefers-contrast: more) {
  :root { --line: #8b8b91; --muted: #4f4f54; }
  .card, .article-card, .form-shell, input, select, textarea, .choice { border-width: 2px; }
}
@media print {
  .topbar, .header, .drawer, .drawer-backdrop, .footer, .mobile-action-bar, .btn, .filter-bar, .page-aside { display: none !important; }
  body { padding: 0; background: #fff; color: #000; font-size: 11pt; }
  .section, .section-lg, .page-hero { padding: 0; }
  .container, .narrow { width: 100%; max-width: none; }
  .article-card, .card { padding: 0; border: 0; box-shadow: none; }
  a { text-decoration: underline; }
}
.section-action { display: flex; justify-content: center; margin-top: 2rem; }
.success-panel { max-width: 620px; margin-inline: auto; padding: 1rem; text-align: center; }
.success-panel p { margin-inline: auto; }
.success-icon { display: grid; width: 58px; height: 58px; margin: 0 auto 1rem; place-items: center; border-radius: 50%; background: var(--success-soft); color: var(--success); font-size: 1.7rem; font-weight: 900; }
.reference-code { display: inline-block; margin: 0.4rem 0 1rem; padding: 0.55rem 0.8rem; border-radius: 7px; background: #111113; color: #fff; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: 0.04em; }

/* v1.3.0 final premium polish */
:root {
  --home-section-y: clamp(5.25rem, 7vw, 7.5rem);
  --home-section-y-compact: clamp(4.5rem, 6vw, 6.5rem);
  --premium-radius: 20px;
  --premium-shadow: 0 24px 70px rgba(18, 35, 63, 0.1);
  --premium-shadow-soft: 0 14px 38px rgba(18, 35, 63, 0.07);
}

/* Header overflow and navigation safety */
.header-inner > * { min-width: 0; }
.brand { flex: 0 1 auto; }
.brand-copy strong { max-width: 18rem; overflow: hidden; text-overflow: ellipsis; }
.desktop-nav { flex: 0 1 auto; }
.nav-group, .nav-trigger-wrap { min-width: 0; }
.header-cta { flex: 0 0 auto; }
.header.nav-overflow .desktop-nav,
.header.nav-overflow .header-cta { display: none !important; }
.header.nav-overflow .menu-btn { display: inline-grid !important; }
.header.scrolled { border-bottom-color: rgba(17, 17, 19, 0.08); box-shadow: 0 8px 26px rgba(17, 17, 19, 0.055); }
.nav-link { letter-spacing: -0.01em; }
.mega-menu { max-height: calc(100dvh - var(--header-height) - 40px); overflow-y: auto; overscroll-behavior: contain; }
.mega-menu-inner, .mega-layout, .mega-links, .mega-link { min-width: 0; }
.mega-link strong, .mega-link small { overflow-wrap: anywhere; }
.mega-feature { min-width: 0; }
.mega-feature .btn { width: 100%; }
.drawer { overscroll-behavior: contain; }
.drawer-close { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.drawer-contact-link { min-width: 0; overflow-wrap: anywhere; }
.mobile-nav-row > a, .mobile-direct-link, .mobile-submenu a { min-width: 0; }
.mobile-nav-row > a, .mobile-direct-link { overflow-wrap: anywhere; }

/* Home page vertical rhythm */
.home-services,
.home-scope,
.home-process,
.home-approach,
.home-guides,
.home-location,
.home-faq,
.home-contact-section { padding-block: var(--home-section-y); }
.home-scope,
.home-location,
.home-contact-section { border-top: 1px solid rgba(17, 17, 19, 0.055); border-bottom: 1px solid rgba(17, 17, 19, 0.055); }
.home-process,
.home-guides,
.home-faq { background: #fff; }
.section-intro { max-width: 760px; margin-bottom: 2.6rem; }
.section-intro h2 { max-width: 22ch; }
.section-intro p { max-width: 63ch; color: #606066; font-size: 1.02rem; }
.section-intro.center h2, .section-intro.center p { margin-inline: auto; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2.25rem, 4vw, 3.3rem); }
.section-heading-row .section-intro { margin-bottom: 0; }
.section-text-link { display: inline-flex; flex: 0 0 auto; align-items: center; gap: .42rem; min-height: 42px; padding: .55rem .1rem; color: var(--accent-dark); font-size: .9rem; font-weight: 740; }
.section-text-link svg { transition: transform .18s ease; }
.section-text-link:hover svg { transform: translateX(3px); }

/* Hero */
.home-hero {
  position: relative;
  overflow: clip;
  padding: clamp(5.2rem, 7.6vw, 7.8rem) 0 clamp(5.4rem, 7.2vw, 7.3rem);
  border-bottom: 0;
  background:
    radial-gradient(circle at 87% 15%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(17, 17, 19, .035), transparent 31%),
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}
.home-hero::before { position: absolute; top: -20rem; right: -16rem; width: 42rem; height: 42rem; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 8%, transparent), transparent 69%); pointer-events: none; content: ""; }
.home-hero::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 102, 204, .18), transparent); content: ""; }
.home-hero .container { position: relative; z-index: 1; }
.home-hero .hero-grid { gap: clamp(3.5rem, 6vw, 6.5rem); }
.hero-copy { min-width: 0; max-width: 710px; }
.home-hero .eyebrow { margin-bottom: 1.25rem; }
.home-hero h1 { max-width: 12.5ch; font-size: clamp(3.25rem, 5.15vw, 5.35rem); line-height: .965; letter-spacing: -.055em; }
.home-hero .lead { max-width: 56ch; margin-top: 1.35rem; margin-bottom: 0; color: #4f5359; font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.6; }
.hero-actions { margin-top: 2rem; gap: .75rem; }
.hero-actions .btn { min-height: 52px; padding: .86rem 1.25rem; border-radius: 11px; }
.hero-secondary { border-color: #c9d0d8; background: rgba(255,255,255,.82); }
.hero-assurances { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; margin: 1.65rem 0 0; padding: 1.15rem 0 0; border-top: 1px solid rgba(17,17,19,.09); list-style: none; }
.hero-assurances li { display: flex; align-items: flex-start; gap: .5rem; margin: 0; color: #50545a; font-size: .78rem; line-height: 1.45; }
.hero-assurances svg { flex: 0 0 auto; margin-top: .13rem; color: var(--success); }
.home-roadmap { width: 100%; max-width: 540px; min-width: 0; justify-self: end; overflow: hidden; border: 1px solid #d3dae3; border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 32px 90px rgba(18,35,63,.14), 0 2px 8px rgba(18,35,63,.04); }
.roadmap-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.55rem 1.65rem 1.35rem; border-bottom: 1px solid #e1e5ea; background: linear-gradient(180deg, #fff, #fcfdff); }
.roadmap-kicker { display: block; margin-bottom: .34rem; color: #69717c; font-size: .67rem; font-weight: 780; letter-spacing: .115em; text-transform: uppercase; }
.roadmap-head h2 { max-width: 17ch; margin: 0; font-size: clamp(1.42rem, 2vw, 1.88rem); letter-spacing: -.035em; }
.roadmap-status { flex: 0 0 auto; padding: .38rem .62rem; border: 1px solid #cfe9dc; border-radius: 999px; background: var(--success-soft); color: #176b48; font-size: .68rem; font-weight: 780; }
.roadmap-steps { position: relative; display: grid; margin: 0; padding: .15rem 1.65rem; list-style: none; }
.roadmap-steps li { position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: .95rem; margin: 0; padding: 1.2rem 0; border-bottom: 1px solid #e5e8ec; }
.roadmap-steps li:last-child { border-bottom: 0; }
.roadmap-steps li:not(:last-child)::after { position: absolute; top: 3.55rem; bottom: -.15rem; left: 18px; width: 1px; background: #dce8f5; content: ""; }
.roadmap-steps li > span { position: relative; z-index: 1; display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid #d5e5f6; border-radius: 11px; background: #f2f7fd; color: var(--accent-dark); font-size: .72rem; font-weight: 840; }
.roadmap-steps strong { display: block; margin-bottom: .28rem; color: var(--ink); font-size: .96rem; }
.roadmap-steps p { margin: 0; color: #5e636a; font-size: .82rem; line-height: 1.52; }
.roadmap-foot { display: flex; align-items: flex-start; gap: .65rem; padding: 1.05rem 1.65rem; border-top: 1px solid #d9e5f1; background: #f5f9ff; color: #47515d; font-size: .78rem; line-height: 1.48; }
.roadmap-foot svg { flex: 0 0 auto; margin-top: .06rem; color: var(--accent); }

/* Trust strip */
.trust-strip { position: relative; z-index: 4; margin-top: -2.35rem; border: 0; background: transparent; }
.trust-strip .container { padding: 0; }
.trust-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; overflow: hidden; border: 1px solid #dce1e7; border-radius: 17px; background: rgba(255,255,255,.98); box-shadow: 0 18px 48px rgba(18,35,63,.09); }
.trust-grid > div { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: center; gap: .72rem; min-width: 0; padding: 1.05rem 1rem; border-bottom: 1px solid var(--line); }
.trust-grid > div:last-child { border-bottom: 0; }
.trust-grid svg { color: var(--accent); }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { color: var(--ink); font-size: .84rem; }
.trust-grid small { margin-top: .08rem; color: var(--muted); font-size: .72rem; line-height: 1.35; }

/* Service cards and content rhythm */
.service-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
.service-card { position: relative; display: flex; min-width: 0; min-height: 100%; flex-direction: column; padding: clamp(1.35rem, 3vw, 2.15rem); overflow: hidden; border: 1px solid #dfe3e8; border-radius: var(--premium-radius); background: #fff; color: inherit; box-shadow: 0 1px 2px rgba(17,17,19,.025); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 78%, #fff), color-mix(in srgb, var(--accent) 20%, transparent)); opacity: 0; transition: opacity .2s ease; content: ""; }
.service-card:hover { border-color: #a9c7e7; box-shadow: var(--premium-shadow-soft); color: inherit; transform: translateY(-3px); }
.service-card:hover::before { opacity: 1; }
.service-card-featured { border-color: #c4dcef; background: radial-gradient(circle at 100% 0, color-mix(in srgb, var(--accent) 11%, transparent), transparent 40%), linear-gradient(145deg, #f4f9ff, #fff 72%); }
.service-card-wide { background: linear-gradient(145deg, #f8f9fb, #fff); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.service-card .icon-box { width: 50px; height: 50px; margin: 0; border-radius: 13px; }
.service-card-arrow { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid #e2e5e9; border-radius: 11px; background: #fff; color: var(--accent-dark); transition: transform .18s ease, border-color .18s ease; }
.service-card:hover .service-card-arrow { border-color: #bdd6ee; transform: translateX(2px); }
.service-card-label { margin-top: 1.65rem; color: var(--accent-dark); font-size: .66rem; font-weight: 790; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-top: .55rem; margin-bottom: .75rem; font-size: clamp(1.3rem, 2vw, 1.78rem); }
.service-card p { margin-bottom: 0; color: #5d6268; font-size: .91rem; line-height: 1.6; }
.service-card-link { display: inline-flex; align-items: center; margin-top: auto; padding-top: 1.25rem; color: var(--accent-dark); font-size: .85rem; font-weight: 750; }
.scope-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.1rem; }
.scope-card { min-width: 0; padding: clamp(1.4rem, 3vw, 2.25rem); border: 1px solid #dfe3e8; border-radius: var(--premium-radius); background: #fff; box-shadow: 0 8px 28px rgba(17,17,19,.035); }
.scope-card-positive { border-color: #bde3d4; background: radial-gradient(circle at 100% 0, rgba(8,127,91,.08), transparent 39%), linear-gradient(145deg, #f2fbf7, #fff 78%); }
.scope-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 13px; background: var(--accent-soft); color: var(--accent); }
.scope-card-positive .scope-icon { background: var(--success-soft); color: var(--success); }
.scope-card h3 { margin-top: 1.25rem; margin-bottom: 1rem; }
.scope-card ul { display: grid; gap: .72rem; margin-bottom: 0; }
.scope-card li { padding-left: .08rem; color: #50545a; line-height: 1.5; }
.process-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }
.process-grid article { position: relative; min-width: 0; padding: 1.5rem; overflow: hidden; border: 1px solid #dfe3e8; border-radius: 17px; background: #fff; box-shadow: 0 1px 2px rgba(17,17,19,.025); }
.process-grid article::after { position: absolute; top: 0; right: 0; width: 4.5rem; height: 4.5rem; border-radius: 0 0 0 100%; background: color-mix(in srgb, var(--accent) 5%, transparent); content: ""; }
.process-grid article > span { position: relative; z-index: 1; display: grid; width: 38px; height: 38px; margin-bottom: 1.65rem; place-items: center; border: 1px solid #d8e8f7; border-radius: 11px; background: #f2f7fd; color: var(--accent-dark); font-size: .72rem; font-weight: 840; letter-spacing: .04em; }
.process-grid h3 { margin-bottom: .65rem; font-size: 1.2rem; }
.process-grid p { margin-bottom: 0; color: #666b72; font-size: .89rem; line-height: 1.58; }

/* Approach, location and guides */
.home-approach { border-top: 0; border-bottom: 0; background: #0c0c0e; }
.approach-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; align-items: center; padding: clamp(1.6rem, 4vw, 3.25rem); border: 1px solid #2d2d31; border-radius: 24px; background: radial-gradient(circle at 92% 0, rgba(0,102,204,.2), transparent 36%), linear-gradient(145deg, #151517, #0d0d0f); box-shadow: inset 0 1px rgba(255,255,255,.03); }
.approach-grid > div:first-child h2 { max-width: 15ch; }
.approach-grid > div:first-child .lead { max-width: 50ch; }
.approach-points { display: grid; gap: 0; }
.approach-points article { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 1rem; padding: 1.15rem 0; border-top: 1px solid #343438; }
.approach-points article:first-child { border-top: 0; }
.approach-points article > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #353b44; border-radius: 12px; background: #22252a; color: #81bdff; }
.approach-points h3 { margin-bottom: .34rem; font-size: 1.06rem; }
.approach-points p { margin: 0; color: #b9bbc0; font-size: .87rem; line-height: 1.52; }
.home-guides .listing-grid { margin-top: 0; }
.home-guides .listing-card { border-radius: 18px; box-shadow: 0 1px 2px rgba(17,17,19,.025); }
.home-guides .listing-card h3 { margin-top: 1rem; font-size: clamp(1.22rem, 1.7vw, 1.55rem); }
.location-panel { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; overflow: hidden; border: 1px solid #dce1e7; border-radius: 24px; background: #fff; box-shadow: var(--premium-shadow-soft); }
.location-copy { padding: clamp(1.55rem, 4vw, 3.25rem); }
.location-copy h2 { max-width: 17ch; }
.location-options { display: grid; align-content: center; gap: 0; padding: .65rem clamp(1.1rem, 3vw, 2.2rem); border-top: 1px solid var(--line); background: linear-gradient(180deg, #f9fbfd, #f5f8fb); }
.location-options article { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: .9rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.location-options article:last-child { border-bottom: 0; }
.location-options article > span { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid #d7e7f7; border-radius: 12px; background: #f0f6fd; color: var(--accent); }
.location-options h3 { margin-bottom: .25rem; font-size: 1rem; }
.location-options p { margin: 0; color: #666b72; font-size: .84rem; line-height: 1.52; }
.home-faq .faq { overflow: hidden; border: 1px solid #dfe3e8; border-radius: 17px; background: #fff; }
.home-faq .faq-item { padding-inline: 1.25rem; }
.home-faq .faq-item:last-child { border-bottom: 0; }
.home-faq .faq-btn { min-height: 62px; }
.home-faq .faq-panel { color: #60656c; }

/* Premium form */
.home-contact-section { background: radial-gradient(circle at 6% 4%, rgba(0,102,204,.075), transparent 31%), linear-gradient(180deg, #f4f7fa, #f8fafc); }
.home-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.25rem; align-items: start; }
.home-contact-copy { min-width: 0; }
.home-contact-copy h2 { max-width: 15ch; }
.home-contact-copy .lead { max-width: 48ch; }
.home-form-wrap { min-width: 0; width: 100%; max-width: 720px; justify-self: end; }
.privacy-card { margin-top: 1.6rem; padding: 1.3rem; border: 1px solid #cddff1; border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: 0 8px 28px rgba(18,35,63,.04); }
.privacy-card h3 { margin-bottom: .9rem; font-size: 1.04rem; }
.privacy-card ul { display: grid; gap: .64rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.privacy-card li { display: flex; align-items: flex-start; gap: .55rem; margin: 0; color: #4f5863; font-size: .83rem; line-height: 1.48; }
.privacy-card svg { flex: 0 0 auto; margin-top: .15rem; color: var(--success); }
.privacy-card > a { display: inline-flex; align-items: center; gap: .36rem; color: var(--accent-dark); font-size: .83rem; font-weight: 740; }
.form-shell { overflow: hidden; border: 1px solid #d4dae1; border-radius: 22px; background: #fff; box-shadow: 0 30px 85px rgba(18,35,63,.13), 0 2px 6px rgba(18,35,63,.035); }
.form-shell-head { display: flex; align-items: center; gap: .8rem; padding: 1.15rem 1.4rem; border-bottom: 1px solid #e2e6eb; background: linear-gradient(180deg, #fff, #fbfcfe); }
.form-shell-icon { display: grid; width: 43px; height: 43px; flex: 0 0 auto; place-items: center; border: 1px solid #d4e6f8; border-radius: 12px; background: #f0f6fd; color: var(--accent); }
.form-shell-head > div { display: flex; min-width: 0; flex-direction: column; line-height: 1.25; }
.form-shell-kicker { color: #6a717b; font-size: .66rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.form-shell-head strong { overflow: hidden; color: var(--ink); font-size: .91rem; text-overflow: ellipsis; white-space: nowrap; }
.form-shell-state { margin-left: auto; padding: .34rem .56rem; border-radius: 999px; background: #f1f3f6; color: #5c626a; font-size: .68rem; font-weight: 760; white-space: nowrap; }
.progress { height: 5px; background: #edf0f3; }
.progress span { border-radius: 0 99px 99px 0; background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 72%, #64a8ea)); }
.progress-text { margin: 0; padding: .85rem 1.65rem 0; color: #737983; font-size: .68rem; font-weight: 760; letter-spacing: .07em; text-align: left; text-transform: uppercase; }
.form-body { padding: clamp(1.35rem, 3.5vw, 2.15rem) clamp(1.25rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.35rem); }
.form-step > h2, .form-step legend h2 { margin-bottom: 1.25rem; font-size: clamp(1.45rem, 2.5vw, 1.9rem); }
.step-label { margin-bottom: .52rem; color: var(--accent-dark); font-size: .68rem; font-weight: 790; letter-spacing: .1em; text-transform: uppercase; }
.form-grid { gap: 1.05rem; }
.field { gap: .46rem; }
.field label, .field legend, fieldset legend { font-size: .88rem; font-weight: 720; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  min-height: 52px;
  padding: .79rem .88rem;
  border-color: #c9d0d8;
  border-radius: 11px;
  background: #fbfcfd;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
textarea { min-height: 132px; }
input:hover, select:hover, textarea:hover { border-color: #aeb7c1; background: #fff; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); background: #fff; outline: 0; box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 12%, transparent); }
.choice-grid { gap: .72rem; }
.choice { gap: .72rem; padding: .92rem 1rem; border-color: #d3d8de; border-radius: 12px; background: #fff; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.choice:hover { border-color: #b8c7d6; }
.choice:has(input:checked) { border-color: var(--accent); background: #f2f7fd; box-shadow: inset 0 0 0 1px var(--accent), 0 5px 16px rgba(0,102,204,.06); }
.form-actions { gap: .75rem; margin-top: 1.55rem; padding-top: 1.25rem; border-top: 1px solid #eceef1; }
.form-actions .btn { min-height: 50px; }
.form-review { padding: 1.15rem; border-radius: 13px; background: #f8fafc; }
.form-status:not(:empty) { border-radius: 11px; }

/* Footer density */
.footer { padding-bottom: max(1.25rem, var(--safe-bottom)); background: #0d0d0f; }
.footer .container { position: relative; }
.footer-lead { gap: 2.25rem; padding: clamp(2rem, 4vw, 3rem) 0; border-bottom-color: #303034; }
.footer-lead-copy { min-width: 0; }
.footer-lead .eyebrow { margin-bottom: .72rem; }
.footer-lead h2 { max-width: 26ch; margin-bottom: .7rem; font-size: clamp(1.65rem, 2.65vw, 2.5rem); }
.footer-lead p { max-width: 62ch; color: #aeb0b5; font-size: .91rem; line-height: 1.55; }
.footer-lead .btn { flex: 0 0 auto; min-height: 50px; border-radius: 11px; }
.footer-grid { gap: clamp(1.5rem, 3vw, 2.6rem); padding: 2.35rem 0 1.8rem; }
.footer-about p { margin: .9rem 0 .8rem; font-size: .86rem; line-height: 1.5; }
.footer h2 { margin-bottom: .85rem; color: #f5f5f7; font-size: .77rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { gap: .42rem; }
.footer-links a { min-width: 0; color: #c8c9ce; font-size: .84rem; line-height: 1.42; overflow-wrap: anywhere; }
.footer-trust { gap: .42rem; }
.footer-trust span { font-size: .77rem; }
.footer-bottom { padding-top: 1rem; border-top-color: #303034; color: #85858c; font-size: .72rem; }
.footer-bottom a { color: #b9bac0; }

/* Desktop layout */
@media (min-width: 620px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-featured { grid-column: 1 / -1; }
  .scope-grid, .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 840px) {
  .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .trust-grid > div { border-right: 1px solid var(--line); border-bottom: 0; }
  .trust-grid > div:last-child { border-right: 0; }
}
@media (min-width: 900px) {
  .location-panel { grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr); }
  .location-options { border-top: 0; border-left: 1px solid var(--line); }
  .home-contact-grid { grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(2.5rem, 5.5vw, 5rem); }
  .home-contact-copy { position: sticky; top: calc(var(--header-height) + 1.5rem); }
}
@media (min-width: 1040px) {
  .service-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.15rem; }
  .service-card-featured { grid-column: span 7; min-height: 350px; }
  .service-card:nth-child(2) { grid-column: span 5; min-height: 350px; }
  .service-card:nth-child(3), .service-card:nth-child(4), .service-card-wide { grid-column: span 4; min-height: 300px; }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .approach-grid { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: clamp(3rem, 7vw, 6rem); }
}
@media (min-width: 1180px) and (max-width: 1279px) {
  .header-cta { display: none; }
  .nav-link { padding-inline: .5rem; font-size: .8rem; }
}
@media (min-width: 1180px) {
  .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr); }
  .page-layout { grid-template-columns: minmax(0, 1fr) 280px; }
}
@media (min-width: 1440px) {
  .home-hero { padding-top: 7.5rem; }
  .home-roadmap { max-width: 560px; }
}

/* Tablet and mobile polish */
@media (max-width: 1179px) {
  .mega-menu { display: none !important; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: .75rem; }
  .section-text-link { min-height: 38px; padding-block: .25rem; }
  .home-hero .hero-grid { max-width: 900px; }
  .home-roadmap { max-width: 760px; justify-self: start; }
}
@media (max-width: 719px) {
  .topbar { display: none; }
  .home-hero { padding-top: 3.35rem; padding-bottom: 4.35rem; }
  .home-hero .hero-grid { gap: 2.35rem; }
  .home-hero::before { top: -24rem; right: -23rem; }
  .home-hero h1 { max-width: 15ch; font-size: clamp(2.35rem, 10.4vw, 3.25rem); line-height: 1.01; letter-spacing: -.048em; }
  .home-hero .lead { margin-top: 1rem; font-size: 1rem; line-height: 1.57; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); margin-top: 1.55rem; }
  .hero-actions .btn { width: 100%; min-height: 50px; }
  .hero-secondary { min-height: 44px !important; border-color: transparent; background: transparent; box-shadow: none; color: var(--accent-dark); }
  .hero-secondary:hover { border-color: transparent; background: var(--accent-soft); }
  .hero-assurances { grid-template-columns: minmax(0, 1fr); gap: .58rem; margin-top: 1.15rem; padding-top: 1rem; }
  .hero-assurances li { font-size: .78rem; }
  .roadmap-head { align-items: flex-start; flex-direction: column; gap: .75rem; padding: 1.2rem 1.15rem 1rem; }
  .roadmap-status { align-self: flex-start; }
  .home-roadmap { border-radius: 18px; box-shadow: 0 18px 48px rgba(18,35,63,.11); }
  .roadmap-steps { padding-inline: 1.15rem; }
  .roadmap-steps li { grid-template-columns: 38px minmax(0, 1fr); gap: .78rem; padding: 1rem 0; }
  .roadmap-steps li > span { width: 34px; height: 34px; border-radius: 10px; }
  .roadmap-steps li:not(:last-child)::after { top: 3.25rem; left: 16px; }
  .roadmap-steps strong { font-size: .91rem; }
  .roadmap-steps p { font-size: .78rem; }
  .roadmap-foot { padding: .9rem 1.15rem; font-size: .74rem; }
  .trust-strip { margin-top: -1.5rem; }
  .trust-grid { border-radius: 15px; }
  .trust-grid > div { padding: .9rem; }
}
@media (max-width: 619px) {
  :root { --home-section-y: 4rem; --home-section-y-compact: 3.6rem; }
  .header-inner { min-height: 62px; }
  .menu-btn { width: 44px; height: 44px; border-radius: 11px; }
  .drawer-head { min-height: 68px; }
  .drawer-nav { padding-top: .65rem; }
  .drawer-contact { padding-top: .85rem; }
  .home-services { padding-top: 4.65rem; }
  .section-intro { margin-bottom: 2rem; }
  .section-intro h2 { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .section-intro p { font-size: .95rem; }
  .section-heading-row { margin-bottom: 2rem; }
  .service-grid, .scope-grid, .process-grid { gap: .85rem; }
  .service-card { min-height: 0; padding: 1.2rem; border-radius: 17px; }
  .service-card .icon-box { width: 46px; height: 46px; }
  .service-card-arrow { width: 38px; height: 38px; }
  .service-card-label { margin-top: 1.15rem; }
  .service-card h3 { margin-bottom: .58rem; font-size: 1.34rem; }
  .service-card p { font-size: .87rem; line-height: 1.55; }
  .service-card-link { padding-top: .95rem; }
  .scope-card { padding: 1.2rem; border-radius: 17px; }
  .scope-card h3 { margin-top: 1rem; }
  .scope-card ul { gap: .58rem; padding-left: 1.15rem; }
  .scope-card li { font-size: .89rem; }
  .process-grid article { padding: 1.2rem; border-radius: 16px; }
  .process-grid article > span { margin-bottom: 1rem; }
  .process-grid h3 { font-size: 1.13rem; }
  .approach-grid { gap: 1.7rem; padding: 1.25rem; border-radius: 19px; }
  .approach-grid > div:first-child h2 { font-size: 2rem; }
  .approach-grid > div:first-child .btn { width: 100%; }
  .approach-points article { grid-template-columns: 42px minmax(0, 1fr); gap: .8rem; padding: 1rem 0; }
  .approach-points article > span { width: 40px; height: 40px; }
  .location-panel { border-radius: 18px; }
  .location-copy { padding: 1.25rem; }
  .location-copy .cluster { display: grid; }
  .location-copy .btn { width: 100%; }
  .location-options { padding-inline: 1.1rem; }
  .home-faq .faq-item { padding-inline: 1rem; }
  .home-faq .faq-btn { min-height: 58px; padding-block: .9rem; font-size: .91rem; }
  .home-contact-grid { gap: 1.75rem; }
  .home-contact-copy h2 { max-width: 18ch; }
  .privacy-card { margin-top: 1.25rem; padding: 1.05rem; border-radius: 14px; }
  .form-shell { border-radius: 17px; box-shadow: 0 18px 48px rgba(18,35,63,.11); }
  .form-shell-head { padding: 1rem 1.05rem; }
  .form-shell-icon { width: 40px; height: 40px; border-radius: 11px; }
  .progress-text { padding: .75rem 1.1rem 0; }
  .form-body { padding: 1.15rem 1.05rem 1.25rem; }
  .form-step > h2, .form-step legend h2 { margin-bottom: 1rem; font-size: 1.48rem; }
  input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea { min-height: 50px; border-radius: 10px; }
  .choice { padding: .82rem .88rem; border-radius: 11px; }
  .form-actions { display: grid; grid-template-columns: minmax(0, 1fr); margin-top: 1.3rem; padding-top: 1rem; }
  .form-actions .btn { width: 100%; margin: 0; }
  .form-actions .prev { order: 2; }
  .form-actions .next, .form-actions [type="submit"] { order: 1; }
  .footer-lead { align-items: stretch; flex-direction: column; gap: 1.15rem; padding: 1.9rem 0 1.55rem; }
  .footer-lead .eyebrow { margin-bottom: .55rem; }
  .footer-lead h2 { margin-bottom: .55rem; font-size: 1.55rem; line-height: 1.08; }
  .footer-lead p { font-size: .84rem; }
  .footer-lead .btn { width: 100%; min-height: 48px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.45rem 1rem; padding: 1.65rem 0 1.35rem; }
  .footer-about { grid-column: 1 / -1; padding-bottom: .35rem; border-bottom: 1px solid #29292d; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-contact .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer h2 { margin-bottom: .65rem; font-size: .7rem; }
  .footer-links { gap: .36rem; }
  .footer-links a { font-size: .8rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .6rem; padding-top: .9rem; }
}
@media (max-width: 380px) {
  .home-hero { padding-top: 3rem; }
  .home-hero h1 { font-size: clamp(2.15rem, 11vw, 2.7rem); }
  .form-shell-state { display: none; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-about, .footer-contact { grid-column: auto; }
  .footer-contact .footer-links { grid-template-columns: minmax(0, 1fr); }
}
@media (max-height: 620px) and (orientation: landscape) {
  .drawer-head { min-height: 58px; padding-block: .55rem; }
  .drawer-contact { display: none; }
  .drawer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; }
  .mobile-nav-group { min-width: 0; }
}
