/*
Theme Name: Insurance Tips Pro
Theme URI: https://insurancetipspro.com
Author: Insurance Tips Pro
Author URI: https://insurancetipspro.com
Description: Modern premium dark insurance landing page theme with navy, electric blue, and gold accents.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: insurance-tips-pro
Tags: landing-page, dark, responsive, one-page
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --navy:          #0A0F1E;
  --navy-light:    #0D1426;
  --navy-mid:      #111829;
  --navy-card:     #0F1830;
  --blue:          #CC9900;
  --blue-light:    #E6B800;
  --blue-dark:     #A07800;
  --blue-glow:     rgba(204, 153, 0, 0.25);
  --gold:          #CC9900;
  --gold-light:    #E6B800;
  --gold-dark:     #A07800;
  --gold-glow:     rgba(204, 153, 0, 0.3);
  --white:         #FFFFFF;
  --text-primary:  #F1F5F9;
  --text-secondary:#94A3B8;
  --text-muted:    #64748B;
  --success:       #10B981;
  --border:        rgba(204, 153, 0, 0.15);
  --border-gold:   rgba(204, 153, 0, 0.25);

  --font:          'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-blue:   0 0 40px rgba(204, 153, 0, 0.3);
  --shadow-gold:   0 0 30px rgba(204, 153, 0, 0.35);
  --shadow-card:   0 4px 30px rgba(0, 0, 0, 0.4);

  --transition:    0.3s ease;
  --max-width:     1100px;
  --header-h:      72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #0A0F1E;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 20px var(--blue-glow);
}
.btn-primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: #0A0F1E;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204, 153, 0, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(148, 163, 184, 0.35);
}
.btn-secondary:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #0A0F1E;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(204,153,0,0.5);
}

.btn-lg  { padding: 17px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 44px; font-size: 1.15rem; font-weight: 700; }
.btn-full { width: 100%; }

/* Pulse animation for primary CTA */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(204,153,0,0.6); }
  70%  { box-shadow: 0 0 0 18px rgba(204,153,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,153,0,0); }
}
.btn-pulse { animation: pulse-ring 2.2s infinite; }

@keyframes pulse-gold {
  0%   { box-shadow: 0 0 0 0 rgba(204,153,0,0.7); }
  70%  { box-shadow: 0 0 0 20px rgba(204,153,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,153,0,0); }
}
.btn-pulse-gold { animation: pulse-gold 2s infinite; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  background: rgba(204,153,0,0.12);
  border: 1px solid rgba(204,153,0,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-headline em {
  font-style: normal;
  color: var(--gold);
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
#top-bar {
  width: 100%;
  background: var(--blue);
  color: #0A0F1E;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  z-index: 1100;
}

#top-bar strong {
  font-weight: 900;
}

/* ============================================================
   STICKY HEADER — hidden on landing page
   ============================================================ */
#site-header { display: none; }
.mobile-nav  { display: none !important; }

/* Remove the top padding the hero used to reserve for the header */
#hero { padding-top: 80px; }

/* Keep the rule block below so it compiles cleanly */
#site-header-unused {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: transparent;
}

#site-header.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.site-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  flex-shrink: 0;
}
.site-logo sup {
  font-size: 0.55em;
  color: var(--gold);
  vertical-align: super;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  color: var(--text-secondary);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.header-phone strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.header-phone:hover strong { color: var(--blue-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: rgba(10,15,30,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;

  /* Background image — falls back to navy if image missing */
  background-color: var(--navy);
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

/* Dark overlay: flat black base + vignette edges */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  pointer-events: none;
  z-index: 1;
}

/* Subtle blue glow in the upper-centre — keeps the brand accent alive */
#hero::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(204, 153, 0, 0.14) 0%,
    rgba(204, 153, 0, 0.04) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(204,153,0,0.15), rgba(204,153,0,0.06));
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-headline em {
  font-style: normal;
  color: var(--blue-light);
  display: block;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.hero-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.hero-rating strong {
  color: var(--white);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SOCIAL PROOF TICKER
   ============================================================ */
#ticker {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
  gap: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0 36px;
  white-space: nowrap;
}

.ticker-item::after {
  content: '•';
  color: var(--blue);
  margin-left: 36px;
  opacity: 0.6;
}

.ticker-item:last-child::after { display: none; }

.ticker-highlight {
  color: var(--gold);
  font-weight: 700;
}

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  padding: 100px 0;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,153,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hiw-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  width: calc(66.66% - 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--blue) 100%);
  opacity: 0.35;
}

.step-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-item:hover {
  border-color: rgba(204,153,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0F1E;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
#benefits {
  padding: 100px 0;
  background: var(--navy);
}

.benefits-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.benefit-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(204,153,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: rgba(204,153,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), var(--shadow-blue);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(204,153,0,0.2), rgba(204,153,0,0.08));
  border: 1px solid rgba(204,153,0,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 100px 0;
  background: var(--navy-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(204,153,0,0.12);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: rgba(204,153,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 2px 12px var(--blue-glow);
}

.testimonial-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.saving-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.06));
  border: 1px solid rgba(16,185,129,0.3);
  color: #34D399;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   URGENCY / OFFER SECTION
   ============================================================ */
#offer {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#offer::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(204,153,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,153,0,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
}

/* Countdown */
.countdown-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,15,30,0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  margin-bottom: 40px;
  box-shadow: 0 0 40px rgba(204,153,0,0.15);
}

.countdown-block {
  text-align: center;
  min-width: 70px;
}

.countdown-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  transition: transform 0.12s ease;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

.countdown-colon {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-dark);
  opacity: 0.6;
  align-self: flex-start;
  margin-top: 4px;
}

/* Offer image */
.offer-image {
  margin: 0 auto 32px;
  max-width: 500px;
  text-align: center;
}
.offer-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.15);
}

/* Price block */
.price-block {
  margin-bottom: 32px;
}

.price-was {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-now {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.scarcity-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.offer-bullets {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  margin: 0 auto 36px;
}

.offer-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.offer-bullets .ck {
  width: 22px;
  height: 22px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #34D399;
  flex-shrink: 0;
}

.offer-cta-wrap {
  max-width: 440px;
  margin: 0 auto;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
  padding: 100px 0;
  background: var(--navy-light);
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(204,153,0,0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: transparent;
  transition: color var(--transition);
  cursor: pointer;
}

.faq-question:hover { color: var(--blue-light); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(204,153,0,0.1);
  border: 1px solid rgba(204,153,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ============================================================
   REFERRAL / AFFILIATE SECTION
   ============================================================ */
#referral {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.referral-header {
  text-align: center;
  margin-bottom: 52px;
}

.referral-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.65;
}

.referral-sub strong {
  color: var(--gold);
  font-weight: 800;
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.referral-step {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}

.referral-step:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.referral-cta {
  text-align: center;
  margin-bottom: 28px;
}

.referral-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.referral-stats span { padding: 0 6px; }

.referral-stats-dot {
  color: var(--gold);
  opacity: 0.5;
}

@media (max-width: 640px) {
  .referral-steps { grid-template-columns: 1fr; }
  #referral { padding: 70px 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #060A14;
  border-top: 1px solid var(--border);
  padding: 52px 24px 36px;
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo sup {
  font-size: 0.55em;
  color: var(--gold);
  vertical-align: super;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin-bottom: 22px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 2px 8px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue-light); }

.footer-links-divider {
  color: var(--text-muted);
  opacity: 0.4;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .header-phone { display: none; }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .steps-wrapper::before { display: none; }

  .hero-headline { font-size: clamp(2rem, 6vw, 3rem); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .hamburger { display: flex; }
  .header-right .btn { display: none; }
  .header-right .header-phone { display: none; }

  .mobile-nav { display: none; }
  .mobile-nav.open { display: flex; }

  #hero { padding: 100px 20px 60px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .countdown-wrapper { padding: 20px 20px; gap: 4px; }
  .countdown-block { min-width: 56px; }

  #how-it-works,
  #benefits,
  #testimonials,
  #offer,
  #faq { padding: 70px 0; }

  .offer-cta-wrap .btn-xl { font-size: 1rem; padding: 18px 24px; }
}


/* ============================================================
   PAGE TEMPLATE — Standard WordPress Pages
   ============================================================ */
.page-content {
  background: var(--navy);
  color: var(--text-secondary);
  min-height: 80vh;
  padding: 120px 20px 60px;
}

.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-title {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  text-align: center;
}

.page-content p {
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--blue);
  text-decoration: none;
}

.page-content a:hover {
  color: var(--blue-light);
}

/* ============================================================
   WOOCOMMERCE — GLOBAL
   ============================================================ */
.woocommerce,
.woocommerce-page,
body.woocommerce-page,
body.single-product {
  background: var(--navy);
  color: var(--text-secondary);
}

.woocommerce .woocommerce-breadcrumb {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  padding: 16px 0;
  margin-bottom: 0;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--blue) !important;
  text-decoration: none !important;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--blue-light) !important;
}

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
   ============================================================ */
.woocommerce div.product {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Product image gallery */
.woocommerce div.product div.images {
  background: var(--navy-light) !important;
  border: 1px solid var(--border) !important;
  border-radius: 16px !important;
  overflow: hidden;
  padding: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.woocommerce div.product div.images .onsale,
.woocommerce span.onsale {
  background: var(--blue) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  top: 16px !important;
  left: 16px !important;
  line-height: 1.4 !important;
  min-height: auto !important;
  min-width: auto !important;
}

/* Product summary */
.woocommerce div.product .summary {
  color: var(--text-secondary);
}

.woocommerce div.product .product_title {
  color: var(--white) !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Price */
.woocommerce div.product .price {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.woocommerce div.product .price del {
  color: var(--text-muted) !important;
  opacity: 0.7;
  font-size: 1.1rem !important;
}

.woocommerce div.product .price ins {
  color: var(--blue) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  font-size: 1.8rem !important;
}

.woocommerce div.product .price .woocommerce-Price-amount {
  font-weight: 700;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.woocommerce div.product .woocommerce-product-details__short-description p {
  margin-bottom: 12px;
}

/* Add to cart button */
.woocommerce div.product form.cart {
  margin-bottom: 24px;
}

.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--blue) !important;
  color: var(--navy) !important;
  border: none;
  border-radius: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: none;
  line-height: 1.4;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--blue-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(204, 153, 0, 0.3);
}

/* Quantity input */
.woocommerce div.product form.cart .quantity input,
.woocommerce .quantity .qty {
  background: var(--navy-light) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 10px !important;
  font-size: 1rem !important;
  width: 70px;
}

/* Product meta (category, tags) */
.woocommerce div.product .product_meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.woocommerce div.product .product_meta a {
  color: var(--blue);
  text-decoration: none;
}
.woocommerce div.product .product_meta a:hover {
  color: var(--blue-light);
}

/* ============================================================
   WOOCOMMERCE — PRODUCT TABS
   ============================================================ */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 48px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 30px !important;
  list-style: none !important;
  display: flex !important;
  gap: 0;
  border-bottom: 2px solid var(--border) !important;
  background: transparent !important;
  overflow: visible !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--text-muted) !important;
  background: transparent !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 14px 24px !important;
  display: block;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -2px;
  text-decoration: none !important;
  transition: all 0.2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--blue) !important;
  border-bottom-color: var(--blue) !important;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  background: var(--navy-light) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 32px !important;
  color: var(--text-secondary) !important;
  line-height: 1.7;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ============================================================
   WOOCOMMERCE — REVIEWS
   ============================================================ */
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .meta {
  color: var(--text-muted);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text .description p {
  color: var(--text-secondary);
}

.woocommerce .star-rating span::before {
  color: var(--blue);
}

.woocommerce .star-rating::before {
  color: var(--border);
}

/* ============================================================
   WOOCOMMERCE — RELATED PRODUCTS
   ============================================================ */
.woocommerce div.product .related {
  margin-top: 48px;
}

.woocommerce div.product .related h2 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ============================================================
   WOOCOMMERCE — PRODUCT CARDS (SHOP / RELATED)
   ============================================================ */
.woocommerce ul.products li.product {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.woocommerce ul.products li.product img {
  border-radius: 0;
  margin-bottom: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 16px 4px;
}

.woocommerce ul.products li.product .price {
  color: var(--blue);
  padding: 0 16px 16px;
  font-weight: 700;
}

.woocommerce ul.products li.product .price del {
  color: var(--text-muted);
}

.woocommerce ul.products li.product .price ins {
  color: var(--blue);
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  margin: 0 16px 16px;
  border-radius: 8px;
}

/* ============================================================
   WOOCOMMERCE — CART & CHECKOUT
   ============================================================ */
.woocommerce table.shop_table {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce table.shop_table th {
  background: var(--navy-mid);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border-color: var(--border);
}

.woocommerce table.shop_table td {
  color: var(--text-secondary);
  border-color: var(--border);
}

.woocommerce table.shop_table td a {
  color: var(--white);
  text-decoration: none;
}

.woocommerce .cart-collaterals .cart_totals {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

/* Checkout form fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(204, 153, 0, 0.12);
  outline: none;
}

.woocommerce form .form-row label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Checkout order summary */
.woocommerce-checkout #payment {
  background: var(--navy-light) !important;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.woocommerce-checkout #payment ul.payment_methods {
  border-color: var(--border);
}

.woocommerce-checkout #payment div.payment_box {
  background: var(--navy-mid);
  color: var(--text-secondary);
}

/* ============================================================
   WOOCOMMERCE — NOTICES / MESSAGES
   ============================================================ */
.woocommerce-message {
  background: rgba(46, 160, 67, 0.1);
  border-top-color: #3fb950;
  color: #3fb950;
}

.woocommerce-error {
  background: rgba(248, 81, 73, 0.1);
  border-top-color: #f85149;
  color: #f85149;
}

.woocommerce-info {
  background: rgba(204, 153, 0, 0.1);
  border-top-color: var(--blue);
  color: var(--blue);
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  color: var(--blue);
}

.woocommerce-message::before {
  color: #3fb950;
}
.woocommerce-error::before {
  color: #f85149;
}
.woocommerce-info::before {
  color: var(--blue);
}

/* ============================================================
   WOOCOMMERCE — MY ACCOUNT
   ============================================================ */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--border);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(204, 153, 0, 0.08);
  color: var(--blue);
}

.woocommerce-account .woocommerce-MyAccount-content {
  color: var(--text-secondary);
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  color: var(--white);
}

/* ============================================================
   WOOCOMMERCE — RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .woocommerce div.product .product_title {
    font-size: 1.5rem;
  }
  .woocommerce div.product .price ins {
    font-size: 1.4rem;
  }
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .woocommerce div.product .woocommerce-tabs .panel {
    padding: 20px;
  }
}
