:root {
  --primary: #15b8a6;
  --primary-light: #f0fdfa;
  --secondary: #ffc927;
  --secondary-dark: #d4a017;
  --text: #111827;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --text-light: #d1d5db;
  --bg: #f3f5f9;
  --surface: #ffffff;
  --dark: #111827;
  --dark-surface: #1f2937;
  --dark-deeper: #0b0f19;
  --border: #e5e7eb;
  --font: "Geist", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Lora", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1,
h2 {
  font-family: var(--font-display);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}
.section-label--yellow {
  color: var(--secondary);
}
.section-label--gold {
  color: var(--secondary-dark);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: #0ea593;
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary--sm {
  padding: 10px 24px;
  font-size: 14px;
}
.btn-primary--lg {
  padding: 20px 48px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ── Blob backgrounds ── */

/* ── Fade-in animation ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in.visible {
  animation: fadeUp 0.7s ease forwards;
}

/* ── Header ── */
.header {
  padding: 12px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(243, 245, 249, 0.85);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.header-logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.header-logo-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: var(--text);
}
.header-nav a.btn-primary {
  color: #fff;
}
.header-nav a.btn-primary:hover {
  color: #fff;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* ── Urgency Banner ── */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--text);
  animation: urgencyGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 10;
}
@keyframes urgencyGlow {
  0%,
  100% {
    background: var(--text);
  }
  50% {
    background: #1a2332;
  }
}
.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--secondary);
  border-radius: 50%;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.urgency-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Hero ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  overflow: visible;
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 20px;
}
.hero-h1-accent {
  color: var(--primary);
}
.hero-subline {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 0;
}
.hero-subline strong {
  color: var(--text);
  font-weight: 600;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  text-align: center;
  margin-bottom: 28px;
}

/* ── Hero CTA Row ── */
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-cta-note {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* ── Hero Animation ── */
.hero-animation {
  position: relative;
  width: 100%;
  height: 420px;
  margin: -10px 0 -10px;
  overflow: visible;
}

/* ── Central Hub ── */
.hive-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 2;
}
.hive-nest {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.08));
}
.hive-ring {
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(21, 184, 166, 0.15);
  border-radius: 50%;
  animation: hubPulse 4s ease-in-out infinite;
}
.hive-ring:nth-child(2) {
  inset: -30px;
  border-color: rgba(21, 184, 166, 0.1);
  animation-delay: -1.3s;
  animation-duration: 5s;
}
.hive-ring:nth-child(3) {
  inset: -50px;
  border-color: rgba(21, 184, 166, 0.05);
  animation-delay: -2.6s;
  animation-duration: 6s;
}
@keyframes hubPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.5;
  }
}
.hive-glow {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(21, 184, 166, 0.1) 0%,
    rgba(255, 201, 39, 0.04) 40%,
    transparent 70%
  );
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.08);
  }
}

/* Hub "ping" when a bee departs/arrives */
.hive-hub.ping .hive-ring {
  animation: hubPing 0.6s ease-out;
}
@keyframes hubPing {
  0% {
    transform: scale(1);
    border-color: rgba(21, 184, 166, 0.35);
  }
  100% {
    transform: scale(1.12);
    border-color: rgba(21, 184, 166, 0.03);
  }
}

/* ── Bee ── */
.bee {
  position: absolute;
  width: 44px;
  height: 44px;
  will-change: transform;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.bee.active {
  opacity: 1;
}
.bee.at-hive {
  opacity: 0.5;
  transform: scale(0.7);
}
.bee-flutter {
  display: block;
  width: 100%;
  height: 100%;
  animation: beeHover 1.8s ease-in-out infinite;
}
@keyframes beeHover {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.03) rotate(1.5deg);
  }
  50% {
    transform: scale(1) rotate(0deg);
  }
  75% {
    transform: scale(1.03) rotate(-1.5deg);
  }
}
.bee-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(255, 201, 39, 0.3));
}

/* ── Bee flight trail (faint dashed line from hub to task) ── */
.bee-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.bee-trail path {
  fill: none;
  stroke: rgba(21, 184, 166, 0.12);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  stroke-linecap: round;
  transition: opacity 0.8s ease;
}

/* ── Bee Tooltip ── */
.bee-tooltip {
  position: absolute;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(21, 184, 166, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.04);
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 10;
}
.bee-tooltip.visible {
  opacity: 1;
}
.bee-tooltip::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 7px;
  vertical-align: middle;
  animation: tooltipPulse 1.5s ease-in-out infinite;
}
@keyframes tooltipPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ── Target Audience ── */
.audience {
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.audience h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
}
.audience-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
}
.audience-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  width: 100%;
}
.bullet-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bullet-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullet-icon--yellow {
  background: rgba(255, 201, 39, 0.13);
}
.bullet-icon--teal {
  background: rgba(21, 184, 166, 0.13);
}
.bullet-text {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
}

/* ── Digital Clone (dark) ── */
.clone {
  padding: 80px 120px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.clone h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 800px;
}
.clone-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 700px;
}
.clone-highlight {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
}
.clone-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
}
.clone-detail {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-tertiary);
  max-width: 650px;
}
.clone-ds-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-secondary);
}
.ds-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.ds-card {
  width: 210px;
  padding: 20px;
  border-radius: 12px;
  background: var(--dark-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.ds-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.ds-card-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-tertiary);
}

/* ── The Deal ── */
.deal {
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.deal h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  max-width: 700px;
}
.deal-cards {
  display: flex;
  gap: 24px;
}
.deal-card {
  width: 370px;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.deal-card--neutral {
  background: #f9fafb;
  border: 1px solid var(--border);
}
.deal-card--teal {
  background: var(--primary-light);
  border: 1px solid rgba(21, 184, 166, 0.25);
}
.deal-card--yellow {
  background: #fffbeb;
  border: 1px solid rgba(255, 201, 39, 0.25);
}
.deal-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.deal-card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── How It Works ── */
.how {
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.how h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  max-width: 800px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  width: 100%;
}
.step-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.step-num--teal {
  background: var(--primary);
}
.step-num--yellow {
  background: var(--secondary);
  color: var(--text);
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.step-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── Who This Is For (dark) ── */
.who {
  padding: 80px 120px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.who h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 700px;
}
.who-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 600px;
}
.who-checks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  width: 100%;
  text-align: left;
}
.check-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-text {
  font-size: 16px;
  line-height: 1.5;
  color: #e5e7eb;
}

/* ── Team ── */
.team {
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.team h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  max-width: 700px;
}
.team-grid {
  display: flex;
  gap: 32px;
}
.team-card {
  width: 520px;
  padding: 40px;
  border-radius: 20px;
  background: #f9fafb;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.team-role {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}
.team-role--teal {
  background: rgba(21, 184, 166, 0.08);
  color: var(--primary);
}
.team-role--yellow {
  background: rgba(255, 201, 39, 0.08);
  color: var(--secondary-dark);
}
.team-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.team-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.team-close {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
}

/* ── Guarantees ── */
.guarantees {
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.guarantees h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  max-width: 600px;
}
.guarantees-sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
  text-align: center;
  max-width: 500px;
}
.guar-cards {
  display: flex;
  gap: 32px;
}
.guar-card {
  width: 520px;
  padding: 36px;
  border-radius: 20px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guar-card--teal {
  border: 2px solid rgba(21, 184, 166, 0.25);
}
.guar-card--yellow {
  border: 2px solid rgba(255, 201, 39, 0.25);
}
.guar-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.guar-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Bonuses ── */
.bonuses {
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.bonuses h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
}
.bonuses-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  max-width: 650px;
}
.bonus-cards {
  display: flex;
  gap: 32px;
}
.bonus-card {
  width: 520px;
  padding: 36px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bonus-card--teal {
  background: var(--primary-light);
}
.bonus-card--yellow {
  background: #fffbeb;
}
.bonus-val {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
}
.bonus-val--teal {
  background: rgba(21, 184, 166, 0.13);
  color: var(--primary);
}
.bonus-val--yellow {
  background: rgba(255, 201, 39, 0.13);
  color: var(--secondary-dark);
}
.bonus-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.bonus-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Final CTA (dark) ── */
.final-cta {
  padding: 80px 120px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.final-cta h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 700px;
}
.final-cta-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 600px;
}
.final-cta-note {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
}

/* ── Footer ── */
.footer {
  padding: 40px 120px;
  background: var(--dark-deeper);
  border-top: 1px solid var(--dark-surface);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.footer-logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-divider {
  height: 1px;
  background: var(--dark-surface);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active {
  display: flex;
}
.modal {
  background: var(--surface);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  animation: modalSlideIn 0.25s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close:hover {
  color: var(--text);
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-align: center;
}
.modal-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}
.modal-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-form input[type="text"],
.modal-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 16px;
  font-family: var(--font);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 184, 166, 0.15);
}
.turnstile-wrapper {
  display: flex;
  justify-content: center;
}
.turnstile-wrapper:not(:empty) {
  margin-bottom: 20px;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.privacy-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.privacy-check label {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.privacy-check label a {
  color: var(--primary);
  text-decoration: none;
}
.privacy-check label a:hover {
  text-decoration: underline;
}
.modal-submit {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 16px;
  padding: 14px 24px;
}
.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.modal-submit:disabled:hover {
  transform: none;
}
.modal-submit .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.form-error.visible {
  display: block;
}
body.modal-open {
  overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero {
    padding: 48px 40px 60px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-animation {
    height: 360px;
  }
  .deal-cards,
  .guar-cards,
  .bonus-cards,
  .team-grid {
    flex-direction: column;
    align-items: center;
  }
  .deal-card,
  .guar-card,
  .bonus-card,
  .team-card {
    width: 100%;
    max-width: 520px;
  }
  .deal-cards {
    align-items: stretch;
  }
  .deal-card {
    width: 100%;
  }
  .audience,
  .clone,
  .deal,
  .how,
  .who,
  .team,
  .guarantees,
  .bonuses,
  .final-cta {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .modal {
    padding: 32px 20px 28px;
  }
  .modal h2 {
    font-size: 22px;
  }
  .modal-overlay {
    padding: 16px;
  }
  .header {
    padding: 16px 24px;
  }
  .header-nav {
    display: none;
  }
  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  .mobile-toggle {
    display: block;
  }
  .hero {
    padding: 40px 24px 48px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-subline {
    font-size: 18px;
  }
  .hero-animation {
    height: 300px;
  }
  .hive-hub {
    width: 260px;
    height: 260px;
  }
  .hive-nest {
    width: 240px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .urgency-banner {
    padding: 12px 16px;
  }
  .urgency-text {
    font-size: 11px;
  }
  .audience,
  .clone,
  .deal,
  .how,
  .who,
  .team,
  .guarantees,
  .bonuses,
  .final-cta {
    padding: 48px 24px;
  }
  .audience h2,
  .clone h2,
  .deal h2,
  .how h2,
  .who h2,
  .team h2,
  .guarantees h2,
  .final-cta h2 {
    font-size: 30px;
  }
  .bonuses h2 {
    font-size: 28px;
  }
  .ds-grid {
    flex-wrap: wrap;
    gap: 12px;
  }
  .ds-card {
    width: calc(50% - 6px);
  }
  .step-card {
    flex-direction: column;
    gap: 16px;
  }
  .footer {
    padding: 32px 24px;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 32px 20px 40px;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero-subline {
    font-size: 15px;
  }
  .hero-animation {
    height: 200px;
  }
  .hive-hub {
    width: 200px;
    height: 200px;
  }
  .hive-nest {
    width: 180px;
  }
  .bee {
    width: 32px;
    height: 32px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .audience,
  .clone,
  .deal,
  .how,
  .who,
  .team,
  .guarantees,
  .bonuses,
  .final-cta {
    padding: 40px 20px;
  }
  .ds-card {
    width: 100%;
  }
  .btn-primary {
    padding: 16px 32px;
    font-size: 15px;
  }
  .btn-primary--lg {
    padding: 16px 32px;
  }
  .final-cta h2 {
    font-size: 26px;
  }
  .footer {
    padding: 28px 20px;
  }
}
