/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0d0d1a;
  --panel:    #16213e;
  --accent:   #0f3460;
  --red:      #e94560;
  --red-dark: #8b1a2a;
  --silver:   #c8d0dc;
  --text:     #e0e0e0;
  --muted:    #8892a4;
  --border:   #1f3a6e;
  --radius:   12px;
  --red-glow: rgba(233, 69, 96, 0.35);
  --container: 1100px;
  --container-narrow: 720px;
  --nav-height: 64px;
  --section-pad: clamp(60px, 10vw, 100px);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ───────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(233,69,96,.1);
  border: 1px solid rgba(233,69,96,.25);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title strong { color: var(--red); }

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 48px;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px var(--red-glow);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #c73e54;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,.45);
}
.btn-primary--lg { font-size: 18px; padding: 18px 44px; }

.btn-secondary {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--muted); color: var(--text); }

.btn-nav-primary {
  text-decoration: none;
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.btn-nav-primary:hover { background: #c73e54; }

.btn-nav-outline {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-nav-outline:hover { border-color: var(--muted); color: var(--text); }

/* ── NAV ──────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
#navbar.scrolled {
  background: rgba(13, 13, 26, 0.95);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--silver); font-style: italic; font-weight: 400; }
.nav-logo img { width: 26px; height: 26px; border-radius: 6px; }

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(255,255,255,.05); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
#authNav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  user-select: none;
  letter-spacing: .5px;
}
.lang-toggle span {
  cursor: pointer;
  transition: color .15s;
  padding: 2px 2px;
}
.lang-toggle span:hover { color: var(--text); }
.lang-toggle span.active { color: var(--red); }
.lang-sep { color: var(--border); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(233,69,96,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(15,52,96,.3) 0%, transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .25;
  pointer-events: none;
}

#hero-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-bottom: 32px;
  border-radius: 14px;
  overflow: hidden;
}

#hero-canvas {
  display: block;
  width: 100%;
  height: 320px;
  border-radius: 14px;
}

#hero-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  gap: 8px;
  pointer-events: none;
}

.hero-loader-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: ldot .9s ease-in-out infinite alternate;
}
.hero-loader-dot:nth-child(2) { animation-delay: .15s; }
.hero-loader-dot:nth-child(3) { animation-delay: .30s; }
@keyframes ldot { from { opacity: .2; transform: scale(.7); } to { opacity: 1; transform: scale(1.2); } }

.hero-headline {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}
.hero-headline strong { color: var(--red); }

.hero-tagline {
  font-size: clamp(15px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 36px;
  position: relative;
}
.hero-tagline strong { color: var(--text); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; align-items: center; position: relative; }

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  position: relative;
}
.badge {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge strong { color: var(--text); }
.badge svg { width: 14px; height: 14px; opacity: .7; }

/* ── FREE SHOWCASE ────────────────────────────────── */
.free-showcase {
  padding: var(--section-pad) 0;
}

.free-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.free-card {
  position: relative;
}

.free-preview {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #0a0a18 0%, #111428 100%);
  aspect-ratio: 16/9;
  margin-bottom: 24px;
  position: relative;
}
.free-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,58,110,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,58,110,.25) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.free-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.free-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}
.feature-item:hover {
  border-color: rgba(233,69,96,.4);
  transform: translateY(-2px);
}
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(233,69,96,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 18px;
}
.feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── TOOLS GRID ───────────────────────────────────── */
.tools-section {
  background: var(--panel);
  padding: var(--section-pad) 0;
}

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

.tool-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  position: relative;
}
.tool-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(233,69,96,.15);
}

.tool-badge-pro {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}
.tool-badge-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: var(--accent);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.tool-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #0a0a18 0%, #111428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.tool-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,58,110,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,58,110,.25) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.tool-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.tool-preview--soon {
  background: linear-gradient(145deg, var(--panel) 0%, var(--accent) 100%);
}
.tool-preview--soon svg {
  width: 48px;
  height: 48px;
  color: var(--muted);
  opacity: .4;
  position: relative;
  z-index: 1;
}

.tool-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  padding: 16px 20px 0;
}

.tool-card > p {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 20px 0;
  line-height: 1.55;
  flex: 1;
}

.tool-cta {
  display: inline-block;
  padding: 14px 20px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: color .2s;
}
.tool-card:hover .tool-cta { color: #ff6b7f; }

.tool-card--soon { opacity: .6; pointer-events: none; }

/* ── HOW IT WORKS ─────────────────────────────────── */
.how-section {
  padding: var(--section-pad) 0;
  text-align: center;
}

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

.how-step {
  padding: 32px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}

.how-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-icon svg { width: 36px; height: 36px; }

.how-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── PRICING ──────────────────────────────────────── */
.pricing-section {
  padding: var(--section-pad) 0;
  background: var(--panel);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn-pricing {
  margin-top: auto;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}

.pricing-card--recommended {
  border-color: var(--red);
  transform: scale(1.05);
  box-shadow: 0 8px 40px var(--red-glow);
  z-index: 2;
}
.pricing-card--recommended:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-badge--trial {
  background: var(--accent);
  border: 1px solid var(--border);
  color: var(--text);
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.pricing-price {
  margin-bottom: 4px;
}
.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pricing-currency {
  font-size: 16px;
  color: var(--muted);
  margin-left: 4px;
}

.pricing-period {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-savings {
  display: inline-block;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-features {
  list-style: none;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid var(--border);
  text-align: left;
}
.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  transition: border-color .2s, background .2s, color .2s;
  cursor: pointer;
}
.btn-pricing:hover { border-color: var(--red); color: var(--red); }

.btn-pricing--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px var(--red-glow);
}
.btn-pricing--primary:hover {
  background: #c73e54;
  border-color: #c73e54;
  color: #fff;
}
.btn-pricing--active {
  background: transparent;
  border-color: #2ecc71;
  color: #2ecc71;
  cursor: default;
  pointer-events: none;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq-section {
  padding: var(--section-pad) 0;
  text-align: center;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] { border-color: rgba(233,69,96,.35); }

.faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-answer {
  padding: 0 24px 18px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── APP SECTION ─────────────────────────────────── */
.app-section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.app-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(233,69,96,.06), transparent);
  pointer-events: none;
}

.app-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.app-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.app-icon-img {
  width: 180px;
  height: 180px;
  min-width: 180px;
  border-radius: 38px;
  box-shadow:
    0 12px 40px rgba(233, 69, 96, 0.2),
    0 0 0 1px rgba(233, 69, 96, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.app-icon-img:hover {
  transform: scale(1.05);
  box-shadow:
    0 16px 52px rgba(233, 69, 96, 0.3),
    0 0 0 1px rgba(233, 69, 96, 0.2);
}

.app-content .section-label { margin-bottom: 12px; }
.app-content .section-title { margin-bottom: 8px; }

.app-tagline {
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
  line-height: 1.5;
}

.app-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.app-features li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.app-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

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

.app-store-badge {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.app-store-badge:hover {
  transform: scale(1.05);
}
.app-store-badge img {
  height: 48px;
  width: auto;
  pointer-events: none;
}

/* ── FINAL CTA ────────────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, var(--panel) 0%, var(--accent) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(233,69,96,.08), transparent);
}
.final-cta h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
  position: relative;
}
.final-cta .btn-primary { position: relative; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo {
  font-weight: 700;
  color: var(--red);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--silver); font-style: italic; font-weight: 400; }
.footer-logo img { width: 24px; height: 24px; border-radius: 5px; }
.footer-copy { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.footer-req-block { margin-top: 0; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-req {
  display: block;
  font-size: 13px;
  color: var(--muted);
  padding: 2px 0;
  line-height: 1.5;
}
.footer-req a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-req a:hover { color: var(--text); }

.footer-col-pay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.footer-col-pay .footer-payments {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s;
  padding: 0;
  font-size: inherit;
}
.footer-payments:hover { opacity: 1; }
.footer-pay-cp { height: 48px; }
.footer-pay-cards {
  display: flex;
  gap: 6px;
}
.footer-pay-cards img {
  height: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 3px 6px;
  background: #fff;
}

/* ── ANIMATIONS ───────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── COOKIE CONSENT BANNER ────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--panel);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  padding: 16px 20px;
  animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-inner {
  max-width: var(--container, 1100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--silver);
}
.cookie-text a {
  color: var(--red);
  text-decoration: underline;
}
.cookie-text a:hover { text-decoration: none; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius, 12px);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
/* Equal visual weight for both buttons per ФЗ-152 */
.cookie-btn--outline {
  background: transparent;
  border: 2px solid var(--silver);
  color: var(--silver);
}
.cookie-btn--outline:hover {
  border-color: #fff;
  color: #fff;
}
.cookie-btn--filled {
  background: var(--red);
  border: 2px solid var(--red);
  color: #fff;
}
.cookie-btn--filled:hover {
  background: #d63a52;
  border-color: #d63a52;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .free-grid { grid-template-columns: 1fr; gap: 32px; }
  .free-features { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; }
  .nav-burger { display: flex; }
  .btn-nav-primary { display: none; }

  .tools-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card--recommended { transform: none; }
  .pricing-card--recommended:hover { transform: translateY(-4px); }

  .free-features { grid-template-columns: 1fr 1fr; }

  .app-card { padding: 32px 24px; }
  .app-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .app-visual { justify-content: center; }
  .app-icon-img { width: 120px; height: 120px; min-width: 120px; border-radius: 28px; }
  .app-tagline { border-left: none; padding-left: 0; text-align: center; }
  .app-features { grid-template-columns: 1fr; text-align: left; }
  .app-desc { margin-left: auto; margin-right: auto; }
  .app-badges { justify-content: center; flex-wrap: wrap; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-col-pay { justify-content: center; }
  .footer-payments { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 520px) {
  .hero-badges { gap: 6px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .free-features { grid-template-columns: 1fr; }
  .nav-right { gap: 8px; }
  .btn-nav-outline { display: none; }

  .cookie-inner { flex-direction: column; text-align: center; gap: 14px; }
  .cookie-buttons { width: 100%; justify-content: center; }
  .cookie-btn { flex: 1; padding: 10px 16px; }
}
