/* ============================================================
   LittleGuard — Playschool Management App
   Shared stylesheet · Fresh, kid-friendly theme
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette — warm, friendly, trustworthy */
  --blue:      #4F7CFF;
  --blue-dk:   #3B5EE0;
  --coral:     #FF8A4C;
  --coral-dk:  #F2703A;
  --mint:      #2DD4A7;
  --yellow:    #FFC93C;
  --pink:      #FF6B9D;
  --purple:    #8B6CF0;

  /* Surfaces */
  --bg:        #FFFCF7;   /* warm cream */
  --bg2:       #F4F7FF;   /* soft blue tint */
  --bg3:       #FFF4EC;   /* soft peach tint */
  --card:      #FFFFFF;
  --ink:       #1E2435;
  --ink2:      #4A5268;
  --muted:     #7B8398;
  --line:      #ECEAF3;
  --line2:     #E2E6F0;

  --radius:    20px;
  --radius-lg: 28px;
  --radius-sm: 12px;

  --shadow:    0 18px 40px rgba(79,124,255,0.10);
  --shadow-sm: 0 8px 24px rgba(30,36,53,0.07);
  --shadow-coral: 0 14px 30px rgba(255,138,76,0.30);
  --shadow-blue:  0 14px 30px rgba(79,124,255,0.30);

  --grad-blue:  linear-gradient(135deg, #4F7CFF, #6E8BFF);
  --grad-coral: linear-gradient(135deg, #FF8A4C, #FFB05C);
  --grad-fun:   linear-gradient(120deg, #4F7CFF, #8B6CF0, #FF6B9D, #FF8A4C);
}

html { font-family: 'Nunito', system-ui, sans-serif; scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink2);
  overflow-x: hidden; min-height: 100vh; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Fredoka', 'Nunito', sans-serif; color: var(--ink); line-height: 1.15; }

a { color: var(--blue); }

::selection { background: rgba(79,124,255,0.18); }

/* ─── Layout helpers ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section   { padding: 88px 0; }
.center    { text-align: center; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid var(--line2);
  padding: 7px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.02em;
  color: var(--blue); margin-bottom: 18px;
}
.pill.coral { color: var(--coral-dk); }
.pill.mint  { color: #14a37f; }

.sec-head { max-width: 600px; margin: 0 auto 52px; }
.sec-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.01em; }
.sec-sub   { font-size: 17px; color: var(--muted); margin-top: 14px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 800;
  padding: 13px 26px; border-radius: 100px; border: none;
  cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(79,124,255,.42); }
.btn-coral   { background: var(--grad-coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,138,76,.42); }
.btn-ghost   { background: #fff; color: var(--ink); border: 2px solid var(--line2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn svg { transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

/* ─── Navbar ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0; transition: background .3s, box-shadow .3s, padding .3s;
}
nav.scrolled {
  background: rgba(255,252,247,0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm); padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; gap: 28px; }
.nav-logo {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0;
  font-family: 'Fredoka', sans-serif; font-size: 21px; font-weight: 700; color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px; object-fit: contain;
  display: inline-block; vertical-align: middle;
}
.logo-little { color: var(--ink); }
.logo-guard  { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 auto; }
.nav-links a {
  font-size: 15px; font-weight: 700; color: var(--ink2);
  text-decoration: none; padding: 8px 14px; border-radius: 10px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--bg2); }
.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: #fff; border: 2px solid var(--line2);
  padding: 9px; border-radius: 11px; margin-left: auto;
}
.hamburger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 12px; right: 12px; z-index: 99;
  background: #fff; border: 1px solid var(--line2);
  border-radius: 18px; padding: 12px; box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  color: var(--ink2); font-size: 15px; font-weight: 700; text-decoration: none;
  padding: 12px 14px; border-radius: 11px; transition: all .2s;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--blue); }

/* ─── Hero ─── */
.hero { padding: 130px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle 480px at 85% 0%, rgba(79,124,255,.10), transparent 70%),
    radial-gradient(circle 420px at 0% 90%, rgba(255,138,76,.10), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
.hero-title { font-size: clamp(38px, 5.5vw, 60px); font-weight: 700; letter-spacing: -0.02em; }
.hero-title .hl { color: var(--blue); }
.hero-title .hl2 { color: var(--coral); }
.hero-desc { font-size: 18px; color: var(--ink2); margin: 22px 0 12px; max-width: 480px; }
.hero-note { font-size: 14px; color: var(--muted); margin-bottom: 28px; display: flex; align-items: center; gap: 8px; }
.hero-note .live { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(45,212,167,.2); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 14px; transition: transform .2s, opacity .2s;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge.soon { background: #fff; color: var(--ink); border: 2px dashed var(--line2); }
.store-badge .sb-top { font-size: 10px; opacity: .8; line-height: 1; font-weight: 700; }
.store-badge .sb-main { font-size: 15px; font-weight: 800; line-height: 1.2; }
.store-badge.soon .sb-main { color: var(--ink); }

/* Hero phone mock */
.hero-visual { position: relative; display: flex; justify-content: center; }
.blob-deco { position: absolute; border-radius: 46% 54% 60% 40% / 50% 45% 55% 50%; z-index: 0; filter: blur(2px); }
.blob-1 { width: 200px; height: 200px; background: rgba(255,201,60,.35); top: -10px; right: 10px; animation: drift 9s ease-in-out infinite; }
.blob-2 { width: 160px; height: 160px; background: rgba(45,212,167,.3); bottom: 0; left: 0; animation: drift 11s ease-in-out infinite 1s; }

.phone {
  position: relative; z-index: 2; width: 268px;
  background: #11151f; border-radius: 38px; padding: 10px;
  box-shadow: 0 30px 70px rgba(30,36,53,.28), 0 0 0 1px rgba(0,0,0,.04);
  animation: floaty 5s ease-in-out infinite;
}
.phone-screen { background: var(--bg2); border-radius: 30px; overflow: hidden; aspect-ratio: 9/19; }
.phone-notch { width: 80px; height: 18px; background: #11151f; border-radius: 0 0 14px 14px; margin: 0 auto; }
.ps-body { padding: 16px 14px; }
.ps-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ps-logo { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-blue); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.ps-title { font-family: 'Fredoka',sans-serif; font-size: 15px; font-weight: 600; color: var(--ink); }
.ps-sub { font-size: 11px; color: var(--muted); }
.ps-card { background: #fff; border-radius: 16px; padding: 14px; box-shadow: var(--shadow-sm); margin-bottom: 12px; }
.ps-card.accent { background: var(--grad-blue); color: #fff; }
.ps-label { font-size: 11px; color: var(--muted); font-weight: 700; }
.ps-card.accent .ps-label { color: rgba(255,255,255,.85); }
.ps-big { font-family: 'Fredoka',sans-serif; font-size: 26px; font-weight: 600; color: var(--ink); }
.ps-card.accent .ps-big { color: #fff; }
.ps-up { font-size: 11px; color: var(--mint); font-weight: 800; }
.ps-card.accent .ps-up { color: #CFFBEC; }
.ps-mini-row { display: flex; gap: 8px; margin-bottom: 12px; }
.ps-mini { flex: 1; background: #fff; border-radius: 13px; padding: 10px; text-align: center; box-shadow: var(--shadow-sm); }
.ps-mini-v { font-family: 'Fredoka',sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); }
.ps-mini-l { font-size: 9px; color: var(--muted); font-weight: 700; }
.ps-item { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 12px; padding: 9px 11px; margin-bottom: 7px; box-shadow: var(--shadow-sm); }
.ps-ic { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.ps-it { font-size: 11px; font-weight: 700; color: var(--ink2); flex: 1; }
.ps-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.float-chip {
  position: absolute; z-index: 3; background: #fff; border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 13px; color: var(--ink);
}
.fc-1 { top: 40px; left: -12px; animation: floaty 6s ease-in-out infinite; }
.fc-2 { bottom: 70px; right: -16px; animation: floaty 7s ease-in-out infinite 1.5s; }
.fc-emoji { font-size: 18px; }

/* ─── Trust strip ─── */
.trust { background: var(--bg2); padding: 30px 0; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink2); font-size: 15px; }
.trust-item .ti-ic { font-size: 20px; }

/* ─── Features ─── */
.features { background: var(--bg); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feat-ic {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 27px; margin-bottom: 18px;
}
.ic-blue   { background: rgba(79,124,255,.12); }
.ic-coral  { background: rgba(255,138,76,.14); }
.ic-mint   { background: rgba(45,212,167,.14); }
.ic-yellow { background: rgba(255,201,60,.18); }
.ic-pink   { background: rgba(255,107,157,.14); }
.ic-purple { background: rgba(139,108,240,.14); }
.feat-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.feat-card p { font-size: 15px; color: var(--muted); }

/* ─── How it works ─── */
.how { background: var(--bg2); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { background: #fff; border-radius: var(--radius); padding: 30px 26px; position: relative; box-shadow: var(--shadow-sm); }
.step-num {
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad-coral); color: #fff;
  font-family: 'Fredoka',sans-serif; font-weight: 600; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }

/* ─── Why / value ─── */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why-card { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s, box-shadow .3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-ic { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 25px; }
.why-card h3 { font-size: 18px; margin-bottom: 6px; }
.why-card p { font-size: 15px; color: var(--muted); }

/* ─── FAQ ─── */
.faq { background: var(--bg2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 22px; font-family: 'Nunito',sans-serif; font-size: 16px; font-weight: 800; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform .25s; flex-shrink: 0; color: var(--blue); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); font-size: 15px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ─── CTA band ─── */
.cta-band { background: var(--bg); }
.cta-card {
  background: var(--grad-fun); background-size: 200% 200%; animation: shimmer 9s ease infinite;
  border-radius: var(--radius-lg); padding: 66px 40px; text-align: center; color: #fff;
  max-width: 900px; margin: 0 auto; box-shadow: 0 30px 70px rgba(79,124,255,.30); position: relative; overflow: hidden;
}
.cta-card h2 { color: #fff; font-size: clamp(28px,4vw,40px); font-weight: 700; margin-bottom: 14px; }
.cta-card p { color: rgba(255,255,255,.92); font-size: 18px; margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-card .btn-ghost { background: #fff; border-color: #fff; color: var(--blue); }
.cta-card .btn-ghost:hover { color: var(--blue-dk); }

/* ─── Footer ─── */
footer { background: #11151f; color: #B9C0D0; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: inline-flex; align-items: center; gap: 9px; font-family: 'Fredoka',sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: #8A92A6; max-width: 280px; margin-bottom: 16px; }
.footer-meta { font-size: 13px; color: #6E768C; line-height: 1.7; }
.footer-meta a { color: #B9C0D0; text-decoration: none; }
.footer-meta a:hover { color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #8A92A6; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: #6E768C; }
.footer-store { font-size: 13px; color: #8A92A6; }

/* ─── Legal / document pages ─── */
.doc-hero { padding: 130px 0 40px; background: var(--bg2); text-align: center; }
.doc-hero h1 { font-size: clamp(30px,4.5vw,44px); font-weight: 700; }
.doc-hero .updated { font-size: 14px; color: var(--muted); margin-top: 12px; font-weight: 700; }
.doc-wrap { padding: 56px 0 90px; }
.doc { max-width: 820px; margin: 0 auto; }
.doc .toc {
  background: var(--bg2); border: 1px solid var(--line2); border-radius: var(--radius-sm);
  padding: 22px 26px; margin-bottom: 40px;
}
.doc .toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 12px; }
.doc .toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 30px; }
.doc .toc a { color: var(--ink2); text-decoration: none; font-weight: 700; font-size: 14px; line-height: 2; }
.doc .toc a:hover { color: var(--blue); }
.doc h2 { font-size: 23px; font-weight: 600; margin: 40px 0 14px; scroll-margin-top: 90px; }
.doc h3 { font-size: 18px; font-weight: 600; margin: 26px 0 10px; }
.doc p { font-size: 16px; color: var(--ink2); margin-bottom: 14px; }
.doc ul, .doc ol.list { margin: 0 0 16px 22px; }
.doc li { font-size: 16px; color: var(--ink2); margin-bottom: 8px; }
.doc a { color: var(--blue); font-weight: 700; }
.doc strong { color: var(--ink); }
.doc .lead { font-size: 18px; color: var(--ink2); margin-bottom: 26px; }
.callout {
  background: var(--bg3); border: 1px solid #FFE0CC; border-left: 4px solid var(--coral);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 22px 0;
}
.callout.blue { background: var(--bg2); border-color: #D6E0FF; border-left-color: var(--blue); }
.callout.mint { background: #EAFBF5; border-color: #C2F1E4; border-left-color: var(--mint); }
.callout p:last-child { margin-bottom: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 15px; }
.doc th, .doc td { text-align: left; padding: 12px 14px; border: 1px solid var(--line2); vertical-align: top; }
.doc th { background: var(--bg2); font-family: 'Fredoka',sans-serif; font-weight: 600; color: var(--ink); }
.back-top { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; }

/* ─── Support page ─── */
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 56px; }
.sup-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.sup-card .feat-ic { margin: 0 auto 18px; }
.sup-card h3 { font-size: 18px; margin-bottom: 8px; }
.sup-card p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }

/* ─── Contact page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 36px; align-items: start; }
.contact-info { background: var(--bg2); border: 1px solid var(--line2); border-radius: var(--radius); padding: 36px 30px; }
.contact-info h2 { font-size: 22px; margin-bottom: 8px; }
.contact-info > p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; }
.info-ic { width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.info-item h4 { font-size: 14px; margin-bottom: 2px; }
.info-item p, .info-item a { font-size: 14px; color: var(--ink2); text-decoration: none; }
.info-item a:hover { color: var(--blue); }
.form-card { background: #fff; border: 1px solid var(--line2); border-radius: var(--radius); padding: 36px 32px; }
.form-card h2 { font-size: 22px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 7px; }
.form-group label span { color: var(--coral); }
.form-control {
  width: 100%; background: var(--bg); border: 2px solid var(--line2); border-radius: var(--radius-sm);
  padding: 12px 15px; color: var(--ink); font-size: 15px; font-family: 'Nunito',sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(79,124,255,.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ─── Animations ─── */
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes drift  { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(10px,-12px) rotate(8deg)} }
@keyframes shimmer { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes fade-up { from{opacity:0; transform:translateY(24px)} to{opacity:1; transform:translateY(0)} }
.fade-up { opacity: 0; animation: fade-up .6s ease forwards; }
.d1{animation-delay:.08s}.d2{animation-delay:.16s}.d3{animation-delay:.24s}
.d4{animation-delay:.32s}.d5{animation-delay:.4s}.d6{animation-delay:.48s}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .feat-grid, .steps, .support-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .doc .toc ol { columns: 1; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .feat-grid, .steps, .why-grid, .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 24px; }
}
