/* ============================================================
   DailyW — Marketing site
   Design tokens & components extracted from the DailyW design system
   ============================================================ */

:root {
  /* Brand */
  --green:        #58BF03;
  --green-dark:   #3C7A06;
  --green-tint:   #EEF7E2;
  --green-soft:   #9FD957;

  /* Ink / text */
  --ink:          #0E140D;
  --ink-2:        #3D463C;
  --muted:        #5C655A;
  --muted-2:      #9AA398;

  /* Surfaces */
  --page:         #FBFCF9;
  --surface:      #ffffff;
  --surface-2:    #F1F3EE;
  --dark:         #0E140D;
  --dark-2:       #141C12;
  --dark-3:       #0A0F09;
  --on-dark:      #F1F4EE;
  --on-dark-muted:#9DB69A;

  /* Lines */
  --border:       #E7EAE3;
  --border-2:     #EDEFE9;
  --border-input: #D7DCD2;

  /* Type */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Radius & shadow */
  --r-sm: 11px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 24px;
  --shadow-card: 0 12px 28px rgba(16,24,13,0.08);
  --shadow-lift: 0 16px 40px rgba(16,24,13,0.10);

  --nav-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green); color: var(--ink); }

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 600;
}
.eyebrow--muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: none;
  border-radius: var(--r-md);
  padding: 16px 28px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--green); color: var(--ink); }
.btn--primary:hover { box-shadow: 0 8px 20px rgba(88,191,3,0.35); }

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  border: 1.5px solid var(--border-input);
  padding: 14.5px 24px;
}
.btn--ghost:hover { border-color: var(--muted-2); }

.btn--dark { background: var(--dark); color: #fff; font-weight: 600; }
.btn--dark:hover { box-shadow: var(--shadow-card); }

.btn--sm { font-size: 14.5px; padding: 11px 20px; }
.btn--block { width: 100%; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,252,249,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-2);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand img { height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ink); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--panel {
  background: var(--surface);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: 36px; margin-top: 12px; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 16px; line-height: 1.6; }

/* ---------- Hero (home) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0 72px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-tint);
  padding: 7px 14px;
  border-radius: 999px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green); }

.hero h1 {
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 20px 0 0;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 480px;
  margin: 22px 0 0;
}
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.stats { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.stat .lbl { font-size: 13px; color: var(--muted-2); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ---------- Phone mockup ---------- */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 280px;
  height: 560px;
  background: var(--dark-3);
  border-radius: 40px;
  padding: 9px;
  box-shadow: 0 30px 60px rgba(16,24,13,0.28);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #1C241A;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 10px;
}
.phone-top .title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--on-dark); }
.pill-dark {
  display: flex; align-items: center; gap: 6px;
  background: #1C241A; padding: 5px 10px; border-radius: 999px;
}
.pill-dark .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--green); }
.pill-dark span:last-child { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: #fff; }

.wallet-card {
  margin: 6px 16px;
  background: var(--dark-2);
  border: 1px solid #28321F;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.wallet-glow {
  position: absolute; right: -24px; top: -24px;
  width: 120px; height: 120px; border-radius: 999px;
  background: radial-gradient(circle, rgba(88,191,3,0.4), transparent 70%);
}
.wallet-card .label { position: relative; font-size: 12px; color: var(--on-dark-muted); }
.wallet-card .amount { position: relative; font-family: var(--font-display); font-size: 32px; font-weight: 600; color: #fff; margin-top: 6px; }
.wallet-btn {
  position: relative; margin-top: 14px; height: 40px;
  background: var(--green); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.wallet-list { margin: 10px 16px 0; display: flex; flex-direction: column; gap: 9px; }
.wallet-row {
  display: flex; align-items: center; gap: 11px;
  background: #151D13; border: 1px solid #28321F; border-radius: 13px; padding: 11px;
}
.wallet-ic {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 14px;
}
.wallet-row .body { flex: 1; }
.wallet-row .name { font-size: 12.5px; font-weight: 600; color: var(--on-dark); }
.wallet-row .sub  { font-size: 10.5px; color: #8C968A; }
.wallet-row .pts  { font-family: var(--font-display); font-size: 11.5px; font-weight: 600; color: var(--green-soft); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.card--soft { background: var(--page); }
.card .icon-tile {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
}
.card h3 { font-size: 22px; margin-top: 18px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 10px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--dark); color: var(--green);
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.step h3 { font-size: 19px; margin-top: 18px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band .glow {
  position: absolute; right: -40px; top: -40px;
  width: 240px; height: 240px; border-radius: 999px;
  background: radial-gradient(circle, rgba(88,191,3,0.3), transparent 70%);
}
.cta-band h2 { position: relative; font-size: 38px; color: var(--on-dark); }
.cta-band p { position: relative; font-size: 17px; color: var(--on-dark-muted); margin-top: 14px; }
.cta-band .btn { position: relative; margin-top: 28px; }

/* ---------- Feature split (how it works) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split h2 { font-size: 30px; margin-top: 14px; }
.split .lede { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin-top: 12px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: var(--green-dark); background: var(--green-tint);
  padding: 6px 12px; border-radius: 999px;
}
.checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.checklist li { display: flex; align-items: center; gap: 10px; list-style: none; }
.check {
  width: 22px; height: 22px; border-radius: 999px; flex: none;
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
}
.checklist span { font-size: 14.5px; color: var(--ink-2); }
.check-ul { margin: 0; padding: 0; }

/* Mini demo cards */
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}
.demo-head { display: flex; align-items: center; gap: 12px; }
.demo-ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18px;
}
.demo-head .name { font-size: 15px; font-weight: 600; }
.demo-head .sub { font-size: 12px; color: var(--muted-2); }
.task-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.task-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--page); border: 1px solid var(--border-2);
  border-radius: var(--r-sm); padding: 11px 13px;
}
.task-row .left { display: flex; align-items: center; gap: 9px; }
.task-check {
  width: 20px; height: 20px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-tint);
}
.task-check--todo { background: transparent; border: 2px solid #C8CEC2; }
.task-row .task-name { font-size: 13px; font-weight: 600; }
.task-row .task-name.is-todo { color: var(--muted-2); }
.task-row .pts { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--green-dark); }
.task-row .pts.is-todo { color: var(--muted-2); }

/* Chat demo */
.chat { display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 85%;
  padding: 11px 13px;
  font-size: 13px;
  line-height: 1.4;
}
.bubble--in { align-self: flex-start; background: var(--surface-2); border-radius: 4px 14px 14px 14px; color: var(--ink); }
.bubble--out { align-self: flex-end; background: var(--dark); border-radius: 14px 14px 4px 14px; color: var(--on-dark); }
.product {
  background: var(--page); border: 1px solid var(--border-2);
  border-radius: 13px; padding: 13px; margin-top: 4px;
}
.chip {
  font-family: var(--font-display); font-size: 10px; font-weight: 600;
  color: var(--green-dark); background: var(--green-tint);
  padding: 3px 8px; border-radius: 999px;
}
.product .title { font-size: 14px; font-weight: 600; margin-top: 7px; }
.product .buy {
  margin-top: 10px; height: 36px; background: var(--green);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--ink); cursor: pointer;
}

/* Points to cash */
.rate-card {
  background: var(--page);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}
.rate-card .big { font-family: var(--font-display); font-size: 30px; font-weight: 600; }
.rate-card .row { display: flex; align-items: center; gap: 8px; }
.rate-card .status-dot { width: 9px; height: 9px; border-radius: 999px; }
.rate-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin: 0; }
.rate-card p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.payout-methods {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 30px; flex-wrap: wrap;
}
.payout-methods .lbl { font-size: 13px; color: var(--muted-2); }
.method {
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  background: var(--page); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 999px;
}

/* ---------- FAQ accordion ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-q .chev { color: var(--muted-2); flex: none; transition: transform .2s ease; }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-a p {
  font-size: 14.5px; color: var(--muted); line-height: 1.6;
  padding: 0 22px 20px;
}

/* ---------- Get started ---------- */
.stack { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.stack-item { display: flex; gap: 16px; }
.stack-num {
  width: 36px; height: 36px; border-radius: 999px; flex: none;
  background: var(--dark); color: var(--green);
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.stack-item .t { font-size: 16px; font-weight: 600; }
.stack-item .d { font-size: 14px; color: var(--muted); margin-top: 2px; }

.signup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-lift);
}
.signup h3 { font-size: 22px; text-align: center; }
.oauth-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.g-logo {
  width: 18px; height: 18px; border-radius: 999px;
  background: conic-gradient(#EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
}
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border-2); }
.divider span { font-size: 12px; color: var(--muted-2); }

.field { margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); display: block; margin-bottom: 7px; }
.input, .select, .textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border-input);
  border-radius: 12px;
  outline: none;
  background: var(--surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(88,191,3,0.15);
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.textarea { min-height: 120px; resize: vertical; }
.select-wrap { position: relative; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239AA398' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.fine { font-size: 11.5px; color: var(--muted-2); text-align: center; line-height: 1.5; margin-top: 14px; }

.app-badges { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark); border-radius: 13px; padding: 11px 20px;
}
.store-badge .small { font-size: 9px; color: var(--on-dark-muted); }
.store-badge .big { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #fff; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(16,24,13,0.06);
}
.form-row { display: flex; gap: 16px; }
.form-row .field { flex: 1; }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.info-card .icon-tile {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--green-tint);
  display: flex; align-items: center; justify-content: center;
}
.info-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin: 14px 0 0; }
.info-card p { font-size: 14px; color: var(--muted); margin-top: 4px; }
.info-card--dark { background: var(--dark); border: none; }
.info-card--dark h4 { color: var(--on-dark); margin: 0; }
.info-card--dark p { color: var(--on-dark-muted); line-height: 1.5; }

/* ---------- Legal (imprint / privacy) ---------- */
.legal { max-width: 720px; }
.legal h1 { font-size: 40px; letter-spacing: -0.025em; }
.legal .sub { font-size: 15px; color: var(--muted-2); margin-top: 10px; }
.legal-blocks { margin-top: 36px; display: flex; flex-direction: column; gap: 28px; }
.legal-block .k {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-dark); font-weight: 600;
}
.legal-block p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); margin-top: 8px; }
.rule { height: 1px; background: var(--border-2); }

.privacy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; }
.toc { align-self: start; position: sticky; top: calc(var(--nav-h) + 20px); }
.toc .k {
  font-family: var(--font-display); font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-2); font-weight: 600;
}
.toc-links { display: flex; flex-direction: column; gap: 11px; margin-top: 14px; }
.toc-links a { font-size: 14px; color: var(--muted); padding-left: 14px; transition: color .15s ease; }
.toc-links a:hover { color: var(--ink); }
.toc-links a.is-active { color: var(--ink); font-weight: 600; border-left: 2px solid var(--green); padding-left: 12px; }

.doc h1 { font-size: 40px; letter-spacing: -0.025em; margin-top: 16px; }
.doc > .lede { font-size: 16px; line-height: 1.7; color: var(--muted); margin-top: 14px; }
.doc h2 { font-size: 20px; margin-top: 36px; }
.doc h2 + p { font-size: 15px; line-height: 1.7; color: var(--ink-2); margin-top: 10px; }
.doc section + section h2 { margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border-2); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0;
}
.footer-brand p { font-size: 13.5px; color: var(--muted-2); line-height: 1.6; margin-top: 14px; max-width: 240px; }
.footer-col .k {
  font-family: var(--font-display); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted-2); font-weight: 600;
}
.footer-col nav { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer-col a { font-size: 14px; color: var(--muted); transition: color .15s ease; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom span { font-size: 13px; color: var(--muted-2); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    box-shadow: 0 20px 40px rgba(16,24,13,0.10);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 12px 4px; font-size: 16px; }
  .nav-links .btn { margin-top: 8px; }
  .nav-toggle { display: inline-flex; }

  .hero { grid-template-columns: 1fr; padding: 56px 0 48px; }
  .phone-wrap { order: -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split .split-visual { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .privacy-layout { grid-template-columns: 1fr; gap: 28px; }
  .toc { position: static; display: none; }
  .cta-band { padding: 40px 28px; }
  .cta-band h2 { font-size: 30px; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
  .steps { gap: 32px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .signup, .contact-form, .card { padding: 24px; }
  .stats { gap: 16px; }
  .stat-divider { display: none; }
}
