:root {
  --black: #0f0f0f;
  --gray-900: #1a1a1a;
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-400: #909090;
  --gray-200: #d4d4d4;
  --gray-100: #ebebeb;
  --gray-50: #f5f5f5;
  --white: #ffffff;
  --red: #d42b1a;
  --red-pale: #fdf2f1;
  --border: #e8e8e8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* SVG ICONS */
.icon { display: inline-block; flex-shrink: 0; }

/* NAV */
header {
  position: sticky; top: 0; z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
header .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 60px;
}
.logo {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex; align-items: center; gap: 9px;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 400;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--black); }
.btn-dark {
  background: var(--red); color: var(--white);
  border: none; padding: 9px 22px; border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; font-size: 13.5px;
  cursor: pointer; transition: background 0.15s; text-decoration: none;
  display: inline-block; letter-spacing: 0;
}
.btn-dark:hover { background: #b8240f; }

/* HERO */
.hero {
  padding: 80px 56px 72px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gray-200);
}
.hero-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--red); }
.hero-body {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 400px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 400;
}
.cta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.btn-primary-lg {
  background: var(--black); color: var(--white);
  border: none; padding: 13px 26px; border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; font-size: 15px;
  cursor: pointer; transition: background 0.15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.2px;
}
.btn-primary-lg:hover { background: var(--gray-900); }
.btn-outline-lg {
  background: transparent; color: var(--black);
  border: 1px solid var(--border); padding: 13px 26px; border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 400; font-size: 15px;
  cursor: pointer; transition: all 0.15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.2px;
}
.btn-outline-lg:hover { border-color: var(--gray-400); background: var(--gray-50); }
.hero-proof {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.proof-stat .pnum {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--black); letter-spacing: -0.5px;
  line-height: 1;
}
.proof-stat .plabel { font-size: 12px; color: var(--gray-400); margin-top: 3px; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* HERO MOCKUP */
.hero-visual { position: relative; }
.browser {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.05);
  background: var(--white);
}
.browser-chrome {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
}
.bdots { display: flex; gap: 5px; }
.bdots span { width: 10px; height: 10px; border-radius: 50%; }
.bdots .d1 { background: #fe5f57; }
.bdots .d2 { background: #febc2e; }
.bdots .d3 { background: #2ac840; }
.burl {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 5px; padding: 4px 10px; font-size: 11px; color: var(--gray-400);
  display: flex; align-items: center; gap: 5px;
}
.burl-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
}

/* INNER DEALER SITE */
.ds { background: #f8f8f8; color: #111; font-family: 'IBM Plex Sans', sans-serif; }
.ds-nav {
  background: #111; padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.ds-nav .brand {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 800; font-size: 13px; color: #fff; letter-spacing: -0.3px;
}
.ds-nav-links { display: flex; gap: 14px; }
.ds-nav-links a { font-size: 11px; color: rgba(255,255,255,0.5); text-decoration: none; }
.ds-cta-sm {
  background: var(--red); color: #fff; border: none;
  padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; cursor: pointer;
}
.ds-hero {
  background: #111; padding: 22px 16px 20px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.ds-hero h2 {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px; font-weight: 800; color: #fff;
  letter-spacing: -0.5px; line-height: 1.15; margin-bottom: 6px;
}
.ds-hero p { font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.ds-btns { display: flex; gap: 6px; }
.ds-btns button { padding: 6px 12px; border-radius: 4px; font-size: 10px; font-weight: 600; cursor: pointer; }
.dsb1 { background: var(--red); color: #fff; border: none; }
.dsb2 { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
.ds-count {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 14px; text-align: center; flex-shrink: 0;
}
.ds-count .n { font-family: 'Libre Franklin', sans-serif; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.ds-count .l { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.ds-search {
  background: #fff; padding: 10px 16px;
  display: flex; gap: 6px; border-bottom: 1px solid #eee;
}
.ds-search select {
  flex: 1; min-width: 0; padding: 5px 8px;
  border: 1px solid #e5e5e5; border-radius: 4px;
  font-size: 10px; color: #555; background: #fafafa;
}
.ds-search button {
  background: #111; color: #fff; border: none;
  padding: 5px 12px; border-radius: 4px; font-size: 10px; font-weight: 600; cursor: pointer;
}
.ds-stock { padding: 14px 16px; background: #f8f8f8; }
.ds-stock-hdr { font-family: 'Libre Franklin', sans-serif; font-size: 11px; font-weight: 700; color: #111; margin-bottom: 10px; letter-spacing: -0.2px; }
.car-row {
  background: #fff; border: 1px solid #eee; border-radius: 6px;
  padding: 10px 12px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.car-thumb {
  width: 48px; height: 34px; border-radius: 4px;
  background: #f0f0f0; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.car-thumb svg { width: 28px; height: 18px; fill: none; stroke: #bbb; stroke-width: 1.5; }
.car-details { flex: 1; }
.car-details strong { font-size: 12px; font-weight: 600; color: #111; display: block; line-height: 1.2; }
.car-details span { font-size: 10px; color: #999; }
.car-price { font-family: 'Libre Franklin', sans-serif; font-size: 13px; font-weight: 800; color: #111; letter-spacing: -0.3px; }
.car-tag {
  font-size: 9px; font-weight: 600; padding: 3px 7px; border-radius: 3px; flex-shrink: 0;
}
.tag-new { background: #fde8e8; color: var(--red); }
.tag-live { background: #e8f5ee; color: #166534; }

/* FLOATING CARDS */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  z-index: 10;
}
.float-card.fc-enq {
  bottom: -18px; right: -20px;
  display: flex; align-items: center; gap: 10px;
}
.fc-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
}
.fc-text strong { font-size: 13px; font-weight: 600; color: var(--black); display: block; line-height: 1.2; }
.fc-text span { font-size: 11px; color: var(--gray-400); }
.float-card.fc-time { top: 50%; left: -56px; transform: translateY(-50%); }
.fc-time .big { font-family: 'Libre Franklin', sans-serif; font-size: 22px; font-weight: 800; color: var(--black); line-height: 1; }
.fc-time .lbl { font-size: 10px; color: var(--gray-400); margin-top: 2px; }

/* STRIP */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 56px;
  display: flex; align-items: center; gap: 0;
  overflow: hidden;
}
.strip-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-700); font-weight: 400;
  flex: 1; justify-content: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.strip-item:last-child { border-right: none; }
.strip-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.strip-check svg { width: 9px; height: 9px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* SECTION LAYOUT */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.section-hdr { margin-bottom: 56px; }
.section-hdr.centered { text-align: center; }
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow.centered { justify-content: center; }
.eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--gray-200);
}
.eyebrow.centered::before { display: none; }
.section-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--black);
}
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 460px;
  line-height: 1.7;
  font-weight: 400;
}
.section-sub.centered { max-width: 520px; margin: 0 auto; }

/* STEPS */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.step {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
}
.step-n {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-200);
  margin-bottom: 22px; font-family: 'Libre Franklin', sans-serif;
}
.step-icon {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; background: var(--gray-50);
}
.step-icon svg { width: 16px; height: 16px; stroke: var(--gray-700); fill: none; stroke-width: 1.5; }
.step h4 { font-family: 'Libre Franklin', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.step p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ADMIN DEMO */
.admin-demo {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.admin-topbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-topbar .title { font-family: 'Libre Franklin', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: -0.3px; }
.admin-topbar .sub { font-size: 12px; color: var(--gray-400); margin-top: 1px; }
.live-pill {
  display: flex; align-items: center; gap: 6px;
  background: #e8f5ee; border: 1px solid #c6e6d4;
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; font-weight: 500; color: #166534;
}
.live-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.admin-body { display: grid; grid-template-columns: 200px 1fr; }
.admin-side {
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  background: var(--white);
}
.side-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-200); margin-bottom: 10px; padding: 0 8px; }
.side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 6px;
  font-size: 13px; color: var(--gray-500);
  margin-bottom: 2px; cursor: pointer;
}
.side-item svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }
.side-item:hover { background: var(--gray-50); color: var(--black); }
.side-item.active { background: var(--black); color: var(--white); font-weight: 500; }
.side-item.active svg { stroke: var(--white); }
.admin-main { padding: 24px 28px; background: var(--gray-50); }
.admin-main-title { font-family: 'Libre Franklin', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 18px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 22px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 9px; padding: 16px;
}
.stat-card .sn {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--black); line-height: 1; letter-spacing: -0.5px;
}
.stat-card .sl { font-size: 11px; color: var(--gray-400); margin-top: 4px; }
.table-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.table-hdr span { font-size: 12px; font-weight: 500; color: var(--black); }
.table-hdr a { font-size: 12px; color: var(--red); text-decoration: none; }
.vrow {
  background: var(--white);
  border: 1px solid var(--border); border-radius: 7px;
  padding: 10px 14px; display: flex; align-items: center; gap: 12px;
  margin-bottom: 6px;
}
.vrow-thumb {
  width: 44px; height: 32px; border-radius: 5px;
  background: var(--gray-100); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.vrow-thumb svg { width: 26px; height: 16px; stroke: var(--gray-400); fill: none; stroke-width: 1.2; }
.vrow-info { flex: 1; }
.vrow-info strong { font-size: 12px; font-weight: 500; color: var(--black); display: block; }
.vrow-info span { font-size: 10px; color: var(--gray-400); }
.vrow-price { font-family: 'Libre Franklin', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: -0.3px; }
.vrow-status { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px; flex-shrink: 0; }
.vs-live { background: #e8f5ee; color: #166534; }
.vs-enq { background: #fef3c7; color: #92400e; }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.feat-item {
  background: var(--white); padding: 28px 26px;
  transition: background 0.15s;
}
.feat-item:hover { background: var(--gray-50); }
.feat-icon {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; background: var(--gray-50);
}
.feat-icon svg { width: 16px; height: 16px; stroke: var(--gray-700); fill: none; stroke-width: 1.5; }
.feat-item h4 { font-family: 'Libre Franklin', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
.feat-item p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* PRICING */
.plan-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; }
.plan {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px; position: relative;
  transition: box-shadow 0.2s;
}
.plan:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.plan.featured { border-color: var(--black); border-width: 1.5px; }
.plan-badge {
  position: absolute; top: -11px; left: 20px;
  background: var(--black); color: var(--white);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
}
.plan-tier { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 14px; }
.plan-price { font-family: 'Libre Franklin', sans-serif; font-size: 48px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.plan-price sup { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; font-weight: 600; }
.plan-cadence { font-size: 12px; color: var(--gray-400); margin-top: 5px; margin-bottom: 20px; }
.plan-sep { height: 1px; background: var(--border); margin-bottom: 18px; }
.plan-list { list-style: none; margin-bottom: 24px; }
.plan-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 13px; color: var(--gray-700);
  border-bottom: 1px solid var(--border);
}
.plan-list li:last-child { border-bottom: none; }
.plan-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--black); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.plan-check svg { width: 8px; height: 8px; stroke: #fff; fill: none; stroke-width: 2.5; }
.btn-plan {
  width: 100%; padding: 11px; border-radius: 7px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; font-size: 14px;
  cursor: pointer; border: 1px solid var(--border);
  background: var(--gray-50); color: var(--black);
  transition: all 0.15s; letter-spacing: -0.1px;
}
.btn-plan:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.plan.featured .btn-plan { background: var(--black); color: var(--white); border-color: var(--black); }
.plan.featured .btn-plan:hover { background: var(--gray-900); }

/* SETUP */
.setup-band { background: var(--black); }
.setup-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 88px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.setup-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
}
.setup-body { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 32px; }
.setup-items { list-style: none; }
.setup-items li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; font-size: 14px; color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.setup-items li:last-child { border-bottom: none; }
.si-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25); flex-shrink: 0;
}
.setup-price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 44px 40px; text-align: center;
}
.sp-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.sp-price {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 68px; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px; line-height: 1;
}
.sp-price sup { font-size: 28px; vertical-align: top; margin-top: 14px; display: inline-block; font-weight: 600; }
.sp-note { font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 8px; margin-bottom: 28px; }
.btn-white {
  width: 100%; background: var(--white); color: var(--black);
  border: none; padding: 13px; border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; font-size: 15px;
  cursor: pointer; transition: background 0.15s; letter-spacing: -0.2px;
  display: block; text-decoration: none; text-align: center;
}
.btn-white:hover { background: var(--gray-100); }
.sp-sub { font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 12px; }

/* FINAL CTA */
.final { padding: 112px 56px; text-align: center; max-width: 1280px; margin: 0 auto; }
.final-title {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 800;
  letter-spacing: -1px; line-height: 1.07; margin-bottom: 18px;
}
.final-body { font-size: 16px; color: var(--gray-500); max-width: 440px; margin: 0 auto 36px; line-height: 1.7; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 56px;
}
footer p { font-size: 12px; color: var(--gray-400); }
footer nav { display: flex; gap: 28px; }
footer nav a { font-size: 13px; color: var(--gray-500); text-decoration: none; }
footer nav a:hover { color: var(--black); }

/* LEGAL PAGES */
.legal-page-header {
  border-bottom: 1px solid var(--border);
  padding: 40px 56px;
  background: var(--gray-50);
}
.legal-page-header .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-500); text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.legal-page-header .back-link:hover { color: var(--black); }
.legal-page-header h1 {
  font-family: 'Libre Franklin', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.5px;
  color: var(--black); margin-bottom: 8px;
}
.legal-page-header .last-updated {
  font-size: 13px; color: var(--gray-400);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 56px 80px;
}
.legal-content h2 {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--black);
  margin-top: 40px; margin-bottom: 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 14px; color: var(--gray-700);
  line-height: 1.75; margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px 0; padding-left: 20px;
}
.legal-content ul li {
  font-size: 14px; color: var(--gray-700);
  line-height: 1.75; margin-bottom: 6px;
}
.legal-content a { color: var(--black); }
.legal-content a:hover { color: var(--gray-700); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero-left > * { animation: fadeUp 0.55s ease both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.12s; }
.hero-body { animation-delay: 0.18s; }
.cta-row { animation-delay: 0.23s; }
.hero-proof { animation-delay: 0.28s; }
.hero-visual { animation: fadeUp 0.65s 0.15s ease both; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  header .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 52px 28px 60px; }
  .hero-visual { display: none; }
  .strip { padding: 16px 28px; flex-wrap: wrap; gap: 12px; }
  .strip-item { border-right: none; flex: none; }
  .section-wrap { padding: 0 28px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-row { grid-template-columns: 1fr; max-width: 380px; }
  .setup-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-side { display: none; }
  footer { padding: 32px 28px; }
  .final { padding: 72px 28px; }
  .legal-page-header { padding: 32px 28px; }
  .legal-content { padding: 40px 28px 64px; }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
