/* ===================================
   KURZE RIPPE BOX-CLUB — Design System
   =================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --ink: #f5f5f0;
  --ink-soft: #c8c4bb;
  --ink-muted: #8a8680;
  --ink-dim: #5a5651;
  --red: #d62828;
  --red-deep: #9e1f1f;
  --red-bright: #ef3a3a;
  --gold: #e6b53e;
  --line: #2a2a2a;
  --line-bright: #3d3d3d;

  --font-display: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
  --font-stencil: 'Stardos Stencil', 'Anton', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1240px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Typography ===== */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
}
.stencil {
  font-family: var(--font-stencil);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--red-bright);
  font-weight: 500;
}
.accent { color: var(--red-bright); }
.gold { color: var(--gold); }

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }
section.elev { background: var(--bg-elev); }
section.dark { background: #050505; }
section.red {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fff;
}

/* Diagonal red stripe divider (boxing-club energy) */
.stripe-divider {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red), var(--red) 20px,
    #0a0a0a 20px, #0a0a0a 40px
  );
}

/* ===== Top Navigation ===== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.topnav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand img {
  height: 48px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-stencil);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-stencil);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.cta {
  background: var(--red);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-links a.cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 40, 40, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230, 181, 62, 0.08), transparent 50%),
    #050505;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--red);
  background: rgba(214, 40, 40, 0.08);
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-bright);
}
.hero-eyebrow .mono { color: var(--red-bright); margin: 0; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--red-bright); }
.hero h1 .crossed {
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.55;
}
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 38px);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-tagline .accent { color: var(--red-bright); }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-stencil);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  display: inline-block;
}

.hero-logo {
  position: relative;
  text-align: center;
}
.hero-logo img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 0 60px rgba(214, 40, 40, 0.3));
}
.hero-logo::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-stencil);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 400;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 16px rgba(214, 40, 40, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line-bright);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-card);
}
.btn-light {
  background: #fff;
  color: var(--bg);
}
.btn-light:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Section Header ===== */
.section-head {
  margin-bottom: 56px;
  max-width: 700px;
}
.section-head .mono { margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--red-bright); }
.section-head .lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===== Card Grid (Trainings, Features) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover::after { transform: scaleX(1); }

.card-num {
  font-family: var(--font-stencil);
  font-size: 12px;
  color: var(--red-bright);
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-stencil);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-top: auto;
}
.card-link:hover { color: #fff; }
.card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}
.card:hover .card-link::after { transform: translateX(4px); }

/* ===== Stats Strip ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--red-bright);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-stencil);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--bg-card), #1f1414);
  box-shadow: 0 24px 48px rgba(214, 40, 40, 0.12);
}
.price-card.featured::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: #fff;
  font-family: var(--font-stencil);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-bottom-left-radius: var(--radius-sm);
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: #fff;
}
.price-amount .currency { font-size: 32px; vertical-align: top; margin-right: 4px; color: var(--ink-soft); }
.price-period {
  font-family: var(--font-stencil);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.price-features {
  list-style: none;
  margin: 24px 0;
}
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 4px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===== Form ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  gap: 18px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-family: var(--font-stencil);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--line-bright);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--bg-elev);
  box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23c8c4bb' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
}
.consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg);
  border: 1.5px solid var(--line-bright);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.consent input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
}
.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  color: var(--ink-muted);
  margin: 0;
}
.form-success {
  background: rgba(214, 40, 40, 0.08);
  border: 1px solid var(--red);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ===== FAQ ===== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 28px;
  color: var(--red);
  transition: transform 0.2s ease;
  font-weight: 300;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 14px;
  max-width: 640px;
}

/* ===== CTA Bands ===== */
.cta-band {
  text-align: center;
  padding: 96px 24px;
  background:
    radial-gradient(circle at 30% 50%, rgba(214, 40, 40, 0.2), transparent 60%),
    #050505;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-band h2 .accent { color: var(--red-bright); }
.cta-band .lead {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ===== Schedule Table ===== */
.schedule {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.schedule-row {
  display: grid;
  grid-template-columns: 140px 1fr 140px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 16px;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day {
  font-family: var(--font-stencil);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.schedule-class { font-size: 15px; }
.schedule-time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  text-align: right;
}

/* ===== Page Hero (Subpages) ===== */
.page-hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 50% 20%, rgba(214, 40, 40, 0.15), transparent 50%),
    #050505;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-hero h1 .accent { color: var(--red-bright); }
.page-hero .lead {
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 640px;
  line-height: 1.55;
}
.breadcrumb {
  font-family: var(--font-stencil);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--line-bright); margin: 0 8px; }

/* ===== Content Blocks (Subpage Text) ===== */
.prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.prose p { margin-bottom: 18px; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 36px 0 16px;
  letter-spacing: 0.005em;
}
.prose ul { padding-left: 0; list-style: none; margin: 16px 0; }
.prose ul li {
  padding: 8px 0 8px 28px;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 2px;
  background: var(--red);
}

/* ===== Footer ===== */
footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 72px; margin-bottom: 20px; }
.footer-brand p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-stencil);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-muted);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 320px; }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -32px;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .card-grid.cols-3, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .form-card { padding: 32px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .schedule-row {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }
  .schedule-time {
    grid-column: 2;
    text-align: left;
    color: var(--red-bright);
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a.cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
    padding: 14px 20px;
  }
  .nav-toggle { display: block; }
  .topnav-inner { position: relative; }
  .brand img { height: 40px; }
  .brand-tag { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn-large { padding: 16px 26px; font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .card { padding: 26px; }
  .stats { padding: 24px; gap: 16px; }
  .price-card { padding: 32px 24px; }
  .cta-band { padding: 64px 24px; }
  .container { padding: 0 18px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
