:root {
  --navy-950: #061326;
  --navy-900: #0a1d39;
  --navy-800: #10294c;
  --blue-600: #1877f2;
  --blue-500: #3188ff;
  --blue-100: #e9f2ff;
  --emerald-600: #08a875;
  --emerald-500: #16c58b;
  --emerald-100: #e5faf2;
  --ink: #10233d;
  --muted: #607089;
  --line: #dfe7f1;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --shadow-sm: 0 10px 30px rgba(17, 44, 79, 0.07);
  --shadow-md: 0 20px 55px rgba(17, 44, 79, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --max-width: 1180px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}

html[data-theme="dark"] {
  --ink: #edf4ff;
  --muted: #9aabc3;
  --line: #243957;
  --surface: #0a1a31;
  --surface-alt: #0f2543;
  --blue-100: #152f56;
  --emerald-100: #123d36;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 20px 55px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body::selection { background: rgba(49, 136, 255, 0.22); }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  backdrop-filter: blur(18px);
}

.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.17rem; font-weight: 800; letter-spacing: -0.04em; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--blue-500), var(--emerald-500)); box-shadow: 0 8px 18px rgba(24, 119, 242, 0.25); font-size: 1.25rem; line-height: 1; }
.brand-accent { color: var(--blue-500); }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a { padding: 9px 10px; color: var(--muted); font-size: 0.86rem; font-weight: 650; border-radius: 9px; transition: color 0.2s ease, background 0.2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--blue-500); background: var(--blue-100); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle, .menu-toggle { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--muted); transition: all 0.2s ease; }
.theme-toggle:hover, .menu-toggle:hover { color: var(--blue-500); border-color: var(--blue-500); transform: translateY(-1px); }
.menu-toggle { display: none; border-radius: 10px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 2px 0; border-radius: 2px; background: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 19px; border: 1px solid transparent; border-radius: 11px; font-size: 0.9rem; font-weight: 750; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue-600); box-shadow: 0 10px 22px rgba(24, 119, 242, 0.22); }
.button-primary:hover { background: #0f68db; box-shadow: 0 14px 28px rgba(24, 119, 242, 0.29); }
.button-secondary { color: var(--ink); background: var(--surface); border-color: var(--line); }
.button-secondary:hover { border-color: var(--blue-500); color: var(--blue-500); }
.button-emerald { color: #fff; background: var(--emerald-600); box-shadow: 0 10px 22px rgba(8, 168, 117, 0.2); }
.button-emerald:hover { background: #078f65; }
.button-small { min-height: 40px; padding: 0 14px; font-size: 0.82rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-500); font-size: 0.73rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--emerald-500); }
.section { padding: 96px 0; }
.section-tight { padding: 70px 0; }
.section-muted { background: var(--surface-alt); }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.045em; }
h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { margin-bottom: 10px; font-size: 1.16rem; }
.lead { max-width: 630px; margin-bottom: 0; color: var(--muted); font-size: 1.12rem; }
.text-muted { color: var(--muted); }

.hero { position: relative; overflow: hidden; padding: 92px 0 80px; background: radial-gradient(circle at 78% 28%, rgba(49, 136, 255, 0.14), transparent 34%), radial-gradient(circle at 12% 85%, rgba(22, 197, 139, 0.1), transparent 28%); }
.hero::after { content: ""; position: absolute; right: -160px; bottom: -270px; width: 560px; height: 560px; border: 1px solid color-mix(in srgb, var(--blue-500) 20%, transparent); border-radius: 50%; box-shadow: 0 0 0 35px color-mix(in srgb, var(--blue-500) 4%, transparent), 0 0 0 70px color-mix(in srgb, var(--blue-500) 3%, transparent); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr); align-items: center; gap: 74px; }
.hero-copy .lead { font-size: 1.14rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 18px; color: var(--muted); font-size: 0.8rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-500); box-shadow: 0 0 0 5px rgba(22, 197, 139, 0.13); }

.dashboard-shell { padding: 14px; border: 1px solid color-mix(in srgb, var(--line) 80%, transparent); border-radius: 25px; background: color-mix(in srgb, var(--surface) 86%, transparent); box-shadow: var(--shadow-md); transform: rotate(1.2deg); }
.dashboard { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-alt); }
.dashboard-topbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; border-bottom: 1px solid var(--line); background: var(--surface); }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #cbd6e5; }
.window-dots i:first-child { background: #ff8a80; }
.window-dots i:nth-child(2) { background: #ffd166; }
.window-dots i:nth-child(3) { background: var(--emerald-500); }
.dashboard-topbar small { color: var(--muted); font-size: 0.68rem; font-weight: 700; }
.dashboard-body { display: grid; grid-template-columns: 120px 1fr; min-height: 390px; }
.dashboard-sidebar { padding: 18px 12px; border-right: 1px solid var(--line); background: var(--navy-900); }
.dashboard-sidebar strong { display: block; margin: 2px 6px 22px; color: #fff; font-size: 0.73rem; letter-spacing: -0.02em; }
.side-item { display: flex; align-items: center; gap: 7px; margin: 5px 0; padding: 8px 7px; border-radius: 7px; color: #9fb1ca; font-size: 0.64rem; font-weight: 700; }
.side-item.active { color: #fff; background: rgba(49, 136, 255, 0.28); }
.side-icon { width: 6px; height: 6px; border-radius: 2px; background: currentColor; }
.dashboard-content { padding: 18px; }
.dash-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 15px; }
.dash-heading h4 { margin-bottom: 3px; font-size: 1rem; }
.dash-heading span { color: var(--muted); font-size: 0.63rem; }
.mini-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(145deg, var(--blue-500), var(--emerald-500)); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metric { padding: 11px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.metric span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 0.57rem; font-weight: 700; }
.metric strong { font-size: 0.95rem; letter-spacing: -0.04em; }
.metric em { display: block; margin-top: 3px; color: var(--emerald-600); font-size: 0.58rem; font-style: normal; font-weight: 750; }
.dash-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 8px; margin-top: 8px; }
.dash-card { padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.dash-card-header strong { font-size: 0.67rem; }
.dash-card-header span { color: var(--blue-500); font-size: 0.58rem; font-weight: 750; }
.bar-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 112px; gap: 7px; padding-top: 12px; border-bottom: 1px solid var(--line); }
.bar-column { display: flex; flex: 1; align-items: flex-end; justify-content: center; height: 100%; gap: 3px; }
.bar { width: 7px; height: var(--h); border-radius: 5px 5px 0 0; background: var(--blue-500); transition: height 0.5s ease; }
.bar:nth-child(2) { background: var(--emerald-500); opacity: 0.82; }
.bar-labels { display: flex; justify-content: space-between; margin-top: 5px; color: var(--muted); font-size: 0.53rem; }
.category-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 7px; margin: 11px 0; font-size: 0.6rem; }
.category-row i { width: 8px; height: 8px; border-radius: 3px; background: var(--c); }
.category-row b { font-weight: 750; }
.progress-track { height: 5px; margin-top: 5px; border-radius: 5px; background: var(--line); grid-column: 2 / -1; }
.progress-track span { display: block; width: var(--w); height: 100%; border-radius: inherit; background: var(--c); }
.goal-card { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(120deg, var(--surface), var(--emerald-100)); }
.goal-card p { margin: 0 0 2px; color: var(--muted); font-size: 0.59rem; }
.goal-card strong { font-size: 0.8rem; }
.ring { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: conic-gradient(var(--emerald-500) 0 74%, var(--line) 74% 100%); }
.ring::after { content: "74%"; display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--surface); color: var(--ink); font-size: 0.56rem; font-weight: 800; }

.trust-row { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; align-items: center; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row p { margin: 0; color: var(--muted); font-size: 0.85rem; }
.trust-stat { display: flex; align-items: center; gap: 10px; }
.trust-stat strong { font-size: 1.1rem; }
.trust-stat span { color: var(--muted); font-size: 0.72rem; line-height: 1.2; }
.trust-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--blue-500); background: var(--blue-100); font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; overflow: hidden; min-height: 205px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.feature-card::after { content: ""; position: absolute; right: -30px; bottom: -42px; width: 130px; height: 130px; border: 1px solid color-mix(in srgb, var(--blue-500) 20%, transparent); border-radius: 50%; }
.feature-card:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--blue-500) 50%, var(--line)); box-shadow: var(--shadow-md); }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 20px; border-radius: 13px; color: var(--blue-500); background: var(--blue-100); font-size: 1.15rem; font-weight: 900; }
.feature-card:nth-child(2n) .feature-icon { color: var(--emerald-600); background: var(--emerald-100); }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.split-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 70px; }
.split-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.check-list { display: grid; gap: 14px; margin: 27px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--muted); font-size: 0.94rem; }
.check-list li::before { content: "✓"; display: grid; flex: 0 0 22px; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: var(--emerald-600); background: var(--emerald-100); font-size: 0.75rem; font-weight: 900; }
.insight-panel { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.insight-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.insight-panel-header strong { font-size: 1rem; }
.select-pill { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: var(--surface-alt); font-size: 0.73rem; }
.insight-number { margin-bottom: 22px; }
.insight-number span { display: block; color: var(--muted); font-size: 0.76rem; }
.insight-number strong { display: block; margin-top: 4px; font-size: 2.1rem; letter-spacing: -0.06em; }
.insight-chart { display: flex; align-items: flex-end; gap: 8px; height: 155px; padding: 0 5px; border-bottom: 1px solid var(--line); }
.insight-chart span { flex: 1; height: var(--h); min-height: 12px; border-radius: 7px 7px 0 0; background: linear-gradient(180deg, var(--blue-500), color-mix(in srgb, var(--blue-500) 36%, transparent)); transition: height 0.5s ease; }
.insight-labels { display: flex; justify-content: space-between; padding-top: 8px; color: var(--muted); font-size: 0.68rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.step-card { position: relative; padding: 28px 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.step-card::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 45px; color: var(--blue-500); font-size: 2.35rem; font-weight: 850; letter-spacing: -0.07em; }
.step-card:not(:last-child)::after { content: "→"; position: absolute; top: 34px; right: -22px; z-index: 1; color: var(--emerald-500); font-size: 1.2rem; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.page-hero { padding: 84px 0 70px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 80% 20%, rgba(49, 136, 255, 0.12), transparent 34%); }
.page-hero .lead { max-width: 720px; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.25rem); }
.breadcrumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: 0.78rem; }
.breadcrumbs a { color: var(--blue-500); }

.feature-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-detail { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.feature-detail .feature-icon { margin: 0; }
.feature-detail p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.timeline { position: relative; display: grid; gap: 28px; max-width: 850px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; top: 23px; bottom: 23px; left: 24px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 22px; align-items: start; }
.timeline-number { display: grid; place-items: center; width: 49px; height: 49px; border: 5px solid var(--surface-alt); border-radius: 50%; color: #fff; background: var(--blue-500); font-weight: 850; box-shadow: 0 0 0 1px var(--line); }
.timeline-item:nth-child(2) .timeline-number { background: var(--emerald-600); }
.timeline-item:nth-child(3) .timeline-number { background: var(--navy-800); }
.timeline-copy { padding: 2px 0 18px; }
.timeline-copy p { margin-bottom: 0; color: var(--muted); }

.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.security-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.security-card p { margin-bottom: 0; color: var(--muted); font-size: 0.91rem; }
.notice { display: flex; gap: 15px; padding: 20px; border: 1px solid color-mix(in srgb, var(--blue-500) 28%, var(--line)); border-radius: var(--radius-md); background: var(--blue-100); }
.notice-mark { flex: 0 0 auto; color: var(--blue-500); font-size: 1.15rem; }
.notice p { margin: 0; color: var(--ink); font-size: 0.9rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.price-card.featured { border: 2px solid var(--blue-500); box-shadow: 0 18px 45px rgba(24, 119, 242, 0.16); transform: translateY(-8px); }
.popular { position: absolute; top: 17px; right: 17px; padding: 5px 8px; border-radius: 6px; color: #fff; background: var(--blue-500); font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.price-card h3 { margin-bottom: 7px; }
.price-card > p { min-height: 48px; color: var(--muted); font-size: 0.85rem; }
.price { margin: 18px 0 22px; font-size: 2.5rem; font-weight: 850; letter-spacing: -0.07em; }
.price small { color: var(--muted); font-size: 0.76rem; font-weight: 650; letter-spacing: 0; }
.price-card .check-list { flex: 1; margin: 0 0 28px; gap: 11px; }
.price-card .check-list li { font-size: 0.84rem; }
.demo-label { display: inline-block; margin-bottom: 8px; color: var(--emerald-600); font-size: 0.67rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 27px; border-top: 3px solid var(--blue-500); border-radius: var(--radius-sm); background: var(--surface-alt); }
.value-card:nth-child(2) { border-color: var(--emerald-500); }
.value-card:nth-child(3) { border-color: var(--navy-800); }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }
.about-callout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; padding: 38px; border-radius: var(--radius-lg); color: #fff; background: var(--navy-900); }
.about-callout h2 { margin-bottom: 12px; }
.about-callout p { margin-bottom: 0; color: #afc0d9; }
.about-badge { justify-self: end; display: grid; place-items: center; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; color: #fff; background: radial-gradient(circle, rgba(49,136,255,0.35), rgba(8,168,117,0.12)); text-align: center; font-size: 0.78rem; font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 56px; align-items: start; }
.contact-details { display: grid; gap: 18px; margin-top: 32px; }
.contact-detail { display: flex; gap: 13px; align-items: flex-start; }
.contact-detail-icon { display: grid; place-items: center; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; color: var(--blue-500); background: var(--blue-100); font-weight: 850; }
.contact-detail strong { display: block; margin-bottom: 2px; font-size: 0.82rem; }
.contact-detail span, .contact-detail a { color: var(--muted); font-size: 0.84rem; }
.form-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 10px; outline: 0; color: var(--ink); background: var(--surface-alt); padding: 12px 13px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(49,136,255,0.13); }
.field input.invalid, .field textarea.invalid, .field select.invalid { border-color: #e15555; }
.error-text { min-height: 17px; color: #c53d3d; font-size: 0.7rem; }
.form-card .button { margin-top: 7px; }
.form-success { display: none; margin-top: 15px; padding: 12px 14px; border-radius: 10px; color: var(--emerald-600); background: var(--emerald-100); font-size: 0.82rem; font-weight: 700; }
.form-success.visible { display: block; }

.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-size: 0.98rem; font-weight: 750; }
.faq-question span:last-child { display: grid; place-items: center; flex: 0 0 auto; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue-500); font-size: 1.1rem; font-weight: 400; transition: transform 0.25s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 46px 21px 0; color: var(--muted); font-size: 0.9rem; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.legal-wrap { max-width: 820px; }
.legal-wrap h2 { margin-top: 42px; font-size: 1.55rem; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 0.93rem; }
.legal-wrap ul { padding-left: 20px; }
.legal-note { margin-top: 30px; padding: 18px 20px; border-left: 3px solid var(--emerald-500); border-radius: 0 12px 12px 0; background: var(--emerald-100); }
.legal-note p { margin: 0; color: var(--ink); }

.cta-band { padding: 70px 0; color: #fff; background: linear-gradient(115deg, var(--navy-900), #12345d); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { margin: 0; color: #b7c9e1; }

.site-footer { padding: 58px 0 28px; color: #b3c2d8; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 36px; padding-bottom: 42px; }
.footer-brand { margin-bottom: 15px; color: #fff; }
.footer-intro { max-width: 270px; margin-bottom: 0; color: #8295b2; font-size: 0.82rem; }
.footer-heading { margin-bottom: 15px; color: #fff; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.04em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #9aaec7; font-size: 0.78rem; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom p { max-width: 760px; margin: 0; color: #7f93af; font-size: 0.7rem; }
.footer-copyright { white-space: nowrap; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav a { padding-right: 7px; padding-left: 7px; font-size: 0.78rem; }
  .hero-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .main-nav { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: none; padding: 10px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); box-shadow: var(--shadow-md); }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 11px 12px; font-size: 0.88rem; }
  .menu-toggle { display: grid; }
  .nav-actions .button { display: none; }
  .hero-grid, .split-grid, .split-grid.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .dashboard-shell { max-width: 680px; margin: 0 auto; }
  .split-grid { gap: 35px; }
  .contact-grid { gap: 36px; }
  .trust-row { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 10px; }
  .trust-stat { gap: 6px; }
  .trust-icon { display: none; }
  .trust-stat span { font-size: 0.66rem; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max-width), calc(100% - 28px)); }
  .section { padding: 68px 0; }
  .section-tight { padding: 52px 0; }
  .hero { padding: 65px 0 55px; }
  h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .lead { font-size: 1rem; }
  .dashboard-shell { padding: 7px; transform: none; }
  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dashboard-content { padding: 12px; }
  .metric-grid { gap: 5px; }
  .metric { padding: 8px; }
  .metric strong { font-size: 0.78rem; }
  .dash-grid { grid-template-columns: 1fr; }
  .trust-row, .feature-grid, .steps-grid, .security-grid, .pricing-grid, .values-grid, .feature-detail-grid { grid-template-columns: 1fr; }
  .trust-row { gap: 17px; }
  .trust-stat { justify-content: flex-start; }
  .step-card:not(:last-child)::after { top: auto; right: auto; bottom: -24px; left: 50%; content: "↓"; }
  .step-card::before { margin-bottom: 25px; }
  .price-card.featured { transform: none; }
  .about-callout { grid-template-columns: 1fr; padding: 28px; }
  .about-badge { justify-self: start; width: 110px; height: 110px; }
  .form-grid { grid-template-columns: 1fr; gap: 4px; }
  .field.full { grid-column: auto; }
  .form-card { padding: 21px; }
  .cta-band-inner, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 9px; }
  .footer-copyright { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
