/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto Condensed', sans-serif; background: #1F1F1F; color: #F2F1EC; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
:focus-visible { outline: 2px solid #C76633; outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 500;
  background: #C76633; color: #1F1F1F; padding: 10px 16px; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
}
.skip-link:focus { top: 12px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --orange:    #C76633;
  --orange-lt: #FFA057;
  --black:     #020000;
  --dark-1:    #1F1F1F;
  --dark-2:    #2F2F2F;
  --gray-1:    #565656;
  --gray-2:    #8B8A85;
  --gray-3:    #CBCDCF;
  --ivory:     #F2F1EC;
  --white:     #FFFFFF;
  --display:   'Oswald', sans-serif;
  --body:      'Roboto Condensed', sans-serif;
  --ui:        'Inter', sans-serif;
}

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 8vw, 120px); }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; display: flex; align-items: center;
  background: rgba(2,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled { background: rgba(2,0,0,0.98); }
.nav-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 6vw, 80px);
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 28px; width: auto; }
.nav-badge {
  font-family: var(--ui); font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-2); padding: 2px 8px;
  border: 1px solid var(--gray-1); border-radius: 100px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--ivory); opacity: 0.6; transition: opacity .2s;
}
.nav-link:hover { opacity: 1; }
.nav-cta {
  padding: 9px 22px; border-radius: 100px;
  background: var(--orange);
  font-family: var(--display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--dark-1); transition: opacity .2s;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { opacity: .88; }
.nav-cta.hidden { opacity: 0; pointer-events: none; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/photos/hero-bg.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(2,0,0,0.55) 0%, rgba(2,0,0,0.4) 50%, rgba(2,0,0,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 120px clamp(20px, 5vw, 80px) 80px;
  max-width: 860px; width: 100%;
}
.hero-eyebrow {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 28px;
}
.hero-h1 {
  font-family: var(--display); font-size: clamp(42px, 6.5vw, 84px);
  font-weight: 700; line-height: 1.08; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ivory);
  margin-bottom: 24px; text-wrap: pretty;
}
.hero-h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-family: var(--body); font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5; color: rgba(242,241,236,0.85);
  max-width: 580px; margin: 0 auto 48px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 38px; border-radius: 100px;
  background: var(--orange); border: 2px solid var(--orange);
  font-family: var(--display); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--dark-1); transition: opacity .2s;
}
.btn-primary:hover { opacity: .88; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(242,241,236,0.35);
  font-family: var(--display); font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--ivory); transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }
.play-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play-icon svg { margin-left: 2px; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5;
}
.hero-scroll span { font-family: var(--ui); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: var(--ivory); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── SECTION: THE PROBLEM ─────────────────────────────────── */
.section-problem { background: var(--dark-1); padding: 100px 0; }
.section-eyebrow {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px; display: block;
}
.section-h {
  font-family: var(--display); font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; text-transform: uppercase; line-height: 1.1;
  color: var(--ivory); margin-bottom: 64px;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.problem-card {
  background: var(--dark-2);
  padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--orange); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { background: #2a2a2a; }
.problem-num {
  font-family: var(--display); font-size: 60px; font-weight: 700;
  color: var(--orange); opacity: 1; line-height: 1;
  margin-bottom: 20px; letter-spacing: -1px;
}
.problem-stat {
  font-family: var(--display); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; text-transform: uppercase; line-height: 1.2;
  color: var(--ivory); margin-bottom: 16px;
}
.problem-sub {
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  color: var(--gray-2);
}

/* ── SECTION: HOW IT WORKS ────────────────────────────────── */
.section-how { background: var(--black); padding: 100px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; margin-bottom: 64px; }
.steps::before {
  content: ''; position: absolute; top: 40px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px; background: linear-gradient(to right, var(--orange), var(--orange)); opacity: 0.3;
  z-index: 0;
}
.step { text-align: center; padding: 0 32px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1.5px solid var(--orange); background: var(--black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--display); font-size: 28px; font-weight: 700;
  color: var(--orange);
}
.step-title {
  font-family: var(--display); font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; text-transform: uppercase; color: var(--ivory);
  margin-bottom: 12px;
}
.step-body {
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  color: var(--gray-2);
}
.how-callout {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 24px 40px;
  background: rgba(199,102,51,0.08);
  border: 1px solid rgba(199,102,51,0.25);
  border-radius: 8px; max-width: 620px; margin: 0 auto;
}
.callout-icon { font-size: 28px; }
.callout-text {
  font-family: var(--display); font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700; text-transform: uppercase; color: var(--ivory);
}
.callout-text em { color: var(--orange); font-style: normal; }

/* ── SECTION: MOCKUP ──────────────────────────────────────── */
.section-mockup {
  background: var(--dark-1); padding: 100px 0;
}
.mockup-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.mockup-copy { }
.mockup-copy .section-h { margin-bottom: 24px; }
.mockup-copy p {
  font-family: var(--body); font-size: 18px; line-height: 1.65;
  color: var(--gray-2); margin-bottom: 32px;
}
.mockup-device {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.mockup-phone {
  width: min(560px, 100%);
  padding: 0;
  position: relative; z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(199,102,51,0.15));
}
.mockup-phone img { width: 100%; height: auto; display: block; }
.mockup-device-glow {
  position: absolute; width: min(560px, 90%); height: 420px; border-radius: 50%;
  background: rgba(199,102,51,0.18); filter: blur(90px);
  z-index: 0;
}
.device-steps {
  display: flex; flex-direction: column; gap: 16px; margin-top: 32px;
}
.device-step {
  display: flex; align-items: center; gap: 14px; padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
  background: rgba(255,255,255,0.02); transition: background 0.2s;
}
.device-step:hover { background: rgba(199,102,51,0.06); border-color: rgba(199,102,51,0.2); }
.device-step-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(199,102,51,0.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px;
}
.device-step-text {
  font-family: var(--body); font-size: 15px; line-height: 1.5; color: var(--ivory);
}
.device-step-text strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--orange); margin-bottom: 2px; font-family: var(--ui); font-weight: 600; }

/* ── SECTION: WHY HOTELS ──────────────────────────────────── */
.section-why { background: var(--ivory); padding: 100px 0; }
.section-why .section-eyebrow { color: var(--orange); }
.section-why .section-h { color: var(--dark-1); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.benefit-card {
  padding: 36px 32px;
  border: 1px solid var(--orange);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 3px rgba(0,0,0,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(199,102,51,0.1);
  border: 1px solid rgba(199,102,51,0.25);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.benefit-icon svg { width: 24px; height: 24px; display: block; }
.benefit-card.dark {
  background: var(--dark-1);
  border-color: var(--dark-1);
}
.benefit-card.dark .benefit-icon {
  background: rgba(199,102,51,0.18);
  border-color: rgba(199,102,51,0.4);
}
.benefit-card.dark .benefit-feature { color: var(--gray-2); }
.benefit-card.dark .benefit-title { color: var(--ivory); }
.benefit-card.dark .benefit-body { color: var(--gray-2); }
.benefit-feature {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.benefit-title {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  text-transform: uppercase; color: var(--dark-1);
  margin-bottom: 10px; line-height: 1.2;
}
.benefit-body {
  font-family: var(--body); font-size: 15px; line-height: 1.6;
  color: var(--gray-1);
}

/* ── SECTION: BAND ────────────────────────────────────────── */
.section-band {
  background: var(--black); padding: 120px 0;
  text-align: center; overflow: hidden; position: relative;
}
.band-bg {
  position: absolute; inset: 0;
  background: url('assets/photos/hero-workout.webp') center/cover no-repeat;
  opacity: 0.18;
}
.band-inner { position: relative; z-index: 1; }
.band-label {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 32px; display: block;
}
.band-words {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 6vw, 80px); flex-wrap: wrap;
}
.band-word {
  font-family: var(--display); font-size: clamp(36px, 6vw, 80px);
  font-weight: 700; text-transform: uppercase; line-height: 1;
  color: var(--ivory); letter-spacing: 2px; position: relative;
}
.band-word.accent { color: var(--orange); }
.band-divider {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); opacity: 0.5; flex-shrink: 0; margin-top: 4px;
}
.band-sub {
  font-family: var(--body); font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6; color: rgba(242,241,236,0.6);
  max-width: 520px; margin: 40px auto 0;
}

/* ── SECTION: PRICING ─────────────────────────────────────── */
.section-pricing { background: var(--dark-1); padding: 100px 0; }
.pilot-banner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(199,102,51,0.1); border: 1px solid rgba(199,102,51,0.3);
  border-radius: 8px; padding: 16px 32px; margin-bottom: 64px;
  text-align: center;
}
.pilot-icon { color: var(--orange); font-size: 20px; }
.pilot-text {
  font-family: var(--display); font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700; text-transform: uppercase; color: var(--ivory);
}
.pilot-text em { color: var(--orange); font-style: normal; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: var(--dark-2);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(199,102,51,0.4); }
.pricing-card.featured {
  border-color: var(--orange);
  background: #2a2018;
}
.featured-badge {
  position: absolute; top: 0; right: 24px;
  background: var(--orange);
  font-family: var(--ui); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark-1);
  padding: 5px 14px; border-radius: 0 0 8px 8px;
}
.pricing-tier {
  font-family: var(--ui); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px;
}
.pricing-title {
  font-family: var(--display); font-size: 28px; font-weight: 700;
  text-transform: uppercase; color: var(--ivory); margin-bottom: 4px;
}
.pricing-rooms {
  font-family: var(--body); font-size: 14px; color: var(--gray-2);
  margin-bottom: 28px;
}
.pricing-price {
  font-family: var(--display); font-size: clamp(36px, 4vw, 52px);
  font-weight: 700; color: var(--ivory); line-height: 1;
  margin-bottom: 6px;
}
.pricing-price-label {
  font-family: var(--body); font-size: 14px; color: var(--gray-2);
  margin-bottom: 32px;
}
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; flex: 1; margin-bottom: 36px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--body); font-size: 15px; line-height: 1.4; color: var(--ivory);
}
.pricing-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(199,102,51,0.15); border: 1px solid var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.pricing-check svg { width: 10px; height: 10px; }
.pricing-cta {
  display: block; text-align: center; padding: 14px 24px; border-radius: 100px;
  font-family: var(--display); font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s;
}
.pricing-cta-primary {
  background: var(--orange); border: 2px solid var(--orange); color: var(--dark-1);
}
.pricing-cta-primary:hover { opacity: .88; }
.pricing-cta-outline {
  background: transparent; border: 1.5px solid rgba(242,241,236,0.3); color: var(--ivory);
}
.pricing-cta-outline:hover { background: rgba(242,241,236,0.05); }

/* ── SECTION: FAQ ─────────────────────────────────────────── */
.section-faq { background: var(--ivory); padding: 100px 0; }
.section-faq .section-eyebrow { color: var(--orange); }
.section-faq .section-h { color: var(--dark-1); }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid rgba(31,31,31,0.12);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; text-align: left;
  font-family: var(--display); font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; text-transform: uppercase; color: var(--dark-1);
  transition: color 0.2s; cursor: pointer;
}
.faq-q:hover { color: var(--orange); }
.faq-q.open { color: var(--orange); }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open { max-height: 200px; }
.faq-a-inner {
  padding-bottom: 24px;
  font-family: var(--body); font-size: 17px; line-height: 1.65;
  color: var(--gray-1); max-width: 740px;
}

/* ── SECTION: POSITIONING ─────────────────────────────────── */
.section-positioning { background: var(--dark-2); padding: 80px 0; text-align: center; }
.positioning-quote {
  font-family: var(--display); font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700; text-transform: uppercase; line-height: 1.3;
  color: var(--gray-2); max-width: 760px; margin: 0 auto;
}
.positioning-quote em { color: var(--ivory); font-style: normal; }

/* ── SECTION: FINAL CTA ───────────────────────────────────── */
.section-final { background: var(--black); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.final-bg {
  position: absolute; inset: 0;
  background: url('assets/photos/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
}
.final-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.final-h {
  font-family: var(--display); font-size: clamp(40px, 6vw, 76px);
  font-weight: 700; text-transform: uppercase; line-height: 1.08;
  color: var(--ivory); margin-bottom: 20px; letter-spacing: 2px;
}
.final-h em { color: var(--orange); font-style: normal; }
.final-sub {
  font-family: var(--body); font-size: 18px; line-height: 1.6;
  color: var(--gray-2); margin-bottom: 48px;
}
.final-cta { display: inline-flex; align-items: center; gap: 12px; }

/* ── FINAL CTA / BOOKING ──────────────────────────────────── */
.btn-xl {
  font-size: clamp(16px, 2vw, 22px);
  padding: 18px 48px;
}
/* Hide our fixed overlays while the Cal popup is open so nothing
   can cover the modal's close button. */
body.cal-open .nav,
body.cal-open .mobile-cta-bar,
body.cal-open .cookie-banner { display: none !important; }
/* Belt-and-braces: force Cal's modal container above everything. */
cal-modal-box,
[data-cal-namespace="grndhouse-hotel-intro"] {
  z-index: 2147483647 !important;
}
.final-footnote {
  font-family: var(--ui); font-size: 12px; line-height: 1.5;
  color: var(--gray-2); text-align: center; margin-top: 24px;
}
.final-footnote a { color: var(--gray-2); text-decoration: underline; }
.final-footnote a:hover { color: var(--ivory); }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 400;
  max-width: 560px; margin: 0 auto;
  background: rgba(2,0,0,0.96); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 10px;
  padding: 16px 20px;
  font-family: var(--ui); font-size: 13px; line-height: 1.5; color: var(--ivory);
  align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.cookie-banner.visible { display: flex; }
@media (max-width: 600px) {
  .cookie-banner { bottom: 80px; }
}
.cookie-banner p { flex: 1; min-width: 220px; margin: 0; color: var(--gray-3); }
.cookie-banner a { color: var(--ivory); text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; }
.cookie-banner button {
  font-family: var(--ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; padding: 8px 16px; border-radius: 100px;
  cursor: pointer; transition: opacity .2s;
}
.cookie-accept { background: var(--orange); color: var(--dark-1); }
.cookie-reject { background: transparent; color: var(--ivory); border: 1px solid rgba(255,255,255,0.3); }
.cookie-banner button:hover { opacity: .85; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 6vw, 80px);
  display: flex; flex-direction: column; gap: 20px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-logo img { height: 22px; width: auto; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link {
  font-family: var(--ui); font-size: 12px; color: var(--gray-2);
  transition: color .2s;
}
.footer-link:hover { color: var(--ivory); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-legal p {
  font-family: var(--ui); font-size: 11px; line-height: 1.5;
  color: var(--gray-1); max-width: 860px;
}

/* ── STICKY MOBILE CTA ────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 190;
  background: rgba(2,0,0,0.95); backdrop-filter: blur(12px);
  padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-cta-bar .btn-primary { width: 100%; font-size: 16px; padding: 14px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-badge { display: none; }
  .nav-cta { display: none; }
  .problem-grid { grid-template-columns: 1fr; gap: 2px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .mockup-inner { grid-template-columns: 1fr; gap: 48px; }
  .band-words { gap: 20px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 70px; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
