:root {
  --black: #07060b;
  --dark: #0e0c16;
  --card: #15131e;
  --card2: #1e1b2a;
  --gold: #d4a843;
  --gold2: #f0c84e;
  --gold-dim: #8b6a28;
  --white: #f6f1e8;
  --muted: #7e788a;
  --r: 14px;
  /* Font Families */
  --font-titles: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.panel {
  scroll-margin-top: 80px;
}

body {
  background: var(--black);
  color: var(--white);
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.hero-name,
h1,
h2,
h3 {
  font-family: var(--font-titles);
  letter-spacing: 1px;
}

/* HERO CONTAINER */
.hero-wrapper {
  min-height: 40vh;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(201, 168, 76, 0.05) 0%,
      transparent 40%
    ),
    var(--black);
  padding: 100px 0;
  position: relative;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

/* DETTAGLI TESTI */
.hero-tag {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  /* display: flex; */
  align-items: center;
  gap: 15px;
}

.hero-name {
  font-size: 100px;
  letter-spacing: 2px;
  line-height: 0.95;
}

/* Effetto Outline sul cognome */
.text-outline {
  color: transparent !important;
  -webkit-text-stroke: 1px var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.1em;
  /* max-width: 600px; */
}

/* BADGES E CREDENZIALI */
.hs-badge {
  color: var(--gold);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hs-cred {
  width: 220px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 18px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
}

.hs-cred-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.text-gold {
  color: var(--gold);
}

.hs-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

/* BOTTONE CTA PREMIUM */
.hero-cta-main {
  padding: 22px 65px;
  background: var(--gold);
  color: var(--black) !important;
  border: none;
  border-radius: var(--r);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.hero-cta-main:hover {
  background: var(--gold2);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(201, 168, 76, 0.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-tag {
    font-size: 8px;
  }

  .hero-sub {
    font-size: 11px;
  }

  .hero-wrapper {
    padding: 60px 0;
    text-align: center;
  }

  .hero-tag {
    justify-content: center;
  }

  .hero-name {
    font-size: 60px;
  }
}

/* NAVBAR */

/* Container principale della Navbar */
.nav-wrap {
  background: var(--black);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0;
  z-index: 1050;
  transition: box-shadow 0.3s ease;
}

/* Stile dei link */
.nav-link {
  position: relative;
  padding: 18px 20px !important;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted) !important;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

/* Creazione della linea animata sotto il testo */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--gold);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

/* Effetto Hover: la linea si espande dal centro */
/* Stato Active: la linea resta visibile */
.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Cambiamento colore al passaggio */
.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

/* --- HAMBURGER ANIMATION --- */
.custom-toggler {
  border: none !important;
  padding: 15px;
  outline: none !important;
  box-shadow: none !important;
}

.hamburger-icon {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Trasformazione in X quando cliccato */
.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .hamburger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 991px) {
  .navbar-collapse {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--black);
    border-radius: 0 0 20px 20px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-wrap:has(.custom-toggler:not(.collapsed)) {
    border-bottom: none;
  }

  .navbar-collapse {
    background: rgba(15, 15, 15, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
  }

  .nav-link {
    font-size: 15px;
    justify-content: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.05);
  }
}

/* CONTENT */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

/* SECTION TITLES */
.sec-eye {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sec-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.sec-title .accent {
  color: var(--gold);
}

.sec-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* CARDS */
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r);
  padding: 24px;
}

.card-gold {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

/* GRIDS */
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mb16 {
  margin-bottom: 16px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb32 {
  margin-bottom: 32px;
}

.mb40 {
  margin-bottom: 40px;
}

/* DIVIDER */
hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 20px 0;
}

/* BADGE / CHIP */
.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip-gold {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.chip-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.chip-green {
  background: rgba(134, 239, 172, 0.12);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.25);
}

.chip-red {
  background: rgba(252, 165, 165, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(252, 165, 165, 0.25);
}

/* PRICE TAG */
.price-big {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-save {
  font-size: 13px;
  font-weight: 700;
  color: #86efac;
}

/* SERVICE CARDS */
.svc-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r);
  padding: 28px;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.03);
}

.svc-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.svc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

/* COACHING */

/* INTERACTIVE SLOTS BAR */
.slots-box {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.07),
    rgba(201, 168, 76, 0.02)
  );
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r);
  padding: 24px 28px;
  transition:
    border-color 0.4s ease,
    transform 0.2s ease;
}

.slots-box:active {
  transform: scale(0.98);
  /* Feedback al click su mobile */
}

.slots-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  animation: pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

@keyframes flash-red {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.8);
    box-shadow: 0 0 25px rgba(248, 113, 113, 0.8);
  }

  100% {
    filter: brightness(1);
  }
}

.flash-effect {
  animation: flash-red 0.6s ease-out;
}

#slots-hover-hint {
  display: inline-block;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Effetto rimbalzo */
}

#slots-hover-hint.visible {
  opacity: 1 !important;
  transform: translateY(0);
}

.slots-track {
  width: 100%;
  height: 14px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slots-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #f87171 0%, #fb923c 60%, var(--gold) 100%);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.slots-dots {
  display: flex;
  gap: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  align-items: center;
  justify-content: space-around;
  padding: 0 2px;
  pointer-events: none;
}

.sdot {
  width: 2px;
  height: 8px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 1px;
}

/* COACHING CARDS */
.coaching-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.coaching-card.featured {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(201, 168, 76, 0.02) 100%
  );
  border-color: rgba(201, 168, 76, 0.4);
}

.coaching-card .popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}

.coaching-month {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.coaching-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.coaching-price span {
  font-size: 32px;
  color: var(--muted);
}

.coaching-monthly {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

.coaching-monthly strong {
  color: var(--gold);
}

.coaching-list {
  list-style: none;
  margin-bottom: 24px;
}

.coaching-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.coaching-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cta-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 99px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.cta-primary {
  background: var(--gold);
  color: #000;
}

.cta-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.cta-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.cta-outline:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* LEZIONI TABLE */
.lesson-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--card2);
  transition: all 0.2s;
}

.lesson-row:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: rgba(201, 168, 76, 0.2);
}

.lesson-row.best {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.lr-name {
  font-weight: 700;
  font-size: 15px;
}

.lr-per {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.lr-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: var(--gold);
}

.lr-save {
  font-size: 11px;
  color: #86efac;
  font-weight: 700;
  text-align: right;
  margin-top: 2px;
}

/* BUNDLE SECTION */
.bundle-selector {
  margin-bottom: 32px;
}

.bundle-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btab {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--card2);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}

.btab.active,
.btab:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bundle-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}

.bundle-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
}

.bundle-card.top-pick {
  border-color: rgba(201, 168, 76, 0.5);
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.07),
    rgba(201, 168, 76, 0.02)
  );
}

.bundle-card.top-pick::after {
  content: "🔥 TOP PICK";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.bc-label {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bc-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.bc-breakdown {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
  line-height: 1.7;
}

.bc-total {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.bc-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.bc-save {
  font-size: 12px;
  color: #86efac;
  font-weight: 700;
  margin-bottom: 16px;
}

.bc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

/* FILOSOFIA */
.phil-block {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r);
  margin-bottom: 16px;
  align-items: flex-start;
}

.phil-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  margin-top: 4px;
}

.phil-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}

.phil-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* CONTACTS */
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  margin-bottom: 12px;
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

/* TESTIMONIAL STYLE */
.quote-block {
  background: var(--card2);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 16px;
}

.quote-text {
  font-size: 15px;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}

.quote-author {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}

/* URGENCY BAR */
.urgency {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.06)
  );
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r);
  padding: 16px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.urgency-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.urgency-text {
  font-size: 13px;
  color: var(--white);
  line-height: 1.5;
}

.urgency-text strong {
  color: var(--gold);
}

.spots-counter {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.spot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.spot.taken {
  background: rgba(255, 255, 255, 0.1);
}

/* EMOTION HOOK */
.hook {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    rgba(201, 168, 76, 0.04) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--r);
  padding: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.hook-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hook-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* CHECKLIST */
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.check-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-dot svg {
  width: 10px;
  height: 10px;
}

.check-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.check-text strong {
  color: var(--white);
}

/* BUNDLE DISPLAY */
.bundle-panel {
  display: none;
}

.bundle-panel.show {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* Animation initial states — Motion brings these to opacity:1 on load/tab switch */
.hero-tag,
.hero-name,
.hero-sub,
.hs-cred,
.hero-cta-main {
  opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }

  .bundle-grid,
  .bundle-panel.show {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 24px 16px 60px;
  }

  .coaching-price {
    font-size: 56px;
  }
}
