/* ═══════════════════════════════════════════════
   IN MY FRIDGE — Landing Page Styles
   Design: Modern, clean, Stripe/Linear-grade
   ═══════════════════════════════════════════════ */

/* ── Reset & Custom Properties ───────────────── */
:root {
  --color-primary: #10b981;
  --color-primary-dark: #059669;
  --color-primary-light: #d1fae5;
  /* Цвет Telegram для кнопок «переход в бота» (брендбук) */
  --color-telegram: #0088cc;
  --color-telegram-dark: #0077b5;
  --color-accent: #f59e0b;
  --color-accent-light: #fef3c7;
  --color-dark: #0f172a;
  --color-dark-soft: #1e293b;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0f172a;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 60px rgba(16, 185, 129, 0.15);

  --transition: 0.2s ease;
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1200px;
  --container-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ──────────────────────────────── */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm { font-size: 14px; padding: 8px 18px; }
.btn--lg { font-size: 16px; padding: 14px 28px; }
.btn--xl { font-size: 18px; padding: 18px 36px; border-radius: var(--radius-lg); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 1px 2px rgba(16,185,129,0.3), 0 0 0 0 rgba(16,185,129,0);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(16,185,129,0.35), 0 0 0 0 rgba(16,185,129,0);
  transform: translateY(-1px);
}

/* Кнопки перехода в Telegram-бот — цвет бренда Telegram (см. marketing/BRANDBOOK.md) */
.btn--telegram {
  background: var(--color-telegram);
  color: white;
  box-shadow: 0 1px 2px rgba(0,136,204,0.3), 0 0 0 0 rgba(0,136,204,0);
}
.btn--telegram:hover {
  background: var(--color-telegram-dark);
  box-shadow: 0 4px 12px rgba(0,136,204,0.35), 0 0 0 0 rgba(0,136,204,0);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-muted);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* ── Navigation ──────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(255,255,255,0.95);
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-dark);
}

.nav__logo-icon { font-size: 24px; }
.nav__logo .logo-fridge-svg { width: 28px; height: 28px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--color-dark); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  background: white;
  border: 1px solid var(--color-border);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__note {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Hero Phone Mockup — iPhone + интерфейс Telegram (системный тёмный фон) */
.hero__phone {
  position: relative;
  width: 280px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2c2c2e 0%, #1c1c1e 100%);
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,255,255,0.06), 0 0 60px rgba(16,185,129,0.08);
}

.hero__phone-dynamic-island {
  width: 100px;
  height: 28px;
  margin: 0 auto 8px;
  background: #000;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.hero__phone-screen {
  background: #202020;
  border-radius: 34px;
  overflow: hidden;
  min-height: 420px;
}

/* Шапка чата Telegram: назад, название бота, меню */
.hero__tg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 8px;
  background: #202020;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero__tg-back {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  padding: 0;
  cursor: default;
}

.hero__tg-back span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 10px 0 0 10px;
  border-left: 2px solid #0088cc;
  border-bottom: 2px solid #0088cc;
  transform: rotate(-45deg);
}

.hero__tg-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.hero__tg-menu {
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: default;
}

.hero__tg-menu span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8e8e93;
}

.hero__chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px 16px;
  background: #202020;
  min-height: 340px;
}

.hero__chat-msg {
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  animation: fadeInUp 0.6s ease backwards;
}

.hero__chat-msg:nth-child(1) { animation-delay: 0.1s; }
.hero__chat-msg:nth-child(2) { animation-delay: 0.35s; }
.hero__chat-msg:nth-child(3) { animation-delay: 0.7s; }
.hero__chat-msg:nth-child(4) { animation-delay: 1s; }

.hero__chat-msg--user {
  background: #2b5278;
  color: #fff;
  align-self: flex-end;
  max-width: 82%;
  border-bottom-right-radius: 4px;
}

.hero__chat-msg--bot {
  background: #2b2b2b;
  color: #e4e4e7;
  align-self: flex-start;
  max-width: 90%;
  border-bottom-left-radius: 4px;
}

.hero__chat-msg--bot strong {
  color: #34c759;
  font-size: 12px;
  display: block;
  margin-bottom: 4px;
}

.hero__chat-msg--bot p {
  margin: 4px 0;
  color: #e4e4e7;
}

/* Реалистичное фото открытого холодильника с ингредиентами; поверх — подпись и иконка камеры */
.hero__chat-msg--photo {
  background: transparent !important;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.hero__chat-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-height: 140px;
  padding: 12px;
  background: url('hero-fridge-photo.jpg') center / cover no-repeat;
  border-radius: 16px;
  position: relative;
}

.hero__chat-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
  border-radius: 16px;
  pointer-events: none;
}

.hero__chat-photo-camera,
.hero__chat-photo-label {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.hero__chat-photo-placeholder span.hero__chat-photo-camera {
  font-size: 28px;
}

.hero__chat-photo-placeholder small.hero__chat-photo-label {
  font-size: 11px;
  opacity: 0.95;
}

.hero__ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.hero__ing {
  background: rgba(52,199,89,0.2);
  color: #6ee7b7;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
}

.hero__ing--more {
  background: rgba(142,142,147,0.25);
  color: #a1a1a6;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Trust Bar ───────────────────────────────── */

.trust-bar {
  padding: 32px 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-bar__number {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark);
}

.trust-bar__label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* ── Pain Points ─────────────────────────────── */

.pain-section {
  padding: 100px 0;
}

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

.pain-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-slow);
}

.pain-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.pain-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pain-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.pain-card__text {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.pain-card--highlight {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.pain-card--highlight .pain-card__title {
  color: var(--color-primary-dark);
}

/* ── How It Works ────────────────────────────── */

.how-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-border), var(--color-primary));
  z-index: 0;
}

.step-card {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-card__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--color-bg-alt), 0 0 0 8px var(--color-primary-light);
}

.step-card__visual {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.step-card__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── Features ────────────────────────────────── */

.features-section {
  padding: 100px 0;
}

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

.feature-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-slow);
}

.feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}

.feature-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── Comparison Table ────────────────────────── */

.compare-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: white;
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 700px;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
}

.compare-table thead th {
  background: var(--color-bg-alt);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
}

.compare-table__highlight {
  background: rgba(16,185,129,0.04) !important;
  font-weight: 600;
  color: var(--color-dark);
}

.compare-table thead .compare-table__highlight {
  color: var(--color-primary);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.check { color: var(--color-primary); font-weight: 700; }
.cross { color: #ef4444; }

/* ── Impact Section ──────────────────────────── */

.impact-section {
  padding: 100px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.impact-text {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.impact-stat__number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
}

.impact-stat__label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.impact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-emoji-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.impact-emoji {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  animation: float 3s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.3s);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Pricing ─────────────────────────────────── */

.pricing-section {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.price-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-slow);
  position: relative;
}

.price-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card--popular {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(16,185,129,0.1);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.price-card__header {
  margin-bottom: 24px;
}

.price-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.price-card__amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-dark);
}

.price-card__period {
  font-size: 15px;
  color: var(--color-text-muted);
}

.price-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

.price-card__features .check {
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Countries ───────────────────────────────── */

.countries-section {
  padding: 80px 0;
}

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  transition: all var(--transition);
}

.country-chip:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.country-chip span { font-size: 20px; }

/* ── Partners ────────────────────────────────── */

/* Partners strip (compact B2B block) */
.partners-strip {
  padding: 48px 0;
  background: var(--color-bg-dark);
  color: white;
}

.partners-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.partners-strip__text h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.partners-strip__text p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 600px;
}

.partners-strip .btn--outline {
  color: white;
  border-color: rgba(255,255,255,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.partners-strip .btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(16,185,129,0.5);
}

/* ── Privacy ─────────────────────────────────── */

.privacy-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.privacy-item {
  text-align: center;
  padding: 24px;
}

.privacy-item__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.privacy-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.privacy-item p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── FAQ ──────────────────────────────────────── */

.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-primary);
  font-weight: 500;
}
.faq-answer a:hover { text-decoration: underline; }

/* ── CTA Section ─────────────────────────────── */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, #f0fdf4 100%);
}

.cta-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-block__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-block__text {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-block__note {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 16px;
}

/* ── Footer ──────────────────────────────────── */

.footer {
  background: #f8fafc !important; /* light gray, same as --color-bg-alt */
  color: var(--color-text);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo {
  margin-bottom: 16px;
}

.footer__brand .nav__logo-text {
  color: var(--color-dark);
}

.footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--color-text);
}

.footer__company {
  font-size: 13px;
  color: var(--color-text-light);
}

.footer__col h4 {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--color-primary-dark); }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--color-text-light);
}

.footer__disclosure {
  font-size: 12px;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Reveal Animations ───────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__cta-row { justify-content: center; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-visual { order: -1; }
  .partners-strip__inner { flex-direction: column; text-align: center; }
  .privacy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.3s ease;
  }

  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 32px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr; text-align: center; }
  .trust-bar__divider { display: none; }
  .trust-bar__grid { gap: 24px; }

  .hero { padding: 100px 0 60px; }
  .hero__phone { width: 260px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .hero__cta-row { flex-direction: column; }
  .btn--lg { width: 100%; }
}
