/* ============================================================
   Forma — landing page styles
   Friendly + bright · Google-Forms violet · Plus Jakarta Sans
   ============================================================ */

:root {
  /* neutrals */
  --bg: #ffffff;
  --bg-soft: #f6f3fe;
  --bg-soft-2: #f0ebfd;
  --ink: #1a1530;
  --ink-2: #5b5573;
  --ink-3: #8b86a0;
  --line: #ebe6f6;
  --line-2: #e0d9f2;

  /* brand violet */
  --primary: #6d3be4;
  --primary-strong: #5a27d2;
  --primary-bright: #8b5cf6;
  --primary-soft: #efe9fe;
  --primary-soft-2: #e6dcfd;

  /* multicolor form accents */
  --blue: #3b82f6;
  --blue-soft: #e4eeff;
  --green: #1faf6b;
  --green-soft: #ddf5ea;
  --coral: #fb6f92;
  --coral-soft: #ffe6ec;
  --amber: #f5a524;
  --amber-soft: #fff0d6;

  /* effects */
  --shadow-sm: 0 2px 8px rgba(72, 43, 145, 0.06), 0 1px 2px rgba(72, 43, 145, 0.05);
  --shadow-md: 0 12px 30px -10px rgba(72, 43, 145, 0.18), 0 4px 10px rgba(72, 43, 145, 0.06);
  --shadow-lg: 0 30px 70px -20px rgba(72, 43, 145, 0.30), 0 10px 24px rgba(72, 43, 145, 0.10);
  --shadow-phone: 0 50px 100px -30px rgba(48, 24, 110, 0.45), 0 20px 50px -20px rgba(48, 24, 110, 0.30);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --maxw: 1180px;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   App icon glyph (reusable)
   ============================================================ */
.appicon {
  display: block;
  border-radius: 24%;
  background:
    radial-gradient(120% 120% at 22% 12%, #9b6cff 0%, #7c44ec 42%, #5e26cf 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.35),
    inset 0 -6px 14px rgba(48, 18, 110, 0.40);
  position: relative;
  flex: none;
}
.appicon svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  box-shadow: 0 10px 24px -8px rgba(109, 59, 228, 0.6);
}
.btn-primary:hover { background: var(--primary-strong); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(109, 59, 228, 0.65); }
.btn-ghost {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 13px 22px;
}
.btn-ghost:hover { background: var(--primary-soft-2); }

/* App Store "coming soon" badge */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #14111f;
  color: #fff;
  border-radius: 16px;
  padding: 11px 22px 11px 18px;
  position: relative;
  cursor: default;
  box-shadow: var(--shadow-md);
  transition: transform .18s ease;
}
.appstore:hover { transform: translateY(-2px); }
.appstore svg { width: 28px; height: 28px; flex: none; }
.appstore .as-txt { display: flex; flex-direction: column; line-height: 1.15; text-align: left; gap: 1px; }
.appstore .as-txt span { white-space: nowrap; }
.appstore .as-small { font-size: 11px; font-weight: 500; opacity: .85; letter-spacing: .02em; }
.appstore .as-big { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.appstore .as-flag {
  position: absolute;
  top: -10px; right: -8px;
  background: var(--amber);
  color: #3a2600;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(245, 165, 36, .5);
}

/* ============================================================
   Header / nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -12px rgba(72,43,145,.25); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand .appicon { width: 38px; height: 38px; }
.brand .name { font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--ink-2);
  padding: 9px 15px; border-radius: 999px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--primary-soft); color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(139, 92, 246, 0.16), transparent 70%),
    radial-gradient(50% 50% at 12% 8%, rgba(59, 130, 246, 0.10), transparent 70%),
    linear-gradient(180deg, #faf8ff 0%, #ffffff 70%);
  z-index: -2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line-2);
  color: var(--primary); font-weight: 700; font-size: 13.5px;
  padding: 7px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
  letter-spacing: .01em;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.hero h1 {
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 0.95;
  margin: 22px 0 0;
  background: linear-gradient(120deg, #2a1666 0%, #6d3be4 60%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .subtitle {
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-top: 14px;
}
.hero .lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 460px;
  margin-top: 16px;
  text-wrap: pretty;
}
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 26px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.hero-trust .divider { width: 1px; height: 16px; background: var(--line-2); }

/* floating mini cards behind phone */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 14px;
  z-index: 3;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card small { display: block; font-weight: 600; font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.fc-1 { top: 8%; left: -4%; animation-delay: 0s; }
.fc-2 { bottom: 14%; right: -6%; animation-delay: 1.5s; }
.fc-3 { bottom: -2%; left: 4%; animation-delay: 3s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   iPhone mockup
   ============================================================ */
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 620;
  background: #0c0913;
  border-radius: 54px;
  padding: 13px;
  box-shadow: var(--shadow-phone);
  z-index: 2;
}
.phone::after { /* side buttons */
  content: ""; position: absolute; left: -3px; top: 130px; width: 3px; height: 64px;
  background: #221c33; border-radius: 3px 0 0 3px;
  box-shadow: 0 -84px 0 #221c33, 0 84px 0 #221c33;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--bg-soft);
  border-radius: 42px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-align: left;
}
.scr-search span { white-space: nowrap; }
.dyn-island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 30px; background: #0c0913; border-radius: 999px; z-index: 20;
}
.statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 6px; font-size: 13px; font-weight: 700; color: var(--ink);
  flex: none;
}
.statusbar .sb-right { display: flex; align-items: center; gap: 6px; }
.statusbar svg { height: 12px; width: auto; }

/* phone: My Forms home screen */
.scr-head { padding: 8px 18px 12px; display: flex; align-items: center; justify-content: space-between; flex: none; }
.scr-head h2 { font-size: 24px; font-weight: 800; letter-spacing: -.03em; }
.scr-head .avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--primary)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 14px; }
.scr-search {
  margin: 0 18px 12px; flex: none;
  background: #fff; border-radius: 13px; padding: 10px 14px;
  display: flex; align-items: center; gap: 9px; color: var(--ink-3); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.scr-search svg { width: 16px; height: 16px; }
.scr-list { flex: 1; overflow: hidden; padding: 2px 18px 14px; display: flex; flex-direction: column; gap: 11px; }
.form-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.form-card .banner { height: 42px; display: flex; align-items: center; padding: 0 14px; gap: 8px; position: relative; }
.form-card .banner svg { width: 18px; height: 18px; color: #fff; }
.form-card .banner .b-deco { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: 4px; }
.form-card .banner .b-deco i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }
.form-card .fc-body { padding: 10px 14px 12px; }
.form-card .fc-title { font-weight: 700; font-size: 14.5px; letter-spacing: -.01em; }
.form-card .fc-meta { display: flex; align-items: center; gap: 7px; margin-top: 5px; font-size: 11.5px; font-weight: 600; color: var(--ink-3); }
.form-card .pill { font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.pill-live { background: var(--green-soft); color: var(--green); }
.pill-draft { background: var(--amber-soft); color: #9a6400; }

.bn-violet { background: linear-gradient(120deg, #8b5cf6, #6d3be4); }
.bn-blue { background: linear-gradient(120deg, #60a5fa, #3b82f6); }
.bn-green { background: linear-gradient(120deg, #34d399, #1faf6b); }
.bn-coral { background: linear-gradient(120deg, #fda4b8, #fb6f92); }

/* phone tab bar */
.tabbar {
  flex: none; display: flex; align-items: center; justify-content: space-around;
  padding: 10px 10px 22px; background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.tabbar .tab { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--ink-3); font-size: 10px; font-weight: 700; }
.tabbar .tab svg { width: 22px; height: 22px; }
.tabbar .tab.active { color: var(--primary); }
.tabbar .tab.create {
  width: 50px; height: 50px; border-radius: 16px; margin-top: -22px;
  background: var(--primary); color: #fff; justify-content: center;
  box-shadow: 0 10px 20px -6px rgba(109,59,228,.6);
}
.tabbar .tab.create svg { width: 26px; height: 26px; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.section-soft { background: var(--bg-soft); }
.sec-pad { padding: 96px 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 58px; }
.sec-tag {
  display: inline-block; font-weight: 800; font-size: 13.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(34px, 5vw, 50px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; }
.sec-head p { font-size: 19px; color: var(--ink-2); margin-top: 16px; text-wrap: pretty; }

/* ============================================================
   Features
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 34px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .f-ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; flex: none; }
.feature .f-ic svg { width: 27px; height: 27px; color: #fff; }
.feature h3 { font-size: 23px; font-weight: 800; letter-spacing: -.02em; }
.feature p { color: var(--ink-2); font-size: 16.5px; margin-top: 8px; text-wrap: pretty; }
.feature .f-visual { margin-top: auto; }

.ic-violet { background: linear-gradient(135deg, #8b5cf6, #6d3be4); }
.ic-blue { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.ic-green { background: linear-gradient(135deg, #34d399, #1faf6b); }
.ic-coral { background: linear-gradient(135deg, #fda4b8, #fb6f92); }

.feature.wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 40px; }
.feature.wide .f-text { flex: 1; }
.feature.wide .f-visual { flex: 1; margin-top: 0; }

/* feature mini visuals */
.mini {
  background: var(--bg-soft); border-radius: var(--r-lg); padding: 20px;
  border: 1px solid var(--line);
}
/* editor mini */
.edit-card { background: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.edit-card .e-banner { height: 36px; background: linear-gradient(120deg, #8b5cf6, #6d3be4); }
.edit-card .e-body { padding: 14px 16px; }
.edit-card .e-q { font-weight: 700; font-size: 14px; }
.edit-card .e-opt { display: flex; align-items: center; gap: 10px; margin-top: 11px; color: var(--ink-2); font-size: 13px; font-weight: 600; }
.edit-card .e-opt .ring { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; }
.edit-card .e-opt.sel .ring { border-color: var(--primary); background: radial-gradient(circle, var(--primary) 0 38%, transparent 42%); }
.edit-card .e-add { display: inline-flex; align-items: center; gap: 6px; margin-top: 13px; color: var(--primary); font-weight: 700; font-size: 13px; }

/* notifications mini */
.notif-stack { display: flex; flex-direction: column; gap: 10px; }
.notif {
  background: #fff; border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 12px;
}
.notif .n-ic { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; flex: none; color: #fff; }
.notif .n-ic svg { width: 18px; height: 18px; }
.notif .n-title { display: block; font-weight: 700; font-size: 13.5px; }
.notif .n-sub { display: block; font-size: 12px; color: var(--ink-3); font-weight: 600; margin-top: 1px; }
.notif .n-dot { margin-left: auto; width: 9px; height: 9px; border-radius: 50%; background: var(--coral); flex: none; }

/* analytics mini */
.analytics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; padding: 8px 4px 0; }
.bars .bar { flex: 1; border-radius: 8px 8px 4px 4px; background: linear-gradient(180deg, #8b5cf6, #6d3be4); position: relative; }
.bars .bar:nth-child(2) { background: linear-gradient(180deg, #60a5fa, #3b82f6); }
.bars .bar:nth-child(3) { background: linear-gradient(180deg, #34d399, #1faf6b); }
.bars .bar:nth-child(4) { background: linear-gradient(180deg, #fda4b8, #fb6f92); }
.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.donut {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(var(--primary) 0 48%, var(--blue) 48% 74%, var(--green) 74% 90%, var(--coral) 90% 100%);
  display: grid; place-items: center; position: relative;
}
.donut::after { content: ""; width: 70px; height: 70px; border-radius: 50%; background: var(--bg-soft); }
.donut .d-num { position: absolute; font-weight: 800; font-size: 20px; color: var(--ink); }
.legend { display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: center; }
.legend span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.legend i { width: 10px; height: 10px; border-radius: 3px; }

/* export mini */
.export-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.export-chip {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--line); border-radius: 13px; padding: 12px 16px;
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm);
}
.export-chip .x-ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: 11px; font-weight: 800; flex: none; }
.export-arrow { color: var(--ink-3); display: flex; align-items: center; }
.export-arrow svg { width: 22px; height: 22px; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review .r-quote { font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; text-wrap: pretty; }
.review .r-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .r-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 16px; flex: none; }
.review .r-name { display: block; font-weight: 700; font-size: 15px; }
.review .r-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--green); margin-top: 2px; white-space: nowrap; }
.review .r-badge svg { width: 13px; height: 13px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta {
  margin: 0 auto; max-width: calc(var(--maxw) - 16px);
  background:
    radial-gradient(80% 120% at 85% 10%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(120deg, #6d3be4 0%, #8b5cf6 55%, #a78bfa 100%);
  border-radius: 40px; padding: 70px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta h2 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.cta p { font-size: 19px; opacity: .92; margin-top: 14px; max-width: 520px; margin-inline: auto; }
.cta .cta-actions { margin-top: 34px; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta .appstore { background: #14111f; }
.cta .price-note { margin-top: 22px; font-size: 14px; font-weight: 600; opacity: .85; }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 64px 0 48px; }
.footer .f-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer .brand .appicon { width: 42px; height: 42px; }
.footer .brand .name { font-size: 23px; }
.footer .f-brand-col { max-width: 320px; }
.footer .f-brand-col p { color: var(--ink-2); font-size: 15px; margin-top: 14px; }
.footer .f-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer .f-col h4 { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.footer .f-col a, .footer .f-col span { display: block; color: var(--ink-2); font-weight: 600; font-size: 15px; margin-bottom: 11px; transition: color .15s; }
.footer .f-col a:hover { color: var(--primary); }
.footer .f-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 28px; color: var(--ink-3); font-size: 14px; font-weight: 500; }
.footer .f-bottom .made { display: inline-flex; align-items: center; gap: 7px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero .lede { margin-inline: auto; }
  .hero-visual { order: -1; }
  .features { grid-template-columns: 1fr; }
  .feature.wide { grid-column: span 1; flex-direction: column; align-items: stretch; gap: 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .sec-pad { padding: 70px 0; }
  .feature { padding: 26px; }
  .cta { border-radius: 28px; padding: 50px 24px; }
  .float-card { display: none; }
  .analytics { grid-template-columns: 1fr; }
}