/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
:root {
  --bg:          #070707;
  --bg-2:        #0d0d0d;
  --bg-3:        #131313;
  --bg-card:     #111111;
  --gold:        #d4a949;
  --gold-bright: #f5d97b;
  --gold-dark:   #8a6a24;
  --gold-mid:    #a87f2c;
  --cream:       #faf6ec;
  --cream-2:     #f0e8dc;
  --ink:         #111111;
  --ink-muted:   #6b6056;
  --text:        #ffffff;
  --text-dim:    rgba(255,255,255,0.65);
  --text-faint:  rgba(255,255,255,0.38);
  --gold-glow:   rgba(212,169,73,0.22);
  --r: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* body bottom padding so fixed bar doesn't cover content */
body { padding-bottom: 72px; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

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

/* Subtle texture */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: 0.5;
}


/* ═══════════════════════════════════════
   FIXED CTA BAR  (always visible mobile, scroll-in desktop)
═══════════════════════════════════════ */
.cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-2);
  border-top: 1px solid rgba(212,169,73,0.25);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
}
.cta-bar-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.3;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cta-bar-text strong { color: var(--gold-bright); display: block; font-size: 0.9rem; }
.cta-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212,169,73,0.35);
  flex-shrink: 0;
}
.cta-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(212,169,73,0.5);
}

/* On desktop: hidden until user scrolls past hero */
@media (min-width: 768px) {
  .cta-bar {
    backdrop-filter: blur(14px);
    background: rgba(7,7,7,0.94);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .cta-bar.show { transform: translateY(0); }
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(7,7,7,0.82) 0%, rgba(7,7,7,0.90) 55%, rgba(7,7,7,1) 100%),
    url('../img/header.jpg') center top / cover no-repeat;
  padding: 80px 24px 80px;
  text-align: center;
}

/* Atmospheric light leak */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,169,73,0.14) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

/* Subtle grid lines */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,169,73,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,169,73,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 860px; width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(212,169,73,0.3);
  border-radius: 4px;
  padding: 6px 16px;
  margin-bottom: 22px;
  background: rgba(212,169,73,0.06);
  animation: fadeIn 0.8s ease both;
}

/* MAIN TITLE */
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  animation: fadeUp 0.9s ease 0.15s both;
}
.hero-logo-inline {
  margin:0 4px 0 6px;
  border:3px solid #fff;
  border-radius: 50%;
  border-width:clamp(1px, 0.25vw, 2px) clamp(2px, 0.5vw, 4px);
  height: 0.72em;
  width: auto;
  padding:1px;
  display: inline-block;
  vertical-align: -0.05em;
  filter: drop-shadow(0 2px 10px rgba(212,169,73,0.5));
}
.hero-title-word {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-title-word.plain  { color: white; }
.hero-title-word.italic { font-style: italic; color: var(--gold); }

/* Divider line */
.hero-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 15px;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: white;
  max-width: 640px;
  margin: 0 auto 12px;
  animation: fadeUp 0.9s ease 0.3s both;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 32px;
  animation: fadeUp 0.9s ease 0.4s both;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s ease 0.45s both;
}
.chip {
  font-size: 0.77rem;
  color: var(--text-dim);
  border: 1px solid rgba(212,169,73,0.2);
  border-radius: 4px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.03);
}
.chip i { color: var(--gold); margin-right: 5px; font-size: 0.65rem; }

.hero-video-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeUp 0.9s ease 0.5s both;
}

.hero-video-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(212,169,73,0.28), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-video-frame {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212,169,73,0.45);
  box-shadow:
    0 0 0 1px rgba(212,169,73,0.1),
    0 24px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(212,169,73,0.12);
  aspect-ratio: 16/9;
  background: #000;
}

.hero-video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease;
}

.hero-play-btn:hover {
  transform: scale(1.08);
}

.hero-play-btn svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 18px rgba(212,169,73,0.6));
}

/* Hero CTA */
.hero-cta {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  animation: fadeUp 0.9s ease 0.6s both;
}


/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-buy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 18px 48px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background-position 0.4s;
  box-shadow: 0 6px 32px rgba(212,169,73,0.45), 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.25;
}
.btn-buy::before {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s;
}
.btn-buy:hover::before { left: 160%; }
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 48px rgba(212,169,73,0.6);
  background-position: 100% 0;
}
.btn-buy:active { transform: scale(0.98); }
.btn-buy .sub {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 2px;
}

/* TIMER */
.timer {
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.65;
  text-align: center;
}
.timer i { color: var(--gold); margin-right: 4px; }
.timer strong, .timer b { color: rgba(255,255,255,0.62); font-weight: 500; }
#countdown1, #countdown2, #countdown3 {
  color: var(--gold-bright);
  font-weight: 700;
}


/* ═══════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════ */
.section { padding: 88px 0; }
.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center; gap: 10px;
}
.section-eyebrow::after {
  content: '';
  display: block;
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 660px;
  line-height: 1.8;
}

/* Gold separator */
.gold-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}


/* ═══════════════════════════════════════
   TRIGGER SECTION  ("Dieser Kurs ist für dich")
   – cream background for contrast
═══════════════════════════════════════ */
.trigger-section {
  background: var(--cream);
  color: var(--ink);
}
.trigger-section .section-eyebrow { color: var(--gold-dark); }
.trigger-section .section-eyebrow::after { background: linear-gradient(90deg, var(--gold-dark), transparent); }
.trigger-section .section-title { color: var(--ink); }
.trigger-section .section-title em { color: var(--gold-mid); }

.trigger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 44px 0 36px;
}
.trigger-card {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--gold);
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.trigger-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.trigger-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* Quote block */
.quote-block {
  background: var(--ink);
  border-radius: 10px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-block::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem;
  color: rgba(212,169,73,0.07);
  position: absolute;
  top: -40px; left: 16px;
  line-height: 1;
  pointer-events: none;
}
.quote-block::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
}
.vorhang-in-quote {
  width: clamp(320px, 70%, 640px);
  height: auto;
  margin: 32px auto 0;
  position: relative; z-index: 1;
  opacity: 0.92;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  position: relative; z-index: 1;
}
.quote-block strong { color: var(--gold-bright); font-style: normal; }


/* ═══════════════════════════════════════
   MODULES SECTION
═══════════════════════════════════════ */
.modules-section {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.modules-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(212,169,73,0.07), transparent 70%),
    radial-gradient(ellipse 40% 35% at 5%  90%, rgba(212,169,73,0.05), transparent 70%);
  pointer-events: none;
}
.modules-section .container { position: relative; z-index: 1; }

/* Module items */
.module-list { margin-top: 48px; }

.module-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(212,169,73,0.1);
  align-items: start;
  transition: transform 0.25s;
}
.module-item:first-child { border-top: 1px solid rgba(212,169,73,0.1); }
.module-item:hover { transform: translateX(6px); }

.module-icon {
  width: 52px; height: 52px;
  object-fit: contain;
  margin-top: 4px;
  filter: drop-shadow(0 4px 12px rgba(212,169,73,0.35));
}
.module-body { display: flex; flex-direction: column; gap: 8px; }
.module-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: white;
  line-height: 1.25;
}
.module-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.72;
}

/* Vision / "Stell dir vor" block */
.vision-block {
  margin: 48px 0 0;
  padding: 52px 40px;
  background: rgba(212,169,73,0.04);
  border: 1px solid rgba(212,169,73,0.15);
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.vision-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.95;
}
.vision-block strong { color: var(--gold-bright); font-style: normal; font-weight: 600; }

/* Specs row */
.specs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,169,73,0.12);
  border: 1px solid rgba(212,169,73,0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 56px;
}
.spec {
  background: var(--bg-2);
  padding: 24px 20px;
  text-align: center;
}
.spec-label {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: white;
  font-weight: 400;
  line-height: 1.15;
}
.spec-val small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  color: var(--text-faint);
  font-weight: 300;
  margin-top: 3px;
}


/* ═══════════════════════════════════════
   BONUS & GIFT
═══════════════════════════════════════ */
.bonus-section {
  background: var(--bg-3);
  border-top: 1px solid rgba(212,169,73,0.1);
  border-bottom: 1px solid rgba(212,169,73,0.1);
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0 24px;
}
.bonus-card {
  border: 1px solid rgba(212,169,73,0.18);
  border-radius: 10px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.bonus-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold-bright), var(--gold-mid));
}
.bonus-card:hover {
  border-color: rgba(212,169,73,0.4);
  background: rgba(212,169,73,0.04);
}
.bonus-icon {
  width: 48px; height: 48px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 10px rgba(212,169,73,0.25));
}
.bonus-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}
.bonus-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.72;
}
.bonus-desc .green { color: #6fcf97; font-weight: 600; }
.bonus-desc .blue   { color: #3CB7B2; font-weight: 600; }
.bonus-desc .red   { color: #eb5757; font-weight: 600; }
.bonus-desc .yellow   { color: #EDD6A0 ; font-weight: 600; }

/* TripAdvisor card */
.ta-card {
  border: 1px solid rgba(52,224,161,0.2);
  border-radius: 10px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.ta-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, #34e0a1, #00aa6c);
}
.ta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ta-owl {
  width: 36px; height: 36px; flex-shrink: 0;
}
.ta-brand {
  font-weight: 700;
  font-size: 1rem;
  color: white;
  letter-spacing: 0.02em;
}
.ta-brand span { color: #34e0a1; }
.ta-widget-wrap {
  /* TripAdvisor widget renders here */
  min-height: 60px;
}
.ta-note {
  font-size: 0.76rem;
  color: var(--text-faint);
  margin-top: 12px;
  font-style: italic;
}


/* ═══════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════ */
.final-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px 100px;
}
.final-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212,169,73,0.18), transparent 65%);
  pointer-events: none;
}
/* Decorative rings */
.final-rings { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.f-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,169,73,0.07);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.f-ring:nth-child(1) { width: 300px; height: 300px; }
.f-ring:nth-child(2) { width: 550px; height: 550px; border-color: rgba(212,169,73,0.05); }
.f-ring:nth-child(3) { width: 820px; height: 820px; border-color: rgba(212,169,73,0.03); }

.final-inner {
  position: relative; z-index: 2;
  max-width: 700px; margin: 0 auto;
}
.final-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.08;
  margin-bottom: 20px;
}
.final-lead em { font-style: italic; color: var(--gold); }

.pill-img {
  width: clamp(180px, 30vw, 260px);
  height: auto;
  margin: 36px auto 28px;
  filter: drop-shadow(0 20px 48px rgba(212,169,73,0.28));
}
.pill-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
}
.pill-desc {
  font-size: 0.92rem;
  color: var(--text-faint);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.price-tag {
  margin-bottom: 32px;
}
.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 6px;
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d0 { transition-delay: 0s; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.dr-footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(212,169,73,0.15);
  padding: 64px 24px 40px;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.82rem;
  line-height: 2;
}
.dr-footer .footer-inner {
  max-width: 760px;
  margin: 0 auto;
}
.dr-footer .footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--text-faint);
  flex-wrap: wrap;
}
.dr-footer .footer-socials span { margin-right: 8px; }
.dr-footer .footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,169,73,0.18);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--text-faint);
  font-size: 0.95rem;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.dr-footer .footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.dr-footer .footer-sep {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,169,73,0.3), transparent);
  margin: 20px auto;
}
.dr-footer p { color: var(--text-faint); margin: 4px 0; font-size: 0.8rem; }
.dr-footer a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.dr-footer a:hover { color: var(--gold); }
.dr-footer .footer-links { margin: 8px 0 20px; }
.dr-footer .footer-links a { margin: 0 6px; font-size: 0.78rem; }
.dr-footer .footer-payment {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.dr-footer .footer-payment p { font-size: 0.76rem; margin-bottom: 12px; }
.dr-footer .footer-payment img { display: inline; vertical-align: middle; height: 13px; opacity: 0.4; }
.dr-footer .payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.18);
  margin-top: 12px;
}
.dr-footer .payment-icons i:hover { color: rgba(255,255,255,0.4); }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 840px) {
  .trigger-grid { grid-template-columns: 1fr; }
  .bonus-grid   { grid-template-columns: 1fr; }
  .specs-row    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 35px 20px 60px; }
  .module-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .module-num  { font-size: 2.6rem; }
  .vision-block { padding: 36px 24px; }
  .quote-block  { padding: 32px 24px; }
  .specs-row    { grid-template-columns: 1fr 1fr; }
  .ratings-wrap { flex-direction: column; }
}

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}