/* ------------------------------------------------------------------
   AssetHand — Landing styles
   Clean, flat. No gradients. Gold (#b0872d) only on CTAs + accents.
------------------------------------------------------------------ */
:root {
  --brand: #b0872d;
  --brand-dark: #8e6b1f;
  --brand-soft: #faf3e0;

  --bg:        #ffffff;
  --bg-soft:   #f8f9fb;
  --bg-section:#fbfbfa;
  --line:      #e6e7ea;
  --line-soft: #eef0f3;
  --ink:       #0f1419;
  --ink-2:     #3c4149;
  --muted:     #6b7280;
  --muted-2:   #9aa0a6;

  --green:     #137333;
  --green-bg:  #e6f4ea;
  --red:       #b3261e;
  --red-bg:    #fce8e6;
  --amber:     #a16207;
  --amber-bg:  #fef3c7;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.04);
  --shadow-2: 0 8px 24px rgba(16,24,40,.06);
  --shadow-3: 0 24px 60px rgba(16,24,40,.10);

  --container: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 820px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.02em; }
h1 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 em {
  font-style: italic;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
}
h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--brand-soft);
  z-index: -1;
  border-radius: 2px;
}
h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
p { margin: 0; color: var(--ink-2); }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  transition: background .15s, border-color .15s, transform .04s, box-shadow .15s;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-lg { height: 52px; padding: 0 26px; font-size: 16px; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(176,135,45,.18);
}
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 4px 12px rgba(176,135,45,.25); }
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-block { display: flex; width: 100%; }
.link-muted {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: 8px;
}
.link-muted:hover { background: var(--bg-soft); color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .15s, background .15s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center;
  height: 68px;
  gap: 28px;
}
.brand img { height: 22px; width: auto; }
.nav-links {
  display: flex; gap: 6px;
  margin-left: 28px;
}
.nav-links a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 8px;
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-actions {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.lead {
  margin: 22px auto 0;
  max-width: 660px;
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--muted);
  line-height: 1.6;
}
.hero-cta {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-fineprint {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted-2);
}

/* hero mock — browser frame */
.hero-mock-wrap {
  margin-top: 64px;
  padding-bottom: 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-section) 100%);
}
@supports (background: color-mix(in srgb, white, white)) {
  /* keep clean: no gradient, just a hard section change */
  .hero-mock-wrap { background: var(--bg); }
}
.browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  height: 38px;
  padding: 0 14px;
  background: #f6f7f9;
  border-bottom: 1px solid var(--line);
}
.tl { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.tl.r { background: #fb6058; } .tl.y { background: #fcc02d; } .tl.g { background: #2ac949; }
.browser-url {
  margin-left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  color: var(--muted);
  min-width: 260px;
}
.browser-url svg { color: var(--green); }
.browser-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}

/* mock sidebar */
.mock-sidebar {
  background: #fbfbfa;
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  font-size: 12.5px;
}
.mock-brand img { height: 14px; }
.mock-cta {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 4px;
  background: var(--brand);
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}
.mock-cta-ico { width: 14px; height: 14px; display: grid; place-items: center; background: rgba(255,255,255,.18); border-radius: 50%; }
.mock-nav-section {
  font-size: 10px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted-2); padding: 12px 10px 6px; font-weight: 700;
}
.mock-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 500;
}
.mock-nav-item.active { background: var(--brand-soft); color: var(--brand-dark); }
.mock-ni-ico { width: 12px; height: 12px; background: #d8dadf; border-radius: 3px; flex-shrink: 0; }
.mock-nav-item.active .mock-ni-ico { background: var(--brand-dark); }
.mock-badge {
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

/* mock main */
.mock-main { padding: 14px 18px; min-width: 0; }
.mock-topbar {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.mock-search {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  color: var(--muted);
}
.mock-chips { display: flex; gap: 4px; }
.mock-chip {
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10.5px;
  color: var(--ink-2);
  font-weight: 500;
  white-space: nowrap;
}
.mock-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
}

.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock-h1 { font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.mock-h-sub { font-size: 11px; color: var(--muted); }
.mock-cta-btn { background: var(--brand); color: #fff; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; }

.mock-kpis {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.mock-kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.mock-kpi.wide {
  flex-direction: row; gap: 12px;
  align-items: stretch;
}
.mock-kpi.wide .mock-k-left { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mock-k-break {
  border-left: 1px solid var(--line);
  padding-left: 10px;
  display: flex; flex-direction: column; gap: 1px;
  align-self: center;
  font-size: 10px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.mock-k-break small { color: var(--muted); }
.mock-k-label { font-size: 10px; color: var(--muted); }
.mock-k-value { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; }
.mock-k-rate { font-size: 9.5px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.mock-k-delta {
  font-size: 10px; font-weight: 600;
  padding: 1px 7px; border-radius: 999px; width: max-content;
}
.mock-k-delta.up { color: var(--green); background: var(--green-bg); }
.mock-k-delta.down { color: var(--red); background: var(--red-bg); }

.mock-grid2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}
.mock-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}
.mock-card.lift {
  box-shadow: var(--shadow-2);
}
.mock-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px; font-weight: 700; color: var(--ink);
}
.mock-mini-chips { display: inline-flex; gap: 2px; background: var(--bg-soft); padding: 2px; border-radius: 999px; }
.mock-mini-chips span {
  padding: 3px 9px;
  font-size: 9.5px; font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
}
.mock-mini-chips span.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-1); }
.mock-chart { width: 100%; height: 110px; }
.mock-chart svg { width: 100%; height: 100%; }

/* mock treemap */
.mock-treemap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr 0.7fr;
  gap: 3px;
  height: 110px;
}
.mock-treemap .tm {
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; font-weight: 600; text-align: center;
  border-radius: 4px;
  line-height: 1.15;
}
.mock-treemap .tm b { font-size: 11px; font-weight: 700; }
.mock-treemap .tm.res { grid-row: 1 / span 2; background: #b0872d; }
.mock-treemap .tm.ofi { grid-row: 1; background: #d9b66a; color: #3c4149; }
.mock-treemap .tm.com { grid-row: 2; background: #3c4149; }
.mock-treemap .tm.ind { grid-row: 3; background: #9aa0a6; }
.mock-treemap .tm.apk { grid-row: 3; background: #e9d6a4; color: #3c4149; }

/* ---------- Trust strip ---------- */
.trust {
  padding: 64px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-stats > div { display: flex; flex-direction: column; gap: 6px; }
.trust-stats .num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.trust-stats .lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Problem ---------- */
.problem {
  padding: 110px 0;
}
.problem h2 { margin-bottom: 24px; }
.problem p { font-size: 18px; margin-bottom: 16px; }
.problem b { color: var(--ink); font-weight: 600; }

/* ---------- Features grid ---------- */
.features-grid {
  padding: 110px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.features-grid h2 { margin-bottom: 56px; }
.fg-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.fg-card {
  background: #fff;
  padding: 28px 24px;
}
.fg-card:hover { background: var(--bg-soft); }
.fg-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.fg-ico.ico-1 { background: var(--brand-soft); color: var(--brand-dark); }
.fg-ico.ico-2, .fg-ico.ico-3, .fg-ico.ico-4, .fg-ico.ico-5, .fg-ico.ico-6, .fg-ico.ico-7, .fg-ico.ico-8 {
  background: var(--bg-soft);
  color: var(--ink-2);
}
.fg-ico svg { width: 20px; height: 20px; }
.fg-card h3 { margin-bottom: 6px; font-size: 16px; }
.fg-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Feature detail ---------- */
.feature-detail {
  padding: 110px 0;
}
.feature-detail.alt { background: var(--bg-section); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fd-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.fd-grid.reverse { grid-template-columns: 1.15fr 1fr; }
.fd-grid.reverse .fd-copy { order: 2; }
.fd-grid.reverse .fd-visual { order: 1; }
.fd-copy h2 { margin-bottom: 22px; }
.fd-copy p { font-size: 17.5px; margin-bottom: 24px; }
.fd-check {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.fd-check li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.fd-check .ck {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  position: relative;
  flex-shrink: 0;
  margin-top: 3px;
}
.fd-check .ck::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 5px; height: 9px;
  border: solid var(--brand-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* mock year-table */
.mock-year-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.mock-year-table th, .mock-year-table td {
  padding: 8px 10px;
  text-align: right;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}
.mock-year-table th { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--bg-soft); font-weight: 700; }
.mock-year-table td:first-child, .mock-year-table th:first-child { text-align: left; }
.mock-year-table tbody td { color: var(--green); }
.mock-year-table tbody td:first-child { color: var(--ink); }
.mock-year-table tbody td:first-child span { color: var(--muted); font-size: 11px; }

/* mock property grid (cards) */
.mock-pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11.5px;
}
.mock-pc-head { display: flex; align-items: center; justify-content: space-between; }
.mock-pc-thumb {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: grid; place-items: center;
}
.mock-pc-thumb svg { width: 16px; height: 16px; }
.mock-pcard b { font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 6px; }
.mock-pcard > span { color: var(--muted); font-size: 11px; }
.mock-pc-stats {
  display: flex; justify-content: space-between;
  font-size: 11px;
}
.mock-pc-stats span:first-child { color: var(--muted); }
.mock-pc-stats span:last-child { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

.mock-pill {
  display: inline-flex; align-items: center;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
}
.mock-pill.green { background: var(--green-bg); color: var(--green); }
.mock-pill.amber { background: var(--amber-bg); color: var(--amber); }

/* mock drive */
.mock-drive {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.mock-drive-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.mock-doc {
  height: 70px;
  background: var(--bg-soft);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.mock-doc::before {
  content: '';
  width: 28px; height: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.mock-doc-ext {
  position: absolute;
  margin-top: 24px;
  background: var(--brand);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: .04em;
}
.mock-drive-card b {
  font-size: 12px;
  padding: 8px 10px 2px;
  color: var(--ink);
}
.mock-drive-card > span {
  font-size: 10.5px;
  padding: 0 10px;
  color: var(--muted);
}
.mock-drive-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 10px;
  font-size: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 110px 0;
}
.pricing-head { text-align: center; margin-bottom: 56px; }
.pricing-head p { color: var(--muted); margin-top: 14px; }
.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
  transition: border-color .15s, box-shadow .15s;
}
.plan:hover { border-color: #d8dadf; box-shadow: var(--shadow-2); }
.plan.featured {
  border-color: var(--brand);
  border-width: 2px;
  padding: 27px 23px;
  box-shadow: 0 12px 32px rgba(176,135,45,.10);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-head h3 {
  font-size: 18px;
  font-weight: 700;
}
.plan-price {
  display: flex; align-items: baseline; gap: 2px;
  margin-top: 12px;
  font-family: 'Fraunces', serif;
}
.plan-price .cur { font-size: 22px; font-weight: 500; }
.plan-price .amt { font-size: 48px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.plan-price .per {
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.plan-price .custom {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.plan-sub {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}
.plan-feats {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.plan-feats li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
}
.plan-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  transform: rotate(-45deg);
}
.pricing-fineprint {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 110px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq h2 { margin-bottom: 40px; }
.faq-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  transition: transform .15s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details[open] summary { color: var(--brand-dark); }
.faq-list summary:hover { background: var(--bg-soft); }
.faq-list details p {
  padding: 0 26px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 120px 0;
  text-align: center;
}
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { color: var(--muted); font-size: 17px; }
.final-cta .hero-cta { margin-top: 28px; }

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: #c8ccd1;
  padding: 64px 0 24px;
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand img {
  height: 22px;
  filter: brightness(0) invert(1) opacity(0.92);
  margin-bottom: 14px;
}
.foot-brand p { color: #9aa0a6; font-size: 14px; max-width: 320px; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.foot-cols h4 { color: #fff; margin-bottom: 14px; }
.foot-cols a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #c8ccd1;
}
.foot-cols a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-size: 13px;
  color: #6b7280;
  flex-wrap: wrap; gap: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-actions .link-muted { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links,
  .nav.open .nav-actions {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav.open .nav-actions { top: auto; margin-top: 4px; border-top: 1px solid var(--line-soft); }
  .nav.open .nav-actions .btn { width: 100%; }
  .browser-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-kpis { grid-template-columns: 1fr 1fr; }
  .mock-kpi.wide { grid-column: 1 / -1; flex-direction: column; }
  .mock-k-break { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-soft); padding-top: 6px; }
  .mock-grid2 { grid-template-columns: 1fr; }
  .fg-cards { grid-template-columns: 1fr 1fr; }
  .fd-grid, .fd-grid.reverse { grid-template-columns: 1fr; gap: 48px; }
  .fd-grid.reverse .fd-copy { order: 1; }
  .fd-grid.reverse .fd-visual { order: 2; }
  .plans { grid-template-columns: 1fr 1fr; }
  .foot-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-stats .num { font-size: 42px; }
}
@media (max-width: 600px) {
  h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero { padding-top: 56px; }
  .hero-mock-wrap { margin-top: 44px; padding-bottom: 64px; }
  .fg-cards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .problem, .features-grid, .feature-detail, .pricing, .faq, .final-cta { padding: 72px 0; }
  .mock-pgrid, .mock-drive { grid-template-columns: 1fr 1fr; }
  .mock-pgrid .mock-pcard:nth-child(3), .mock-drive .mock-drive-card:nth-child(3) { display: none; }
}
