/* ============================
   Voltune — Styles
   ============================ */

:root {
  --bg: #080810;
  --bg-card: #10101c;
  --bg-surface: #16162a;
  --accent: #e5341e;
  --accent-hover: #c8280e;
  --amber: #f0a020;
  --text: #ededf5;
  --text-muted: #7878a0;
  --text-dim: #4a4a6a;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(229, 52, 30, 0.3);
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */

h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { font-size: 1rem; color: var(--text-muted); }

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(229, 52, 30, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(229, 52, 30, 0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* ---- Header ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav a:hover { color: var(--text); }

.nav-cta {
  padding: 9px 20px;
  font-size: 0.875rem;
  border-radius: 8px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 24px;
  gap: 32px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

/* ---- Hero ---- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 16, 0.95) 0%,
    rgba(20, 10, 8, 0.9) 50%,
    rgba(8, 8, 16, 0.98) 100%
  );
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,52,30,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(229, 52, 30, 0.12);
  border: 1px solid rgba(229, 52, 30, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-hint {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 20px;
}

/* ---- Hero Split Layout ---- */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(229,52,30,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(229,52,30,0.1);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* ---- Hero Stats ---- */

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Sections ---- */

section {
  padding: 80px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

/* ---- Who It's For ---- */

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.who-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.who-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(229, 52, 30, 0.12);
  border: 1px solid rgba(229, 52, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.who-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
}

.who-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Program ---- */

.program-list {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.program-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color var(--transition);
}

.program-item:hover {
  border-color: rgba(255,255,255,0.12);
}

.program-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(229, 52, 30, 0.1);
  border: 1px solid rgba(229, 52, 30, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.program-item h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.program-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Format ---- */

.format-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.format-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.format-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-points {
  display: grid;
  gap: 24px;
}

.format-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.format-point-icon {
  width: 36px;
  height: 36px;
  background: rgba(240, 160, 32, 0.1);
  border: 1px solid rgba(240, 160, 32, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.format-point h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 3px;
}

.format-point p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Results ---- */

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 3px solid var(--accent);
  transition: transform var(--transition);
}

.result-card:hover { transform: translateY(-2px); }

.result-card h4 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.result-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- Pricing ---- */

.pricing-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card {
  background: linear-gradient(135deg, #14141f 0%, #1a1020 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(229,52,30,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(240, 160, 32, 0.15);
  border: 1px solid rgba(240, 160, 32, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-includes {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-include-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-include-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}

.pricing-cta-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 14px;
  text-align: center;
}

/* ---- FAQ ---- */

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(229, 52, 30, 0.2);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-q:hover { color: var(--text); }

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  color: var(--accent);
}

.faq-item.open .faq-toggle {
  background: rgba(229, 52, 30, 0.12);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-a {
  max-height: 400px;
}

/* ---- Lead Form ---- */

.lead-form-section {
  background: linear-gradient(to bottom, transparent, rgba(229,52,30,0.03));
}

.lead-form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-wrapper .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 0.97rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-input::placeholder { color: var(--text-dim); }

.form-input:focus {
  border-color: rgba(229, 52, 30, 0.4);
  box-shadow: 0 0 0 3px rgba(229, 52, 30, 0.08);
}

.form-input.error {
  border-color: var(--accent);
}

.form-error {
  font-size: 0.78rem;
  color: var(--accent);
  display: none;
}

.form-error.visible { display: block; }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: var(--radius);
  margin-top: 4px;
}

.form-legal {
  font-size: 0.76rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-legal a:hover { color: var(--text); }

/* ---- Footer ---- */

.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ---- Cookie Banner ---- */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  z-index: 200;
  box-shadow: var(--shadow);
  display: none;
  align-items: flex-start;
  gap: 20px;
  animation: slideUp 0.3s ease;
}

.cookie-banner.visible { display: flex; }

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

.cookie-text {
  flex: 1;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-text strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.cookie-text a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-text a:hover { color: var(--text); }

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.cookie-accept:hover { background: var(--accent-hover); }

.cookie-close {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-close:hover { color: var(--text); border-color: rgba(255,255,255,0.14); }

/* ---- Sticky CTA ---- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sticky-cta-text strong { color: var(--text); }

/* ---- Success Page ---- */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(229, 52, 30, 0.1);
  border: 1px solid rgba(229, 52, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}

.success-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-page p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ---- Legal Pages ---- */

.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 32px 0 10px;
}

.legal-page p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-page ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ---- 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: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img {
    max-width: 320px;
    margin: 0 auto;
  }

  .format-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }

  .hero { padding: 90px 0 60px; }

  .hero-stats { gap: 24px; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    bottom: 16px;
    left: 12px;
    right: 12px;
    padding: 18px;
  }

  .cookie-actions { flex-direction: row; }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
    padding: 14px 24px;
  }

  .sticky-cta-text { text-align: center; }

  .pricing-card { padding: 28px 22px; }

  .who-grid { grid-template-columns: 1fr; }
}
