:root {
  --teal: #08424e;
  --gold: rgb(251 206 20);
  --gold-dark: #7a6507;
  --body-text: #2a2a2a;
  --muted: #555;
  --font: 'Roboto Condensed', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.75;
  color: var(--body-text);
  background: #fff;
  overflow-x: hidden;
}

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 2rem); }
h5 { font-size: clamp(1rem, 2vw, 2.2rem); }
p  { font-size: 1.5rem; line-height: 1.8; }
li { font-size: 1.5rem; line-height: 1.8; margin-bottom: 10px; }

/* --- Nav --- */
.navbar { background: #fff; border-bottom: 2px solid #e8e8e8; padding: 14px 0; }
.navbar-brand { font-size: 1.8rem; font-weight: 900; color: var(--teal) !important; text-decoration: none; }
.nav-link { font-weight: 700; font-size: 1rem; color: var(--teal) !important; padding: 8px 14px !important; }
.nav-link:hover { color: var(--gold) !important; }

/* --- Gold Button --- */
.btn-gold {
  background: var(--gold);
  color: #000;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .03em;
  padding: 13px 32px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-dark); color: #000; text-decoration: none; }
.btn-gold-lg { font-size: 1.3rem; padding: 16px 44px; }

/* --- Section Title (teal bg) --- */
.sec-title {
  background: var(--teal);
  padding: 44px 0;
  text-align: center;
}
.sec-title h2, .sec-title h3 {
  color: #fff;
  margin: 0;
}

/* --- White section default --- */
section.white { background: #fff; }
.section-pad { padding: 70px 0; }

/* --- Step numbers --- */
.step-num {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.step-circle {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
}

/* --- Pricing section --- */
.pricing-section { background: #fff; padding: 60px 0; }
.pricing-section img { max-width: 100%; display: block; }

/* --- Bonus cards --- */
.bonus-card {
  background: #f9f9f9;
  padding: 30px;
  margin-bottom: 24px;
}
.bonus-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .05em;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* --- Benefit list --- */
ul.benefit-list { padding: 0; list-style: none; }
ul.benefit-list li { padding-left: 28px; position: relative; }
ul.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.5rem;
}

/* --- FAQ accordion --- */
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--body-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-toggle:hover { color: var(--teal); }
.faq-arrow { flex-shrink: 0; transition: transform .25s; }
.faq-arrow.open { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 0 18px; }
.faq-body.open { display: block; }
.faq-body p { font-size: 1.05rem; color: var(--muted); margin: 0; }

/* --- Price display --- */
.price-old { text-decoration: line-through; color: #999; font-size: 1.2rem; }
.price-new { font-size: 2.4rem; font-weight: 900; color: var(--teal); }

/* --- footer --- */
footer { background: var(--teal); color: rgba(255,255,255,.75); padding: 40px 0; font-size: .9rem; text-align: center; }
footer a { color: rgba(255,255,255,.8); text-decoration: underline; }
footer a:hover { color: #fff; }

/* --- Sticky countdown bar --- */
.countdown-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.countdown-bar span.timer { color: var(--gold); font-size: 1.15rem; }

/* --- Exit popup --- */
.pop-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9998; }
.pop-overlay.show { display: block; }
.pop-box {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  z-index: 9999;
  width: 92%;
  max-width: 440px;
  padding: 36px 32px;
}
.pop-box.show { display: block; }
.pop-close {
  position: absolute; top: 12px; right: 16px;
  font-size: 1.6rem; font-weight: 900;
  background: none; border: none; cursor: pointer; color: #888;
  line-height: 1;
}

@media(max-width: 768px) {
  .section-pad { padding: 50px 0; }
  .sec-title { padding: 32px 0; }
}
