@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap");

:root {
  --ink: #0b1220;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --primary: #ea580c;
  --primary-hover: #c2410c;
  --primary-light: #fff7ed;
  --primary-glow: rgba(234, 88, 12, 0.35);
  --accent: #0ea5e9;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 18, 32, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.page { min-height: 100vh; display: flex; flex-direction: column; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.site-nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.lang-picker {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-flag {
  position: absolute;
  left: 10px;
  pointer-events: none;
  z-index: 1;
}

.lang-flag-icon {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  display: block;
}

.lang-select {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 7px 28px 7px 32px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2364748b' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--ink);
  cursor: pointer;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-sm { padding: 9px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 14px 26px; font-size: 0.9375rem; }
.btn-block { width: 100%; padding: 14px; font-size: 0.9375rem; border-radius: var(--radius); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 48px) 0;
  background: linear-gradient(145deg, #354e72 0%, #264063 45%, #264364 100%);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 480px at 88% 22%, rgba(234, 88, 12, 0.12), transparent 68%),
    radial-gradient(520px 360px at 12% 78%, rgba(14, 165, 233, 0.1), transparent 58%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fdba74;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.85);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-btn {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  width: 190px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  overflow: visible;
}

.store-btn:hover {
  transform: translateY(-1px);
}

.store-badge {
  width: 190px;
  height: 58px;
  object-fit: contain;
}

.play-store-btn .store-badge {
  width: 210px;
}

.store-helper {
  margin: 14px 0 0;
  max-width: 420px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.75);
}

.windows-download-btn {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  color: #1a1c20;
  text-decoration: none;
  min-height: 58px;
  transition: transform 0.15s ease;
}

.windows-download-btn:hover {
  transform: translateY(-1px);
}

.windows-download-btn .windows-icon {
  font-size: 30px;
  color: #0078d4;
}

.windows-download-btn .windows-text {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  line-height: 1.2;
}

.windows-download-btn .windows-text span {
  font-size: 12px;
}

.windows-download-btn .windows-text strong {
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-glow {
  position: absolute;
  width: 85%;
  height: 75%;
  background: radial-gradient(ellipse at 60% 50%, rgba(52, 85, 120, 0.55), rgba(42, 69, 104, 0.2) 55%, transparent 72%);
  filter: blur(36px);
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(30, 51, 84, 0.45));
}

.hero-stats {
  position: relative;
  max-width: 1200px;
  margin: clamp(40px, 6vw, 56px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.stat {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted-light);
}

/* ── Sections ── */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.section-head-light .section-label { color: var(--primary); }
.section-head-light h2 { color: var(--ink); }
.section-head-light p { color: var(--muted); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* ── Audiences ── */
.audiences {
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 48px);
  background: var(--surface);
}

.audiences-intro {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 48px);
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
}

.audiences-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.audience-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.audience-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.audience-card p {
  margin: 0 0 24px;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
}

.audience-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  margin-top: auto;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--accent);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.audience-cta:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
  color: var(--ink);
}

.audience-cta-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.audience-cta-primary:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  color: #fff;
}

/* ── Features ── */
.features {
  padding: clamp(64px, 10vw, 96px) clamp(20px, 4vw, 48px);
  background: var(--surface);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
  padding: 28px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 88, 12, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── Pricing ── */
.plans {
  padding: clamp(64px, 10vw, 96px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, var(--surface-2) 0%, #fff 100%);
}

.plans-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plan-card-featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px var(--primary-glow);
  transform: scale(1.03);
}

.plan-card-featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.plan-price-row {
  margin: 16px 0 20px;
}

.plan-old {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-light);
  text-decoration: line-through;
}

.plan-price {
  margin: 4px 0 0;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.plan-price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.plan-promo {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: #ecfdf5;
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
}

.plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.plan-features li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.75rem;
}

.plan-cta {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.plan-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.plan-cta-featured {
  border: none;
  background: linear-gradient(135deg, var(--primary), #f97316);
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.plan-cta-featured:hover {
  filter: brightness(1.05);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #f97316);
}

/* ── Footer ── */
.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: #e2e8f0;
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 48px) 0;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
}

.footer-brand strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--muted-light);
}

.footer-about p {
  margin: 0 0 20px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  transition: background 0.15s, color 0.15s;
}

.footer-socials a:hover {
  background: rgba(234, 88, 12, 0.25);
  color: #fdba74;
}

.footer-store-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.footer-store-buttons a {
  display: flex;
}

.footer-store-buttons .store-badge {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}

.footer-store-buttons .store-btn {
  width: auto;
  height: auto;
}

.footer-store-buttons .store-btn:hover,
.footer-store-buttons .windows-download-btn-footer:hover {
  transform: translateY(-2px);
}

.footer-store-buttons .play-store-btn .store-badge {
  width: auto;
  max-width: 180px;
}

.windows-download-btn-footer {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  color: #1a1c20;
  text-decoration: none;
  min-height: 52px;
  transition: transform 0.2s ease;
}

.windows-download-btn-footer .windows-icon {
  font-size: 28px;
  color: #0078d4;
}

.windows-download-btn-footer .windows-text {
  display: flex;
  flex-direction: column;
  margin-left: 8px;
  line-height: 1.2;
}

.windows-download-btn-footer .windows-text span {
  font-size: 12px;
}

.windows-download-btn-footer .windows-text strong {
  font-size: 14px;
  font-weight: 700;
}

.footer-links h4 {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.footer-links a,
.footer-links span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.15s;
}

.footer-links a:hover { color: #fdba74; }
.footer-links i { width: 16px; color: var(--primary); font-size: 0.8rem; }

.footer-contact {
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  background: transparent !important;
}

.footer-contact:hover {
  border-color: var(--primary) !important;
  background: rgba(234, 88, 12, 0.15) !important;
}

.footer-bar {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bar p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bar-links {
  display: flex;
  gap: 20px;
}

.footer-bar-links a {
  font-size: 0.8rem;
  color: #94a3b8;
  transition: color 0.15s;
}

.footer-bar-links a:hover { color: #fdba74; }

/* ── Modals ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(11, 18, 32, 0.65);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] { display: none; }

.modal-card {
  position: relative;
  width: min(440px, 100%);
  padding: 36px 32px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.modal-card-wide { width: min(520px, 100%); text-align: left; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover { background: var(--border); }

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  font-size: 1.5rem;
}

.modal-card h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.modal-desc {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.modal-form { text-align: left; }

.modal-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--surface-2);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
  background: var(--surface);
}

.modal-hint {
  margin: 14px 0 0;
  font-size: 0.75rem;
  color: var(--muted-light);
  text-align: center;
}

.form-alert {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
}

.form-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .store-buttons { justify-content: center; }
  .store-helper { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-visual { order: -1; }
  .hero-mockup { max-width: 360px; }
  .features-grid { grid-template-columns: 1fr; }
  .audiences-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .plan-card-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.nav-open { display: flex; }

  .site-header { position: relative; flex-wrap: wrap; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }

  .hero-stats { grid-template-columns: 1fr; }
  .stat { padding: 16px; }

  .form-row { grid-template-columns: 1fr; }
}
