/* ===== Fonts ===== */
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-800.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/Unbounded-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/Unbounded-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ===== Tokens ===== */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe3ef;
  --accent: #10b981;
  --accent-dark: #047857;
  --blue: #0ea5e9;
  --amber: #d97706;
  --coral: #e88e74;
  --peach: #f3d4c6;
  --max: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 24px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, p, ul, figure { margin: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% -10%, #dcfce7 0%, var(--bg) 42%),
    radial-gradient(circle at 86% 8%, rgba(243, 212, 198, 0.5) 0%, transparent 34%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Background ===== */
.bg-noise {
  position: fixed; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: radial-gradient(#0f172a 1px, transparent 1px);
  background-size: 3px 3px; z-index: -3;
}
.bg-glow { position: fixed; width: 420px; height: 420px; border-radius: 50%; filter: blur(90px); opacity: 0.25; z-index: -2; pointer-events: none; }
.bg-glow-a { background: #6ee7b7; top: -150px; left: -130px; }
.bg-glow-b { background: #f2b6a0; right: -160px; top: 420px; }

/* ===== Utility ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
section[id] { scroll-margin-top: 90px; }
[data-parallax] { will-change: transform; transform: translate3d(0,0,0); }

/* ===== Layout ===== */
.container { width: min(var(--max), calc(100% - 2.2rem)); margin: 0 auto; }
.section { padding-top: 5rem; }
.section-head h2 {
  font-family: "Unbounded", sans-serif;
  margin-top: 0.35rem;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  max-width: 28ch;
  line-height: 1.15;
}

/* ===== Tag ===== */
.tag {
  display: inline-block;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--accent); margin-bottom: 0.75rem; font-weight: 700;
}
.tag--ai {
  color: #7c3aed;
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
  padding: 0.25rem 0.6rem; border-radius: 999px;
}

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(248, 250, 252, 0.88);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  position: relative;
}
.logo {
  font-family: "Unbounded", sans-serif;
  text-decoration: none; color: var(--text);
  font-size: 1.1rem; letter-spacing: 0.04em; font-weight: 700;
}
.menu { display: flex; gap: 1.3rem; }
.menu a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color 150ms;
}
.menu a:hover { color: var(--text); }
.auth { display: flex; gap: 0.6rem; }
.menu-toggle { display: none; }

/* ===== Buttons ===== */
.btn {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.7rem 1.15rem; text-decoration: none;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; white-space: nowrap;
  transition: transform 160ms ease, box-shadow 200ms ease, background-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1); }
.btn-solid {
  background: linear-gradient(120deg, #22c55e, #0ea5e9);
  border-color: transparent; color: #fff;
}
.btn-solid:hover { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3); }
.btn-outline { background: #fff; border-color: #cfd9e8; }
.btn-lg { padding: 0.85rem 1.45rem; font-size: 0.95rem; }

/* ===== Muted ===== */
.muted { color: var(--muted); font-size: 0.92rem; }

/* ===== Hero ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
  padding: 3.5rem 0 2rem;
}
.hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08; max-width: 14ch;
}
.lead { margin-top: 0.85rem; color: var(--muted); font-size: 1rem; max-width: 48ch; }
.cta-row { margin-top: 1.3rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.audience {
  margin-top: 1rem; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
}
.audience li {
  padding: 0.3rem 0.7rem; border-radius: 999px;
  font-size: 0.8rem; border: 1px solid rgba(215, 226, 240, 0.9);
  background: rgba(255, 255, 255, 0.8); color: #526173;
}

/* Hero media — image + floating cards */
.hero-media {
  position: relative; align-self: center;
}
.hero-media img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid #d2dced;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  aspect-ratio: 1.56 / 1; object-fit: cover; object-position: center top;
}
.float-card {
  position: absolute;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(236, 253, 245, 0.76));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(211, 223, 239, 0.78);
  border-radius: 16px; padding: 0.72rem 0.88rem;
  width: 220px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.1);
}
.float-card p { color: #475569; font-size: 0.8rem; }
.float-card strong { color: #0f172a; font-size: 0.9rem; display: block; margin-top: 0.25rem; }
.card-1 { left: 12px; top: 6px; }
.card-2 { right: -2px; bottom: 18px; }

/* ===== Contrast Grid (How It Works + Pain) ===== */
.contrast-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.contrast-col {
  border-radius: var(--radius); padding: 1.4rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contrast-col--pain {
  background: linear-gradient(145deg, #fff5f0, #fef2e8);
  border: 1px solid #f0ddd2;
}
.contrast-col--solution {
  background: linear-gradient(145deg, #ecfdf5, #f0fdf8);
  border: 1px solid #a7f3d0;
}
.contrast-col__header {
  font-family: "Unbounded", sans-serif;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.contrast-col--pain .contrast-col__header { color: #c2410c; }
.contrast-col--solution .contrast-col__header { color: var(--accent-dark); }
.contrast-item {
  display: flex; gap: 0.7rem; align-items: flex-start;
}
.contrast-item svg { flex-shrink: 0; margin-top: 2px; }
.contrast-col--pain .contrast-item svg { color: #dc2626; }
.contrast-col--solution .contrast-item svg { color: #16a34a; }
.contrast-item strong { font-size: 0.92rem; display: block; }
.contrast-item p { margin-top: 0.15rem; color: var(--muted); font-size: 0.85rem; }

/* ===== Features ===== */
.feature-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.feature-card {
  background: linear-gradient(140deg, #ecfdf5, #fff5ee 60%, #eff6ff);
  border: 1px solid #d8e2f1; border-radius: var(--radius);
  padding: 1.15rem;
}
.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, 0.1); border-radius: 14px; color: var(--accent-dark);
  margin-bottom: 0.7rem;
}
.feature-card h3 { font-size: 1rem; }
.feature-card p { margin-top: 0.35rem; color: var(--muted); font-size: 0.9rem; }

/* ===== AI Block ===== */
.ai-block {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem; align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #faf5ff, #ede9fe 30%, #e0e7ff 70%, #ecfdf5);
  border: 1px solid #c4b5fd; border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.08);
}
.ai-block h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 18ch; line-height: 1.15;
}
.ai-block__desc {
  margin-top: 0.65rem; color: #4c1d95; font-size: 0.95rem; max-width: 50ch;
}
.ai-features { margin-top: 1.25rem; display: grid; gap: 0.85rem; }
.ai-feature {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.ai-feature__icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124, 58, 237, 0.12); border-radius: 10px; color: #7c3aed;
}
.ai-feature strong { font-size: 0.9rem; display: block; }
.ai-feature p { margin-top: 0.15rem; font-size: 0.82rem; color: #6d28d9; }

/* AI CTA */
.ai-cta { margin-top: 1.25rem; }

/* AI Card Demo */
.ai-card-demo {
  background: #fff; border-radius: 18px; padding: 1.15rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.ai-card-demo__header {
  font-family: "Unbounded", sans-serif;
  font-size: 0.8rem; color: #7c3aed;
  padding-bottom: 0.65rem; border-bottom: 1px solid #ede9fe;
  margin-bottom: 0.75rem;
}
.ai-card-demo__section { margin-bottom: 0.7rem; }
.ai-card-demo__label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: #94a3b8; margin-bottom: 0.25rem; font-weight: 600;
}
.ai-card-demo__text { font-size: 0.85rem; color: var(--text); line-height: 1.45; }
.ai-card-demo__score { display: flex; align-items: center; gap: 0.6rem; }
.ai-card-demo__score-bar {
  flex: 1; height: 8px; background: #f1f5f9; border-radius: 4px; overflow: hidden;
}
.ai-card-demo__score-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #22c55e, #0ea5e9);
}
.ai-card-demo__score span {
  font-size: 0.9rem; font-weight: 700; color: var(--accent-dark);
}
.ai-card-demo__action {
  font-size: 0.85rem; color: var(--accent-dark); font-weight: 600;
  padding: 0.45rem 0.7rem; background: #ecfdf5; border-radius: 10px;
  display: inline-block;
}

/* ===== Security & Privacy ===== */
.security-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.security-card {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0; border-radius: 20px;
  padding: 1.5rem;
}
.security-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, 0.12); color: var(--accent);
  margin-bottom: 0.75rem;
}
.security-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.security-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ===== Personas (For Whom) ===== */
.persona-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.persona-card {
  background: linear-gradient(145deg, #fff, #f8fafc);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem;
  display: flex; flex-direction: column;
}
.persona-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
}
.persona-card p { margin-top: 0.45rem; color: var(--muted); font-size: 0.9rem; flex: 1; }
.persona-plan {
  margin-top: 0.85rem; display: inline-block;
  font-size: 0.78rem; font-weight: 700; color: var(--accent-dark);
  padding: 0.25rem 0.6rem; border-radius: 999px;
  background: #ecfdf5; border: 1px solid #a7f3d0;
  align-self: flex-start;
}

/* ===== Walkthrough ===== */
.walkthrough-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.walkthrough-step {
  text-align: center;
}
.walkthrough-step__num {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem; color: var(--accent); font-weight: 700;
  margin-bottom: 0.5rem;
}
.walkthrough-step__screen {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  padding: 0.85rem; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.7rem;
}
.walkthrough-step h3 { font-size: 0.95rem; }
.walkthrough-step p { margin-top: 0.25rem; color: var(--muted); font-size: 0.82rem; }

/* Walkthrough mocks */
.mock-extension {
  width: 100%; text-align: center;
}
.mock-extension__header {
  font-size: 0.68rem; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.mock-extension__name { font-size: 0.85rem; font-weight: 700; }
.mock-extension__role { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }
.mock-extension__btn {
  margin-top: 0.55rem; font-size: 0.72rem; font-weight: 600;
  color: #fff; background: linear-gradient(120deg, #22c55e, #0ea5e9);
  padding: 0.35rem 0.65rem; border-radius: 8px; display: inline-block;
}

.mock-kanban-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; width: 100%; }
.mock-col { display: flex; flex-direction: column; gap: 0.3rem; }
.mock-col__h { font-size: 0.6rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; }
.mock-card { height: 18px; background: #f1f5f9; border-radius: 4px; border: 1px solid #e2e8f0; }
.mock-card--active { background: #dcfce7; border-color: #a7f3d0; }

.mock-reminder {
  display: flex; gap: 0.6rem; align-items: flex-start; text-align: left; width: 100%;
}
.mock-reminder__icon { color: #d97706; flex-shrink: 0; margin-top: 2px; }
.mock-reminder strong { display: block; font-size: 0.78rem; }
.mock-reminder span { font-size: 0.7rem; color: var(--muted); }

.mock-history { width: auto; display: inline-flex; flex-direction: column; gap: 0.45rem; text-align: left; }
.mock-history__item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.75rem; color: var(--text); }
.mock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock-dot--green { background: #22c55e; }
.mock-dot--blue { background: #3b82f6; }
.mock-dot--gray { background: #cbd5e1; }

/* ===== Pricing ===== */
.pricing-lead { margin-top: 0.65rem; max-width: 70ch; }
#pricing .section-head h2 { max-width: 30ch; }

/* Toggle */
.pricing-toggle {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 0; width: fit-content;
  background: #f1f5f9; border: 1px solid var(--line); border-radius: 999px;
  padding: 4px; margin-left: auto; margin-right: auto;
}
.pricing-toggle__label {
  font-size: 0.88rem; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 1.2rem; border-radius: 999px;
  font-weight: 600; transition: all 200ms; user-select: none;
  background: none; border: none; font-family: inherit;
}
.pricing-toggle__label.is-active {
  background: #fff; color: var(--text);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.pricing-toggle__save {
  font-size: 0.68rem; font-weight: 700; color: #fff;
  background: var(--accent); padding: 0.15rem 0.45rem; border-radius: 999px;
}

/* Grid */
.pricing-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  align-items: stretch;
}

/* Base card */
.plan {
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.plan:hover { transform: translateY(-4px); }
.plan h3 { font-family: "Unbounded", sans-serif; font-size: 1.25rem; }
.plan-sub { margin-top: 0.35rem; color: var(--muted); font-size: 0.88rem; }

/* Price block */
.plan-price-block {
  margin-top: 0.25rem; display: flex; align-items: baseline; gap: 0.15rem; flex-wrap: wrap;
}
.plan--start .plan-price-block { margin-top: 0.25rem; }
.plan-amount {
  font-family: "Unbounded", sans-serif; font-size: 2.2rem; font-weight: 700;
  line-height: 1; color: var(--text);
  transition: opacity 150ms ease;
}
.plan-amount.is-switching { opacity: 0; }
.plan-currency { font-family: "Unbounded", sans-serif; font-size: 1.1rem; color: var(--text); }
.plan-period {
  font-family: "Manrope", sans-serif; font-size: 0.85rem;
  color: #64748b; font-weight: 600; margin-left: 0.15rem;
}

/* Old (strikethrough) price — inline with founding price */
s.plan-price-old {
  font-family: "Unbounded", sans-serif; font-weight: 700;
  font-size: 1.2rem; color: #94a3b8;
  text-decoration: line-through; text-decoration-thickness: 2px;
  margin-right: 0.3rem;
}
.plan-price--standard { font-weight: 600; color: #94a3b8; }


/* Free plan note */
.plan-free-note {
  font-size: 0.82rem; color: var(--accent-dark); font-weight: 500;
  margin-top: 0.25rem; margin-bottom: 0.5rem;
}

/* CTA buttons */
.plan-cta {
  display: block; text-align: center; margin-top: auto;
  padding: 0.75rem 1rem; border-radius: 999px; font-size: 0.9rem;
  font-weight: 600; text-decoration: none; cursor: pointer;
  transition: all 200ms ease; border: 1px solid transparent;
}
.plan-cta--outline {
  background: #fff; border-color: #cfd9e8; color: var(--text);
}
.plan-cta--outline:hover { border-color: #94a3b8; box-shadow: 0 4px 12px rgba(15,23,42,0.06); }
.plan-cta--solid {
  background: linear-gradient(120deg, #22c55e, #0ea5e9);
  color: #fff; border-color: transparent;
}
.plan-cta--solid:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.3); transform: translateY(-1px); }
.plan-cta--team {
  background: #fff; border-color: #cfd9e8; color: var(--text);
}
.plan-cta--team:hover { border-color: #94a3b8; box-shadow: 0 4px 12px rgba(15,23,42,0.06); }

/* Features list */
.plan-features {
  margin-top: 1rem; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.88rem; color: var(--muted);
}

.plan-features .check-icon { margin-top: 0.15rem; flex-shrink: 0; }

/* Check icon colors per plan */
.plan--start .check-icon { color: #94a3b8; }
.plan--pro .check-icon { color: var(--accent); }
.plan--team .check-icon { color: var(--accent); }

/* Старт card */
.plan--start {
  background: #f8f9fb; border: 1px solid #e5e9ef;
}
.plan--start:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.05); }

/* Про card — featured */
.plan--pro {
  background: #fff; border: 2px solid var(--accent);
  box-shadow: 0 16px 40px rgba(16,185,129,0.1);
  transform: scale(1.03); z-index: 1;
}
.plan--pro:hover { transform: scale(1.03) translateY(-4px); box-shadow: 0 20px 48px rgba(16,185,129,0.15); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 0.3rem 1rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; white-space: nowrap;
}

/* Команда card */
.plan--team {
  background: #fff;
  border: 1px solid #d9e4f2;
}
.plan--team:hover { box-shadow: 0 12px 32px rgba(15,23,42,0.08); }


/* ===== FAQ ===== */
#faq .section-head h2 { max-width: 20ch; }
#faq { padding-bottom: 0; }
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 0.6rem; background: #fff;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.15rem; cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  transition: background-color 150ms;
}
.faq-item summary:hover { background: var(--surface-2); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.2rem; color: var(--muted);
  transition: transform 200ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.15rem 1rem; color: var(--muted); font-size: 0.9rem; line-height: 1.6;
}

/* ===== Final CTA ===== */
.cta-final {
  text-align: center;
  padding: 3rem 1.5rem; margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid #d9e4f2;
  background: linear-gradient(110deg, rgba(16, 185, 129, 0.14), rgba(14, 165, 233, 0.14));
}
.cta-final h2 {
  font-family: "Unbounded", sans-serif;
  max-width: 26ch; margin: 0 auto;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}
.cta-final p { margin-top: 0.6rem; color: var(--muted); }
.cta-final .cta-row { justify-content: center; }

/* ===== Reviews ===== */
.reviews-grid {
  margin-top: 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.reviews-section { padding-bottom: 3rem; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; display: flex; flex-direction: column;
}
.review-quote {
  font-size: 0.92rem; color: var(--text); line-height: 1.55;
  font-style: italic; flex: 1;
  margin: 0; padding: 0; border: none;
}
.review-card footer {
  margin-top: 0.85rem;
}
.review-card cite {
  font-size: 0.88rem; font-style: normal; font-weight: 700; display: block;
}
.review-card footer span {
  font-size: 0.78rem; color: var(--muted);
}


/* ===== Footer ===== */
.footer {
  border-top: 1px solid #d9e4f2;
  padding: 2rem 0 2.5rem;
  background: rgba(255, 255, 255, 0.72);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.footer h3 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer p, .footer a { color: var(--muted); font-size: 0.88rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--text); }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-copy { margin-top: 0.6rem; font-size: 0.85rem; }

/* ===== Animations ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 550ms ease, transform 550ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; animation: none; }
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  width: 20px; height: 2px; background: var(--text); border-radius: 1px;
  transition: transform 200ms, opacity 200ms;
}

/* ===== Responsive ===== */
@media (max-width: 1060px) {
  .hero,
  .contrast-grid,
  .feature-grid,
  .persona-grid,
  .pricing-grid,
  .security-grid,
  .reviews-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .ai-block { grid-template-columns: 1fr; }
  .walkthrough-grid { grid-template-columns: repeat(2, 1fr); }

  .menu { display: none; }
  .menu-toggle { display: flex; }

  .menu.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(248, 250, 252, 0.97); backdrop-filter: blur(12px);
    padding: 1rem 1.5rem; gap: 0.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  }

  .hero-media { margin-top: 1rem; }
  .card-1 { left: 8px; top: 12px; }
  .card-2 { right: 8px; bottom: 14px; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 1.1rem)); }
  .header { position: static; }
  .nav { flex-wrap: nowrap; padding: 0.6rem 0; gap: 0.5rem; }
  .auth .btn { padding: 0.6rem 0.85rem; font-size: 0.84rem; }
  .walkthrough-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 100%; }
  .pricing-grid { gap: 0.75rem; }
  .float-card { display: none; }
  .plan--pro { transform: none; }
  .plan--pro:hover { transform: translateY(-4px); }
}
