/* ==========================================================================
   MAX Channels — landing styles
   Палитра: фиолетовый (#6E2DC8) + оранжевый (#FF6B1A) на тёмном фоне
   ========================================================================== */

:root {
  /* Brand */
  --c-violet:        #6E2DC8;
  --c-violet-soft:   #8B47E0;
  --c-violet-deep:   #4B1E8A;
  --c-orange:        #FF6B1A;
  --c-orange-soft:   #FF9059;
  --c-orange-deep:   #D14E00;

  /* Surfaces */
  --c-bg:            #0F0A1F;
  --c-bg-2:          #14102A;
  --c-bg-3:          #1B1638;
  --c-surface:       rgba(255, 255, 255, 0.04);
  --c-surface-2:     rgba(255, 255, 255, 0.06);
  --c-border:        rgba(255, 255, 255, 0.08);
  --c-border-2:      rgba(255, 255, 255, 0.14);

  /* Text */
  --c-text:          #F5F2FF;
  --c-text-muted:    #B8B0D6;
  --c-text-dim:      #8A819F;

  /* Effects */
  --gradient-brand:  linear-gradient(135deg, #6E2DC8 0%, #FF6B1A 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(110,45,200,.18), rgba(255,107,26,.18));
  --shadow-card:     0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow:     0 0 60px rgba(110, 45, 200, 0.35);

  /* Geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --header-h: 72px;
  --container-w: 1200px;
}

/* ===== Base ============================================================== */

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

  background-image:
    radial-gradient(800px 500px at 85% -10%, rgba(255, 107, 26, 0.18), transparent 60%),
    radial-gradient(900px 600px at 5% 10%, rgba(110, 45, 200, 0.25), transparent 60%);
  background-attachment: fixed;
}

img, svg { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--c-orange-soft); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-violet);
  color: white;
  padding: 12px 18px;
  z-index: 9999;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

::selection { background: var(--c-orange); color: white; }

/* ===== Container ========================================================= */

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; }

/* ===== Buttons =========================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-lg  { padding: 16px 28px; font-size: 16px; }
.btn-sm  { padding: 9px 16px;  font-size: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 107, 26, 0.3), 0 4px 14px rgba(110, 45, 200, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 26, 0.4), 0 6px 20px rgba(110, 45, 200, 0.45);
  color: #fff;
}

.btn-ghost {
  background: var(--c-surface);
  color: var(--c-text);
  border-color: var(--c-border-2);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--c-surface-2);
  border-color: var(--c-orange);
  color: #fff;
}

/* ===== Header ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 10, 31, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
}
.logo-text strong { font-weight: 800; }
.logo:hover { color: var(--c-text); }

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.site-nav ul {
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--c-text-muted);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.site-nav a:hover { color: var(--c-text); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: auto; }

.burger {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  background: var(--c-bg-2);
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a {
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--c-text-muted);
  font-weight: 500;
}
.mobile-menu a:hover { background: var(--c-surface); color: var(--c-text); }
.mobile-menu .btn { margin-top: 8px; }

/* ===== Hero ============================================================== */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 620px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--c-border-2);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 8px var(--c-orange);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  margin-bottom: 24px;
}
.grad {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  font-size: 19px;
  color: var(--c-text-muted);
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  font-size: 15px;
}
.hero-points .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(255, 107, 26, .5);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-note {
  color: var(--c-text-dim);
  font-size: 13px;
  margin: 0;
}

/* Hero visual — phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.phone-frame {
  position: relative;
  width: 320px;
  height: 620px;
  border-radius: 48px;
  background: linear-gradient(160deg, #2A2150 0%, #1B1638 100%);
  border: 1px solid var(--c-border-2);
  padding: 16px;
  box-shadow: var(--shadow-card), 0 0 80px rgba(110, 45, 200, .35);
  transform: rotate(-4deg);
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #1B1638 0%, #0F0A1F 100%);
  padding: 20px 16px;
  position: relative;
  overflow: hidden;
}
.phone-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--c-text-muted);
  margin-bottom: 18px;
}
.phone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 8px var(--c-orange);
}

.phone-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  animation: floatCard 6s ease-in-out infinite;
}
.phone-card-2 { animation-delay: -2s; }
.phone-card-3 { animation-delay: -4s; }

.phone-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
}
.phone-avatar-2 { background: linear-gradient(135deg, #FF6B1A, #FFC107); }
.phone-avatar-3 { background: linear-gradient(135deg, #4B1E8A, #6E2DC8); }

.phone-line {
  height: 8px;
  border-radius: 4px;
  background: var(--c-border-2);
  margin-bottom: 6px;
}
.phone-line-thick { width: 70%; height: 9px; }
.phone-line-thin  { width: 45%; opacity: .55; }

.phone-price {
  font-weight: 700;
  font-size: 14px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.phone-cta {
  position: absolute;
  bottom: 24px;
  left: 16px; right: 16px;
  height: 50px;
  border-radius: 999px;
  border: 0;
  background: var(--gradient-brand);
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 107, 26, .4);
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  z-index: 1;
  pointer-events: none;
}
.orb-violet {
  width: 320px; height: 320px;
  background: var(--c-violet);
  top: 10%; left: 0;
}
.orb-orange {
  width: 280px; height: 280px;
  background: var(--c-orange);
  bottom: 5%; right: 0;
}

/* ===== Trust bar ========================================================= */

.trustbar {
  padding: 28px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.02);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 13px;
  color: var(--c-text-muted);
}

/* ===== Sections ========================================================== */

.section {
  padding: 96px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.section-dark {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
}
.section-head .section-lead {
  color: var(--c-text-muted);
  font-size: 17px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 12px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ===== Steps ============================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--c-orange);
  background: var(--c-surface-2);
}
.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.step p {
  color: var(--c-text-muted);
  font-size: 14.5px;
  margin: 0;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(110, 45, 200, .4);
}

/* ===== Promote grid ====================================================== */

.promote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.promote-card {
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform .25s, border-color .25s;
}
.promote-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-violet-soft);
}
.promote-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.promote-card h3 { font-size: 18px; margin-bottom: 8px; }
.promote-card p { color: var(--c-text-muted); font-size: 14.5px; margin: 0; }

/* ===== Audience grid ===================================================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.audience-card {
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand-soft);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-orange);
}
.audience-card:hover::before { opacity: 1; }
.audience-card > * { position: relative; z-index: 1; }
.audience-emoji { font-size: 30px; margin-bottom: 10px; }
.audience-card h3 { font-size: 16px; margin-bottom: 6px; }
.audience-card p { font-size: 14px; color: var(--c-text-muted); margin: 0; }

/* ===== Features ========================================================== */

.section-head-light h2 { color: white; }
.section-head-light .section-lead { color: var(--c-text-muted); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feature {
  padding: 26px;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform .25s, border-color .25s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--c-orange);
}
.feature-ico { font-size: 28px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { color: var(--c-text-muted); font-size: 14.5px; margin: 0; }

/* ===== Compare table ===================================================== */

.compare-table-wrap {
  overflow-x: auto;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 8px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.compare-table thead th {
  font-weight: 700;
  color: var(--c-text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compare-table thead th:nth-child(3) {
  background: var(--gradient-brand-soft);
  border-radius: var(--r-md) var(--r-md) 0 0;
  color: var(--c-text);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody th {
  font-weight: 600;
  color: var(--c-text);
}
.compare-table td {
  color: var(--c-text-muted);
}
.compare-table td:nth-child(3) {
  color: var(--c-text);
}

/* ===== Pricing =========================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  transition: transform .25s, border-color .25s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-violet-soft);
}
.price-card-featured {
  background: linear-gradient(180deg, rgba(110,45,200,.18), rgba(255,107,26,.12));
  border-color: var(--c-orange);
  box-shadow: var(--shadow-glow);
}
.price-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.price-amount {
  font-size: 40px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.price-period {
  font-size: 13.5px;
  color: var(--c-text-muted);
  margin-top: 8px;
  margin-bottom: 24px;
}
.price-list {
  flex: 1;
  margin-bottom: 28px;
}
.price-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 15px;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--gradient-brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--c-text-dim);
  font-size: 13px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FAQ =============================================================== */

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 4px 22px;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--c-border-2); }
.faq-item[open] { border-color: var(--c-violet-soft); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--c-orange);
  transition: transform .2s;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  color: var(--c-text-muted);
  padding: 0 0 18px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.faq-item a { color: var(--c-orange-soft); }

/* ===== CTA block ========================================================= */

.cta-block { padding: 60px 0 100px; }
.cta-card {
  text-align: center;
  padding: 56px 32px;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 20% 100%, rgba(110, 45, 200, .35), transparent),
    radial-gradient(400px 200px at 80% 0%, rgba(255, 107, 26, .35), transparent);
  pointer-events: none;
}
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 14px; }
.cta-card p  { color: var(--c-text-muted); font-size: 17px; margin-bottom: 28px; }
.cta-foot { margin-top: 18px; font-size: 13px; color: var(--c-text-dim); }

/* ===== Footer ============================================================ */

.site-footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: 64px 0 28px;
  margin-top: 40px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 8px 0 14px;
}
.footer-col ul li {
  padding: 6px 0;
  color: var(--c-text-muted);
}
.footer-col a {
  color: var(--c-text-muted);
}
.footer-col a:hover { color: var(--c-text); }
.footer-about { color: var(--c-text-muted); margin-top: 16px; max-width: 320px; }
.muted { color: var(--c-text-dim); font-size: 13px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--c-text-dim);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 2px 6px;
  border: 1px solid var(--c-text-dim);
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
}

/* ===== Cookie banner ===================================================== */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  animation: slideUp .35s ease;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text-muted);
  flex: 1;
  min-width: 260px;
}
.cookie-banner a { color: var(--c-orange-soft); text-decoration: underline; }

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

/* ===== Legal pages ======================================================= */

.legal-page {
  padding: 60px 0 80px;
  max-width: 880px;
  margin: 0 auto;
}
.legal-page h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.legal-page h2 { font-size: 22px; margin: 32px 0 12px; }
.legal-page h3 { font-size: 17px; margin: 24px 0 8px; }
.legal-page p,
.legal-page li { color: var(--c-text-muted); font-size: 15.5px; line-height: 1.7; }
.legal-page ul { padding-left: 20px; list-style: disc; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--c-orange-soft); text-decoration: underline; }
.legal-meta {
  font-size: 13px;
  color: var(--c-text-dim);
  margin-bottom: 28px;
  padding: 12px 16px;
  background: var(--c-surface);
  border-left: 3px solid var(--c-orange);
  border-radius: 8px;
}
.back-home {
  display: inline-block;
  margin-top: 32px;
  font-weight: 600;
  color: var(--c-orange-soft);
}

/* ===== Responsive ======================================================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .site-nav, .header-cta { display: none; }
  .burger { display: block; margin-left: auto; }

  .header-inner { gap: 12px; }
  .mobile-menu[data-open="true"] { display: flex; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-num { font-size: 24px; }

  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-lead { font-size: 16px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-visual { transform: scale(.85); margin: -40px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: stretch; }

  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 14px; }
  .price-card { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
