:root {
  --navy: #17324d;
  --navy-2: #0f2539;
  --teal: #1e7d78;
  --teal-dark: #135f5c;
  --mint: #d9f1ea;
  --mint-2: #edf8f4;
  --cream: #f7f5ef;
  --orange: #f59e62;
  --orange-dark: #dc7f3e;
  --text: #1a2733;
  --muted: #66727c;
  --line: #dfe4e7;
  --white: #ffffff;
  --success: #2e8b62;
  --shadow: 0 20px 60px rgba(23, 50, 77, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-140%);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section-pad { padding: 100px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(247, 245, 239, 0.9);
  border-bottom: 1px solid rgba(23, 50, 77, 0.08);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { width: 176px; flex: 0 0 auto; }
.brand img { width: 176px; height: auto; }
.main-nav { display: flex; gap: 28px; margin-left: 16px; font-size: 14px; font-weight: 650; color: #43515d; }
.main-nav a:hover { color: var(--teal); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.language-select select {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.65);
  border-radius: 10px;
  padding: 10px 30px 10px 12px;
  color: var(--navy);
  font-weight: 700;
}
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; font-size: 26px; color: var(--navy); }

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 750;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 8px 20px rgba(30,125,120,.18); }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-secondary:hover { border-color: #b8c3ca; box-shadow: 0 8px 18px rgba(23,50,77,.08); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-accent { background: var(--orange); color: var(--navy-2); }
.btn-accent:hover { background: #ffad75; }
.btn-lg { padding: 15px 22px; border-radius: 14px; }
.full-width { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--mint); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(245,158,98,.16); }

.hero {
  overflow: hidden;
  padding-top: 84px;
  background:
    radial-gradient(circle at 80% 14%, rgba(217,241,234,.85), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(245,158,98,.08), transparent 26%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 76px; }
.hero-copy h1 { margin: 0; font-size: clamp(50px, 5.4vw, 76px); line-height: .98; letter-spacing: -.055em; color: var(--navy); max-width: 670px; }
.hero-copy h1 span { color: var(--teal); }
.hero-lede { font-size: 20px; line-height: 1.55; max-width: 620px; color: #55626d; margin: 28px 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #5b6772; font-size: 13px; font-weight: 650; }
.mini-icon { display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--mint); color: var(--teal-dark); margin-right: 5px; }

.hero-product { position: relative; padding: 28px 0 38px; }
.app-window { background: #fff; border: 1px solid rgba(23,50,77,.12); border-radius: 26px; box-shadow: 0 32px 80px rgba(23,50,77,.17); overflow: hidden; transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.app-topbar { height: 44px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid #edf0f2; background: #fcfdfd; }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d6dde1; }
.window-dots span:first-child { background: #f4a589; }
.window-dots span:nth-child(2) { background: #f3cc74; }
.window-dots span:last-child { background: #75c9a4; }
.secure-chip { font-size: 11px; font-weight: 750; color: #66727c; }
.app-body { min-height: 430px; display: grid; grid-template-columns: 64px 1fr; }
.app-sidebar { background: var(--navy); display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 0; }
.sidebar-logo img { width: 34px; height: 34px; border-radius: 10px; }
.side-item { width: 34px; height: 34px; display: grid; place-items: center; color: #b9ccd8; border-radius: 10px; font-size: 14px; }
.side-item.active { background: rgba(217,241,234,.16); color: #fff; }
.dashboard { padding: 28px; background: #f7faf9; }
.dashboard-head { display: flex; justify-content: space-between; align-items: center; }
.dashboard-head h3 { margin: 2px 0 0; font-size: 23px; color: var(--navy); letter-spacing: -.02em; }
.tiny-label { display: block; font-size: 10px; letter-spacing: .12em; font-weight: 850; color: #87929a; }
.tiny-label.orange { color: var(--orange-dark); }
.progress-ring { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--teal) 38%, #e4ece9 0); position: relative; }
.progress-ring::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #f7faf9; }
.progress-ring span { position: relative; z-index: 1; font-size: 11px; font-weight: 850; color: var(--navy); }
.priority-card { margin-top: 24px; background: #fff; border: 1px solid #e0e8e5; border-radius: 18px; padding: 18px; display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; box-shadow: 0 10px 28px rgba(23,50,77,.06); }
.priority-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: #fff0e5; color: var(--orange-dark); font-weight: 900; }
.priority-card h4 { margin: 3px 0; font-size: 15px; color: var(--navy); }
.priority-card p { margin: 0; font-size: 11px; color: #7a858d; }
.priority-card button { border: 0; background: var(--teal); color: #fff; border-radius: 10px; padding: 10px 12px; font-size: 11px; font-weight: 800; }
.task-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.mini-task { background: #fff; border: 1px solid #e2e9e7; border-radius: 14px; padding: 14px; min-height: 124px; }
.mini-task.completed { background: #f1faf6; }
.task-top { display: flex; align-items: center; justify-content: space-between; }
.task-top span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: var(--teal-dark); font-weight: 850; font-size: 12px; }
.task-top small { color: #98a2a9; font-size: 8px; letter-spacing: .08em; font-weight: 800; }
.mini-task strong { display: block; margin-top: 16px; font-size: 12px; line-height: 1.35; color: var(--navy); }
.mini-task p { margin: 5px 0 0; font-size: 9px; color: #8b969d; }
.floating-badge { position: absolute; z-index: 3; background: #fff; border: 1px solid #dfe6e8; border-radius: 999px; padding: 10px 14px; box-shadow: 0 12px 30px rgba(23,50,77,.12); color: var(--navy); font-size: 12px; font-weight: 800; }
.badge-top { right: -22px; top: 0; }
.badge-bottom { left: -26px; bottom: 12px; }

.social-proof-strip { background: #fff; border-top: 1px solid #e9ecee; border-bottom: 1px solid #e9ecee; }
.strip-grid { min-height: 90px; display: grid; grid-template-columns: 1.6fr repeat(5, auto); gap: 12px; align-items: center; }
.strip-grid > span { color: #74808a; font-size: 13px; font-weight: 650; }
.source-pill { border: 1px solid #dde4e7; background: #fafcfc; border-radius: 999px; padding: 9px 14px; color: #52616c; font-size: 12px; font-weight: 800; }

.two-col-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.two-col-heading h2, .centered-heading h2, .section-heading-row h2, .document-copy h2, .nearby-copy h2, .final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.two-col-heading > p { margin: 0 0 4px; color: #66727c; font-size: 18px; }
.comparison-card { margin-top: 48px; display: grid; grid-template-columns: 1fr 70px 1fr; gap: 12px; align-items: center; background: #fff; border-radius: var(--radius-lg); padding: 28px; border: 1px solid #e3e8ea; box-shadow: var(--shadow); }
.comparison-side { min-height: 340px; border-radius: 22px; padding: 24px; position: relative; overflow: hidden; }
.comparison-side.before { background: #f5f1ee; }
.comparison-side.after { background: var(--mint-2); }
.comparison-label { font-size: 10px; font-weight: 900; letter-spacing: .13em; color: #a17d6f; }
.comparison-label.green { color: var(--teal); }
.comparison-arrow { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; margin: 0 auto; font-size: 24px; }
.chaos-stack { position: relative; height: 240px; margin-top: 24px; }
.chaos-card { position: absolute; left: 50%; top: 50%; width: 230px; background: #fff; border: 1px solid #e0d6d2; border-radius: 14px; padding: 18px; box-shadow: 0 12px 24px rgba(60,45,39,.09); color: #715d54; font-weight: 800; }
.rotate-left { transform: translate(-66%,-100%) rotate(-6deg); }
.rotate-right { transform: translate(-34%,-58%) rotate(5deg); }
.rotate-left-small { transform: translate(-68%,-5%) rotate(-3deg); }
.rotate-right-small { transform: translate(-24%,45%) rotate(6deg); }
.clarity-card { margin-top: 24px; background: #fff; border-radius: 18px; border: 1px solid #dbe9e4; padding: 20px; box-shadow: 0 14px 32px rgba(23,50,77,.07); }
.clarity-head { display: flex; align-items: center; justify-content: space-between; color: var(--navy); border-bottom: 1px solid #edf1ef; padding-bottom: 14px; }
.clarity-head span { font-size: 12px; color: #7b878e; }
.clarity-card ul { list-style: none; padding: 0; margin: 14px 0 0; }
.clarity-card li { display: flex; align-items: center; gap: 11px; padding: 11px 0; color: #44525c; font-size: 14px; }
.clarity-card li span { width: 26px; height: 26px; border-radius: 8px; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; font-size: 11px; font-weight: 900; }

.steps-section { background: #fff; }
.centered-heading { text-align: center; max-width: 850px; margin: 0 auto; }
.centered-heading p { color: #6f7b84; font-size: 18px; margin: 18px 0 0; }
.centered-heading.narrow { max-width: 760px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.step-card { position: relative; border: 1px solid #e1e7e9; border-radius: 24px; padding: 26px; min-height: 360px; background: #fff; }
.step-card.featured { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-10px); }
.step-number { color: #a4afb6; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.step-card.featured .step-number { color: #9eb9c7; }
.step-visual { height: 150px; border-radius: 18px; margin: 24px 0; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.profile-visual, .action-visual { background: #f3f7f6; }
.step-card.featured .step-visual { background: rgba(255,255,255,.08); }
.avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: var(--navy); font-weight: 900; font-size: 20px; }
.form-lines { margin-left: 18px; width: 120px; }
.form-lines span, .action-lines span { display: block; height: 10px; border-radius: 99px; background: #dce7e3; margin: 9px 0; }
.form-lines span:nth-child(2) { width: 70%; }
.form-lines span:nth-child(3) { width: 86%; }
.route-visual { display: block; }
.route-line { position: absolute; left: 18%; right: 18%; top: 50%; height: 4px; border-radius: 99px; background: rgba(217,241,234,.35); }
.route-dot { position: absolute; top: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; background: var(--mint); color: var(--teal-dark); border: 5px solid var(--navy); }
.route-dot.one { left: 22%; }
.route-dot.two { left: 50%; background: var(--orange); color: var(--navy); }
.route-dot.three { left: 78%; background: #fff; color: var(--navy); }
.action-check { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--mint); color: var(--teal-dark); font-size: 26px; font-weight: 900; }
.action-lines { width: 110px; margin-left: 16px; }
.action-lines span:nth-child(2) { width: 72%; }
.step-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 22px; letter-spacing: -.025em; }
.step-card.featured h3 { color: #fff; }
.step-card p { margin: 0; color: #6e7a83; }
.step-card.featured p { color: #c4d1d8; }

.tasks-section { background: var(--navy); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading-row h2 { color: #fff; }
.text-link { color: var(--mint); font-weight: 800; }
.tasks-grid-large { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.service-card { background: #fff; border-radius: 20px; padding: 26px; min-height: 300px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 36px rgba(0,0,0,.18); }
.service-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--mint-2); color: var(--teal); font-size: 22px; font-weight: 900; }
.service-category { margin-top: 22px; color: #8a969d; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin: 8px 0; font-size: 22px; line-height: 1.2; color: var(--navy); }
.service-card p { color: #66727c; margin: 0 0 18px; }
.service-card a { margin-top: auto; font-weight: 850; color: var(--teal); }

.document-section { background: linear-gradient(180deg, #eef7f4, #f7f5ef); }
.document-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.document-copy p { font-size: 18px; color: #65717b; max-width: 560px; }
.feature-list { list-style: none; padding: 0; margin: 28px 0; }
.feature-list li { display: flex; gap: 10px; align-items: center; margin: 13px 0; font-weight: 700; color: #42515c; }
.feature-list li span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--mint); color: var(--teal-dark); font-size: 12px; }
.privacy-note { display: inline-flex; gap: 8px; align-items: center; padding: 12px 14px; background: #fff; border: 1px solid #dce6e3; border-radius: 12px; color: #68747c; font-size: 13px; }
.document-demo { background: #fff; border: 1px solid #dce5e2; border-radius: 26px; padding: 24px; box-shadow: var(--shadow); }
.upload-panel { min-height: 230px; border: 2px dashed #c9d8d3; background: #f8fbfa; border-radius: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 22px; transition: border-color .2s ease, background .2s ease; }
.upload-panel.dragover { border-color: var(--teal); background: var(--mint-2); }
.upload-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--mint); color: var(--teal-dark); font-size: 24px; font-weight: 900; }
.upload-panel h3 { margin: 16px 0 4px; color: var(--navy); }
.upload-panel p { margin: 0 0 18px; color: #849098; font-size: 13px; }
.analysis-card { margin-top: 18px; border: 1px solid #e1e7e9; border-radius: 18px; padding: 18px; opacity: .55; transition: opacity .3s ease, transform .3s ease; }
.analysis-card.active { opacity: 1; transform: translateY(-3px); }
.analysis-top { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid #edf0f2; padding-bottom: 14px; }
.doc-thumb { width: 44px; height: 44px; border-radius: 12px; background: #eaf3ff; color: #315985; display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.analysis-top small { display: block; color: #95a0a7; font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.analysis-top strong { display: block; color: var(--navy); }
.verified-tag { background: var(--mint-2); color: var(--teal-dark); border-radius: 99px; padding: 7px 9px; font-size: 10px; font-weight: 800; }
.analysis-row { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid #f0f2f3; font-size: 13px; }
.analysis-row span { color: #7b878f; }
.analysis-row strong { color: #34434e; }
.analysis-row.highlight strong { color: var(--orange-dark); }
.analysis-card .btn { margin-top: 14px; }

.nearby-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 86px; align-items: center; }
.map-card { height: 500px; background: #e8efed; border-radius: 28px; overflow: hidden; position: relative; box-shadow: var(--shadow); border: 1px solid #dbe3e1; }
.map-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(23,50,77,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(23,50,77,.06) 1px, transparent 1px); background-size: 42px 42px; }
.map-road { position: absolute; background: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.45); border-radius: 99px; }
.road-one { width: 650px; height: 16px; transform: rotate(28deg); left: -80px; top: 220px; }
.road-two { width: 560px; height: 12px; transform: rotate(-35deg); left: 60px; top: 180px; }
.map-pin { position: absolute; width: 42px; height: 42px; border-radius: 50% 50% 50% 10%; transform: rotate(-45deg); background: var(--navy); display: grid; place-items: center; box-shadow: 0 12px 25px rgba(23,50,77,.25); }
.map-pin span { transform: rotate(45deg); color: #fff; font-weight: 900; }
.pin-one { left: 27%; top: 26%; }
.pin-two { left: 62%; top: 42%; background: var(--teal); }
.pin-three { left: 43%; top: 68%; background: var(--orange); }
.map-search { position: absolute; top: 20px; left: 20px; background: #fff; border-radius: 12px; padding: 12px 16px; width: 170px; box-shadow: 0 10px 25px rgba(23,50,77,.12); color: #63717b; font-weight: 700; }
.location-card { position: absolute; left: 22px; right: 22px; bottom: 20px; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-radius: 18px; padding: 18px; box-shadow: 0 18px 34px rgba(23,50,77,.15); }
.location-card small { display: block; color: var(--teal); font-size: 9px; letter-spacing: .12em; font-weight: 900; }
.location-card strong { display: block; color: var(--navy); font-size: 18px; margin: 4px 0; }
.location-card span { color: #74808a; font-size: 12px; }
.nearby-copy > p { font-size: 18px; color: #64717b; }
.location-features { margin: 28px 0; display: grid; gap: 16px; }
.location-features > div { display: grid; grid-template-columns: 44px 1fr; column-gap: 13px; align-items: center; }
.location-features > div > span { grid-row: 1 / 3; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--mint-2); color: var(--teal); font-size: 20px; }
.location-features strong { color: var(--navy); }
.location-features small { color: #78848c; }

.trust-section { background: #fff; }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.trust-cards article { border: 1px solid #e1e6e8; border-radius: 20px; padding: 24px; background: #fff; }
.trust-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--mint-2); color: var(--teal); display: grid; place-items: center; font-size: 20px; font-weight: 900; }
.trust-cards h3 { color: var(--navy); font-size: 21px; margin: 18px 0 8px; }
.trust-cards p { color: #68747d; min-height: 72px; }
.source-meta { margin-top: 18px; border-top: 1px solid #edf0f2; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 11px; }
.source-meta span { color: #8c979e; }
.source-meta strong { color: #45535e; text-align: right; }

.pricing-section { background: #f2f6f4; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1px solid #dfe6e8; border-radius: 22px; padding: 28px; display: flex; flex-direction: column; }
.price-card.popular { border: 2px solid var(--teal); transform: translateY(-10px); box-shadow: 0 18px 44px rgba(30,125,120,.12); }
.popular-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; border-radius: 99px; padding: 7px 13px; font-size: 9px; letter-spacing: .1em; font-weight: 900; white-space: nowrap; }
.plan-name { font-size: 11px; letter-spacing: .12em; font-weight: 900; color: var(--teal); }
.price { display: flex; align-items: baseline; gap: 8px; margin: 12px 0; }
.price strong { color: var(--navy); font-size: 40px; letter-spacing: -.04em; }
.price span { color: #829099; font-size: 13px; }
.price-card > p { color: #66727c; min-height: 64px; }
.price-card ul { list-style: none; padding: 0; margin: 14px 0 26px; }
.price-card li { padding: 9px 0; color: #4e5d68; font-size: 14px; }
.price-card li::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 9px; }
.price-card .btn { margin-top: auto; }

.final-cta { background: var(--navy); padding: 72px 0; }
.final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; }
.final-cta h2 { color: #fff; font-size: clamp(36px, 4vw, 54px); }

.site-footer { background: #0e2234; color: #c4d1d8; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 46px; }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { color: #fff; font-size: 16px; margin: 18px 0 8px; }
.footer-brand span { font-size: 11px; color: #7f96a5; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { color: #fff; margin-bottom: 6px; }
.footer-grid a { color: #aebfca; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 38px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: #8299a8; }

.modal-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(9,25,39,.64); backdrop-filter: blur(7px); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.plan-modal { width: min(100%, 520px); background: #fff; border-radius: 24px; padding: 30px; position: relative; box-shadow: 0 28px 90px rgba(0,0,0,.35); }
.modal-close { position: absolute; right: 18px; top: 14px; border: 0; background: transparent; color: #78848c; font-size: 28px; }
.modal-progress { display: flex; gap: 8px; margin-bottom: 30px; }
.modal-progress span { height: 5px; flex: 1; border-radius: 99px; background: #e7ecee; }
.modal-progress span.active { background: var(--teal); }
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-step h2 { margin: 8px 0 10px; color: var(--navy); font-size: 30px; line-height: 1.15; letter-spacing: -.035em; }
.modal-step > p { color: #6e7a83; }
.modal-step label { display: grid; gap: 8px; font-weight: 750; color: #43515c; margin: 24px 0; }
.modal-step input { width: 100%; padding: 15px; border: 1px solid #cfd8dc; border-radius: 12px; outline: none; }
.modal-step input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(30,125,120,.1); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.choice-grid button { border: 1px solid #dce3e6; background: #fff; border-radius: 12px; padding: 14px; color: #475661; text-align: left; font-weight: 750; }
.choice-grid button.selected { border-color: var(--teal); background: var(--mint-2); color: var(--teal-dark); }
.success-symbol { width: 68px; height: 68px; border-radius: 22px; background: var(--mint); color: var(--teal-dark); display: grid; place-items: center; font-size: 30px; font-weight: 900; margin-bottom: 20px; }
.starter-actions { display: grid; gap: 10px; margin: 22px 0; }
.starter-actions span { padding: 12px 14px; border: 1px solid #e1e6e8; border-radius: 12px; color: #52606a; }

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .hero-grid, .document-grid, .nearby-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy h1, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-product { width: min(100%, 760px); margin: 0 auto; }
  .strip-grid { grid-template-columns: repeat(3, 1fr); padding: 22px 0; }
  .strip-grid > span { grid-column: 1 / -1; text-align: center; }
  .two-col-heading { grid-template-columns: 1fr; gap: 22px; }
  .tasks-grid-large { grid-template-columns: repeat(2, 1fr); }
  .document-copy, .nearby-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  .section-pad { padding: 74px 0; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 68px; }
  .brand, .brand img { width: 142px; }
  .menu-toggle { display: block; }
  .nav-actions { display: none; position: absolute; left: 14px; right: 14px; top: 74px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px; box-shadow: var(--shadow); }
  .nav-actions.open { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-actions .language-select { grid-column: 1 / -1; }
  .nav-actions select { width: 100%; }
  .hero { padding-top: 62px; }
  .hero-grid { gap: 42px; }
  .hero-copy h1 { font-size: 49px; }
  .hero-lede { font-size: 17px; }
  .app-window { transform: none; }
  .app-body { grid-template-columns: 46px 1fr; }
  .dashboard { padding: 18px; }
  .task-grid { grid-template-columns: 1fr; }
  .mini-task:nth-child(n+2) { display: none; }
  .priority-card { grid-template-columns: 38px 1fr; }
  .priority-card button { grid-column: 1 / -1; }
  .badge-top { right: 0; }
  .badge-bottom { left: 0; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-card { grid-template-columns: 1fr; }
  .comparison-arrow { transform: rotate(90deg); }
  .steps-grid, .tasks-grid-large, .trust-cards, .pricing-grid { grid-template-columns: 1fr; }
  .step-card.featured, .price-card.popular { transform: none; }
  .section-heading-row, .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .document-grid, .nearby-grid { gap: 48px; }
  .map-card { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: 42px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; gap: 10px; text-align: left; justify-content: start; margin-left: auto; margin-right: auto; width: fit-content; }
  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
  .dashboard-head h3 { font-size: 19px; }
  .analysis-row { grid-template-columns: 1fr; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .choice-grid { grid-template-columns: 1fr; }
}

.local-test-banner{position:relative;z-index:9999;padding:8px 16px;text-align:center;background:#fff3cd;color:#6b4b00;font-size:12px;font-weight:800;letter-spacing:.06em;border-bottom:1px solid #ead28a}
button:disabled{cursor:not-allowed;opacity:.58}

/* Scroll-to-top button */
.scroll-top{position:fixed;bottom:28px;right:28px;width:44px;height:44px;border-radius:50%;background:var(--teal);color:#fff;font-size:20px;line-height:1;border:none;cursor:pointer;box-shadow:0 4px 16px rgba(23,50,77,.18);opacity:0;transform:translateY(12px);transition:opacity .25s,transform .25s;pointer-events:none;z-index:999}
.scroll-top.visible{opacity:1;transform:translateY(0);pointer-events:auto}
.scroll-top:hover{background:var(--teal-dark)}

/* Quiz modal — plan upsell strip */
.quiz-plan-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:16px 0 14px}
.qps-plan{border:1.5px solid var(--line);border-radius:12px;padding:10px 8px;text-align:center}
.qps-plan.qps-active{border-color:var(--teal);background:var(--mint-2)}
.qps-name{display:block;font-size:10px;font-weight:900;letter-spacing:.06em;color:var(--muted);margin-bottom:4px}
.qps-active .qps-name{color:var(--teal)}
.qps-price{display:block;font-size:15px;font-weight:900;color:var(--navy)}
.qps-price em{font-size:10px;font-weight:600;font-style:normal;color:var(--muted)}
.qps-plan small{display:block;font-size:10px;color:var(--muted);margin-top:3px}
.quiz-upgrade-link{display:block;text-align:center;font-size:12px;font-weight:700;color:var(--teal);margin-top:10px;text-decoration:none}
.quiz-upgrade-link:hover{text-decoration:underline}

/* Tools showcase grid (index.html + pricing.html) */
.tools-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.tool-card{background:#fff;border:1px solid var(--line);border-radius:14px;padding:16px 14px;text-align:center}
.tool-card-icon{font-size:28px;margin-bottom:8px;line-height:1}
.tool-card-name{font-size:12px;font-weight:900;color:var(--navy);margin-bottom:4px}
.tool-card-desc{font-size:11px;color:var(--muted);line-height:1.5}
@media (max-width: 900px) { .tools-grid{grid-template-columns:repeat(3,1fr)} }
@media (max-width: 600px) { .tools-grid{grid-template-columns:1fr 1fr} }

/* ── Plan comparison ───────────────────────────────────────────────────── */
.plan-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 6px; }
.plan-card { border: 1.5px solid var(--line, #dbe2ea); border-radius: 16px; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; background: var(--surface, #fff); }
.plan-card--active { border-color: var(--teal, #1e7d78); box-shadow: 0 0 0 3px rgba(30,125,120,.1); }
.plan-card--pro { border-color: var(--navy, #17324d); }
.plan-card--pro.plan-card--active { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(23,50,77,.1); }
.plan-card-badge { font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.plan-card--free .plan-card-badge { color: var(--muted, #64748b); }
.plan-card--plus .plan-card-badge { color: var(--teal, #1e7d78); }
.plan-card--pro .plan-card-badge { color: var(--navy, #17324d); }
.plan-card-price { font-size: 20px; font-weight: 900; color: var(--navy, #17324d); margin: 2px 0; }
.plan-card-price small { font-size: 13px; font-weight: 500; color: var(--muted, #64748b); }
.plan-card ul { margin: 0; padding-left: 16px; font-size: 12px; line-height: 1.5; color: var(--text, #0f172a); display: grid; gap: 4px; flex: 1; }
.plan-card-btn { margin-top: 6px; background: var(--teal, #1e7d78); color: #fff; border: none; border-radius: 10px; padding: 10px; font-weight: 700; font-size: 13px; cursor: pointer; }
.plan-card-btn--pro { background: var(--navy, #17324d); }
.plan-card-current { font-size: 12px; font-weight: 700; color: var(--teal, #1e7d78); text-align: center; margin-top: 4px; }
.plan-card--pro .plan-card-current { color: var(--navy, #17324d); }
@media (max-width: 680px) { .plan-comparison { grid-template-columns: 1fr; } }

/* ── Report problem inline ─────────────────────────────────────────────── */
.report-problem-inline { margin-top: 12px; background: none; border: none; padding: 0; font-size: 12px; color: var(--muted, #64748b); cursor: pointer; text-decoration: underline; }

/* ── Send Money sanctions / zelle note ────────────────────────────────── */
.remit-sanctions-block { background: #fff8f0; border: 1.5px solid #f1d1b9; border-radius: 18px; padding: 28px 24px; text-align: center; margin: 8px 0 18px; }
.remit-sanctions-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.remit-sanctions-block h4 { color: #89522d; margin: 0 0 10px; font-size: 17px; }
.remit-sanctions-block p { color: #7a5b49; line-height: 1.6; margin: 0; font-size: 13px; }
.remit-zelle-note { font-size: 12px; color: var(--muted, #64748b); margin: 12px 0 18px; padding: 10px 14px; background: #f8fbfa; border-radius: 10px; }

/* ── Send Money domestic section (Zelle) ──────────────────────────────── */
.remit-domestic-section { margin-top: 28px; }
.remit-domestic-label { font-size: 11px; font-weight: 900; letter-spacing: .08em; color: var(--muted, #64748b); text-transform: uppercase; margin: 0 0 12px; }
.remit-card--domestic { border-color: #dde8e6; background: #f8fbfa; }
.remit-card--domestic .remit-name { color: var(--muted, #64748b); }
