/* ============================================================
   CUTTING IMAGE DIGITAL ENTREPRENEURS — v5
   Apple-level design: clean white · bold red · big type
   Steve Jobs Senior Design Team aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  /* Color: pure apple palette */
  --white:       #FFFFFF;
  --off-white:   #F5F5F7;
  --light-gray:  #E8E8ED;
  --mid-gray:    #6E6E73;
  --dark-gray:   #1D1D1F;
  --black:       #000000;

  /* Brand red - single bold signal */
  --red:         #E10600;
  --red-dark:    #B80500;
  --red-light:   #FFF0F0;

  /* Gradient - logo accent only */
  --grad-a:      #FF6B1A;
  --grad-b:      #E8324A;
  --grad-c:      #8B2BE2;

  /* Section backgrounds */
  --bg-white:    #FFFFFF;
  --bg-off:      #F5F5F7;
  --bg-dark:     #1D1D1F;
  --bg-darker:   #000000;

  /* Typography */
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;

  /* Spacing */
  --max-w:       980px;
  --max-w-wide:  1200px;
  --section-v:   96px;
  --r-sm:        8px;
  --r-md:        14px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-pill:      999px;
}

body {
  font-family: var(--font);
  background: var(--bg-white);
  color: var(--dark-gray);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── TOPBAR ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
}

.topbar-logo { height: 32px; width: auto; }

.topbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid-gray);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  transition: color 0.15s, background 0.15s;
}
.nav-link.active { color: var(--dark-gray); font-weight: 500; }
.nav-link:hover { color: var(--dark-gray); }

/* ── PROGRESS ── */
.progress-track { height: 3px; background: var(--light-gray); }
.progress-fill {
  height: 100%;
  background: var(--red);
  width: 0;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── HERO ── */
.hero {
  padding: 100px 44px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.hero-light { background: var(--bg-off); }

.hero-white { background: var(--bg-white); }

/* ── EYEBROW / BADGE ── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  background: var(--red-light);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── TYPOGRAPHY — Apple scale ── */
.display-1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--dark-gray);
}

.display-1.on-dark { color: var(--white); }

.display-2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--dark-gray);
}

.display-2.on-dark { color: var(--white); }

.display-3 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--dark-gray);
}

.display-3.on-dark { color: var(--white); }

.headline-sm {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--dark-gray);
}

.red-word { color: var(--red); }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--mid-gray);
  max-width: 600px;
  margin: 20px auto 40px;
  line-height: 1.6;
}

.hero-sub.on-dark { color: rgba(255,255,255,0.7); }

.body-lg {
  font-size: 17px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.body-lg strong { color: var(--dark-gray); font-weight: 600; }
.body-lg.on-dark { color: rgba(255,255,255,0.75); }
.body-lg.on-dark strong { color: var(--white); }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 44px; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 44px; }

.section-pad { padding: var(--section-v) 44px; }
.section-pad-sm { padding: 64px 44px; }

.bg-white { background: var(--bg-white); }
.bg-off { background: var(--bg-off); }
.bg-dark { background: var(--bg-dark); color: var(--white); }
.bg-black { background: var(--bg-darker); color: var(--white); }

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-red:hover { background: var(--red-dark); }
.btn-red:active { transform: scale(0.98); }

.btn-red-sm {
  font-size: 15px;
  padding: 12px 28px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--red);
  font-size: 17px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--red);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-outline:hover { background: var(--red-light); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-outline-dark:hover { background: rgba(255,255,255,0.1); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-row.center { justify-content: center; }

/* ── CARDS — Apple card language ── */
.card {
  background: var(--bg-off);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.card-white {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
}

.card-dark {
  background: #2C2C2E;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  color: var(--white);
}

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

.card-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(225,6,0,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.card-dark .card-title { color: var(--white); }

.card-body {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.65;
}

.card-dark .card-body { color: rgba(255,255,255,0.65); }

/* Red top accent */
.card-red-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

/* ── GRID SYSTEMS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

/* ── ROLE CARDS ── */
.role-card {
  background: var(--bg-off);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  position: relative;
}

.role-card:hover {
  border-color: rgba(225,6,0,0.3);
  transform: translateY(-2px);
}

.role-card.selected {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(225,6,0,0.08);
}

.role-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.role-card.selected .role-icon-wrap {
  background: var(--red-light);
}

.role-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.role-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.65;
}

.role-selected-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  transition: background 0.15s, border-color 0.15s;
}

.role-card.selected .role-selected-badge {
  background: var(--red);
  border-color: var(--red);
}

/* ── FORM / SURVEY ── */
.form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  border: 1px solid rgba(0,0,0,0.08);
}

.question-block { margin-bottom: 36px; }

.question-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--dark-gray);
  margin-bottom: 16px;
  line-height: 1.35;
}

.q-num { color: var(--red); margin-right: 6px; }

.options-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.opt-btn {
  background: var(--bg-off);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  width: 100%;
}

.opt-btn:hover {
  border-color: rgba(225,6,0,0.4);
  background: var(--red-light);
  color: var(--red);
}

.opt-btn.selected {
  border-color: var(--red);
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.field-input {
  width: 100%;
  background: var(--bg-off);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--dark-gray);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
}

.field-input:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.1);
}

.field-input::placeholder { color: rgba(0,0,0,0.3); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { margin-bottom: 18px; }

/* ── CHECK LIST ── */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.5;
}

.check-list li:last-child { border-bottom: none; }

.check-list li strong { color: var(--dark-gray); font-weight: 600; }

.check-bullet {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-bullet::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ── NOTICE BLOCK ── */
.callout {
  background: var(--red-light);
  border-radius: var(--r-md);
  padding: 20px 24px;
  border-left: 4px solid var(--red);
  margin: 24px 0;
}

.callout p {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

.callout p:last-child { margin: 0; }

/* ── STEP CARD ── */
.step-card {
  background: var(--bg-off);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
}

.step-card-red::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.step-num-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ── VSL BLOCK ── */
.vsl-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--dark-gray);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.vsl-wrap:hover { transform: scale(1.005); }

.vsl-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}

.vsl-play-btn {
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, background 0.15s;
  box-shadow: 0 8px 32px rgba(225,6,0,0.4);
}

.vsl-wrap:hover .vsl-play-btn {
  transform: scale(1.08);
  background: var(--red-dark);
}

.vsl-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent white;
  margin-left: 5px;
}

.vsl-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}

/* ── BOOKING STEPS ── */
.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.booking-step:last-child { border-bottom: none; }

.booking-step-num {
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.booking-step-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ── CALENDAR PLACEHOLDER ── */
.cal-wrap {
  background: var(--bg-off);
  border-radius: var(--r-xl);
  padding: 32px;
  text-align: center;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 320px;
  margin: 20px auto;
}

.cal-day {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--r-sm);
  padding: 10px 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--mid-gray);
}

.cal-day.avail {
  background: var(--red-light);
  border-color: rgba(225,6,0,0.2);
  color: var(--red);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.15s;
}

.cal-day.avail:hover,
.cal-day.avail.picked {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── SUCCESS ICON ── */
.success-circle {
  width: 80px;
  height: 80px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-circle::after {
  content: '';
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
}

/* ── PORTAL STATS ── */
.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  border: 1px solid rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  line-height: 1.2;
}

.stat-value.green { color: #1A7F37; }
.stat-value.red { color: var(--red); }

.stat-sub { font-size: 12px; color: var(--mid-gray); margin-top: 4px; }

.badge-sm {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.badge-red { background: var(--red-light); color: var(--red); }
.badge-green { background: #DCFCE7; color: #166534; }
.badge-orange { background: #FFF7ED; color: #C2410C; }

/* ── GUIDE COVER CARD ── */
.guide-cover {
  width: 200px;
  margin: 0 auto 36px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.guide-cover::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b), var(--grad-c));
}

.guide-cover-logo { height: 36px; margin: 0 auto 12px; }

.guide-cover-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-gray);
  line-height: 1.25;
  margin-bottom: 6px;
}

.guide-cover-title span { color: var(--red); }

.guide-cover-sub {
  font-size: 11px;
  color: var(--mid-gray);
  line-height: 1.5;
  margin-bottom: 12px;
}

.guide-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red-light);
  color: var(--red);
  border-radius: var(--r-pill);
  padding: 4px 12px;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--bg-off);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 16px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid-gray);
}

.trust-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

/* ── FEATURE HIGHLIGHT (dark card) ── */
.feature-dark {
  background: var(--bg-dark);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  color: var(--white);
  display: flex;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.feature-dark-body { flex: 1; }

.feature-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 4px 14px;
  margin-bottom: 12px;
}

.feature-dark-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-dark-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.feature-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.feat-stat {
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.feat-stat-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.feat-stat-val.red { color: var(--red); }
.feat-stat-val.white { color: var(--white); }

.feat-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── DIVIDER ── */
.divider { height: 1px; background: rgba(0,0,0,0.08); margin: 36px 0; }
.divider-dark { height: 1px; background: rgba(255,255,255,0.1); margin: 36px 0; }

/* ── DOWNLOAD CARD ── */
.download-card {
  background: var(--bg-off);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b), var(--grad-c));
}

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

.a1 { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) 0.05s both; }
.a2 { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) 0.15s both; }
.a3 { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) 0.25s both; }
.a4 { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) 0.35s both; }
.a5 { animation: fadeUp 0.6s cubic-bezier(0.4,0,0.2,1) 0.45s both; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-off);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 28px 44px;
  text-align: center;
}

.site-footer p {
  font-size: 12px;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --section-v: 64px; }
  .topbar { padding: 0 24px; }
  .topbar-nav { display: none; }
  .hero { padding: 72px 24px 60px; }
  .container { padding: 0 24px; }
  .container-wide { padding: 0 24px; }
  .section-pad { padding: var(--section-v) 24px; }
  .section-pad-sm { padding: 44px 24px; }
  .trust-strip { padding: 14px 24px; gap: 18px; }
  .form-wrap { padding: 28px 22px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn-red,
  .btn-row .btn-outline,
  .btn-row .btn-outline-dark { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .feature-dark { flex-direction: column; }
  .feature-stats { flex-direction: row; justify-content: center; }
  .site-footer { padding: 24px; }
  .display-1 { letter-spacing: -0.03em; }
}
