/* ============================================================
   EZ Cash Plan – Premium Design System
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ── Design Tokens ── */
:root {
  --gold: #f5c518;
  --gold-dark: #c9a014;
  --gold-light: #fce083;
  --green: #1aaa3d;
  --green-dark: #137a2c;
  --green-light: #22c94e;
  --red: #d72b2b;
  --dark: #0d0f12;
  --dark2: #141720;
  --dark3: #1b1f2b;
  --card-bg: #191d28;
  --border: rgba(255, 255, 255, 0.07);
  --white: #ffffff;
  --text: #e8eaf0;
  --text-muted: #8b90a0;
  --gold-border: rgba(245, 197, 24, 0.25);
  --section-alt: #161a24;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

/* ── Coach Section ── */
.bg-dark2 {
  background: var(--dark2);
}

.coach-img-wrap {
  position: relative;
  padding: 20px;
}

.coach-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold-border);
}

.coach-photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s;
}

.coach-frame:hover .coach-photo {
  transform: scale(1.03);
}

.coach-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.coach-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
}

.coach-exp-pill {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.3);
  z-index: 2;
}

.coach-feat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.coach-feat i {
  font-size: 1.1rem;
}

/* ── Pull Quote ── */
/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 52px;
  height: 52px;
  border: 4px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: none;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Announcement Ticker ── */
.announcement-bar {
  background: var(--red);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 1040;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  padding: 0 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-item a {
  color: var(--gold-light);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.5rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Navbar ── */
#mainNav {
  padding: 1rem 0;
  background: transparent;
  transition: all 0.4s ease;
}

/* Mobile Menu Expanded - Add background when translucent menu is open */
@media (max-width: 991px) {
  #mainNav .navbar-collapse.show,
  #mainNav .navbar-collapse.collapsing {
    background: var(--dark3);
    margin-top: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--gold-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }
}

#mainNav.scrolled {
  background: rgba(13, 15, 18, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.5rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--gold-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  line-height: 1;
  color: var(--white) !important;
  padding: 0;
}

.navbar-logo {
  height: 48px;
  width: auto;
  /* Removed mix-blend-mode: multiply as it causes disappearance on scroll in dark mode */
  filter: brightness(1.1);
  transition: all 0.3s ease;
}

#mainNav.scrolled .navbar-logo {
  height: 42px; /* Scale down slightly on scroll for elegance */
}

/* fallback: light pill if mix-blend-mode not supported */
@supports not (mix-blend-mode: multiply) {
  .navbar-logo {
    background: white;
    border-radius: 6px;
    padding: 3px 6px;
  }
}

/* .navbar-brand:hover .navbar-logo { opacity: 0.88; } */
/* keep old text brand elements hidden (not used but kept for safety) */
.brand-top {
  display: none;
}

.brand-sub {
  display: none;
}

.navbar-toggler {
  border-color: var(--gold-border);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245,197,24,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text) !important;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.3s, right 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 0.8rem;
  right: 0.8rem;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0f12 !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 197, 24, 0.35);
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #0d0f12 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.3);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white) !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 170, 61, 0.4);
}

/* ── Section Utilities ── */
.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-pad-lg {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.divider-line {
  width: 60px;
  height: 3px;
  margin: 1.2rem auto 0;
  background: linear-gradient(90deg, var(--gold), var(--green));
  border-radius: 2px;
}

.divider-line.left {
  margin-left: 0;
}

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(155deg, #0d1118 0%, #111827 40%, #0a1a0f 100%);
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-green {
  position: absolute;
  bottom: 5%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 170, 61, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero-headline .gold {
  color: var(--gold);
}

.hero-headline .green {
  color: var(--green-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-proof-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.hero-proof-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right card panel */
.hero-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
}

.hero-info-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.hero-info-card.gold-card {
  border-color: rgba(245, 197, 24, 0.3);
  background: rgba(245, 197, 24, 0.06);
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.icon-gold {
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
}

.icon-green {
  background: rgba(26, 170, 61, 0.15);
  color: var(--green-light);
}

.icon-red {
  background: rgba(215, 43, 43, 0.15);
  color: var(--red);
}

.hero-card-val {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-card-val span {
  color: var(--gold);
}

.hero-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Update Alert Strip ── */
.update-section {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.update-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem;
}

.update-card.highlight {
  border-color: rgba(245, 197, 24, 0.3);
  background: rgba(245, 197, 24, 0.04);
}

.update-date-badge {
  display: inline-block;
  background: var(--gold);
  color: #0d0f12;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ── Value Prop Cards ── */
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

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

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.4rem;
}

.value-icon-gold {
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 197, 24, 0.2);
}

.value-icon-green {
  background: rgba(26, 170, 61, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(26, 170, 61, 0.2);
}

.value-icon-red {
  background: rgba(215, 43, 43, 0.1);
  color: var(--red);
  border: 1px solid rgba(215, 43, 43, 0.2);
}

.value-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.value-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Stats Row ── */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.4rem;
}

/* ── How It Works ── */
.how-section {
  background: var(--dark3);
}

.steps-wrapper {
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--gold));
}

@media (max-width: 767px) {
  .steps-wrapper::before {
    display: none;
  }
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.4rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0f12;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.3);
}

.step-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Story Section ── */
.story-section {
  background: var(--dark2);
  overflow: hidden;
}

.story-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.story-img-wrap img {
  width: 100%;
  object-fit: cover;
  height: 520px;
}

.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(13, 15, 18, 0.9);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1rem 1.4rem;
}

.story-badge .num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.story-badge .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(245, 197, 24, 0.05);
  border-radius: 0 12px 12px 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--text);
  margin: 0;
}

.pull-quote cite {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.5rem;
}

/* ── The System ── */
.system-section {
  background: var(--dark);
}

.system-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.3s;
}

.system-card:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
}

.system-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(245, 197, 24, 0.15);
  line-height: 1;
  min-width: 48px;
}

.system-card-content h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.system-card-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Income Numbers ── */
.income-section {
  background: linear-gradient(135deg, var(--dark2), var(--section-alt));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.income-big {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 0 60px rgba(245, 197, 24, 0.3);
}

.income-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}

/* ── Kit Section ── */
.kit-section {
  background: var(--dark3);
}

.kit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  height: 100%;
  transition: all 0.3s;
}

.kit-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.kit-num-badge {
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0f12;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kit-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.kit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.kit-value-badge {
  display: inline-block;
  background: rgba(26, 170, 61, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(26, 170, 61, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.4rem;
}

/* ── Transparency / Disclaimer ── */
.disclaimer-section {
  background: var(--dark2);
}

.disclaimer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(245, 197, 24, 0.15);
  border-radius: 24px;
  padding: 3rem;
}

.disclaimer-card blockquote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

/* ── CTA / Order Section ── */
.order-section {
  background: linear-gradient(135deg, #050709, #0f1a0d);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08), transparent 70%);
}

.order-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 170, 61, 0.07), transparent 70%);
}

.order-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.yes-declaration {
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
}

.yes-declaration p {
  color: var(--text);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.8;
}

/* Payment method pills */
.payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.payment-pill:hover {
  border-color: var(--gold-border);
  color: var(--text);
}

.payment-pill i {
  color: var(--gold);
}

/* ── Form Styling ── */
.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12) !important;
  outline: none !important;
}

.form-control option,
.form-select option {
  background: var(--dark2);
}

.form-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(160deg, #0d1118, #131a2b);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--dark));
}

/* ── About Page ── */
.about-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.exp-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0f12;
  border-radius: 14px;
  padding: 1rem 1.4rem;
  text-align: center;
}

.exp-badge .big {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.exp-badge .sm {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--green));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.timeline-item h6 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.story-quote-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.story-quote-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
}

/* ── Gallery Page ── */
.gallery-grid {
  columns: 3;
  gap: 1rem;
}

@media (max-width: 991px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    columns: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 18, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--gold);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--gold);
  color: #0d0f12;
  border-color: var(--gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--gold);
}

/* ── Video Page ── */
.video-embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold-border);
  aspect-ratio: 16/9;
}

.video-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--card-bg);
  border: 2px dashed var(--gold-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.video-placeholder i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

/* ── Contact Page ── */
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0f12;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.contact-card h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
}

.contact-card .small,
.contact-card p.small {
  color: var(--text-muted);
}

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.4rem;
}

/* ── Footer ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── Utility classes ── */
.text-gold {
  color: var(--gold) !important;
}

.text-green {
  color: var(--green-light) !important;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

.bg-card {
  background: var(--card-bg);
}

.border-gold {
  border-color: var(--gold-border) !important;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-section {
    padding: 110px 0 70px;
    min-height: auto;
  }

  .section-pad {
    padding: 70px 0;
  }

  .steps-wrapper::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 55px 0;
  }

  .hero-proof-row {
    gap: 1.5rem;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .disclaimer-card {
    padding: 1.8rem;
  }
}