@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa8c2c;
  --deep: #05070a;
  --deep2: #0b0f16;
  --deep3: #121822;
  --surface: #18202d;
  --surface2: #1e2838;
  --text: #f0f4f8;
  --text-muted: #9ba4b5;
  --accent: #4a75e6;
  --green: #38bdf8;
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }

em {
  font-style: normal;
  color: var(--gold);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

p {
  margin-bottom: 1rem;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--deep);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  text-align: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  transition: transform 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Mobile menu hidden by default */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(74, 117, 230, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-image {
  max-width: 100%;
  border-radius: var(--radius);
  margin-top: 3rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ── SECTIONS GENERIC ── */
.bg-deep2 { background: var(--deep2); }
.bg-deep3 { background: var(--deep3); }

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* ── CARDS & GRIDS ── */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform var(--transition), border-color var(--transition);
  height: 100%;
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.faq-icon {
  color: var(--gold);
  transition: transform 0.3s;
  font-size: 1.5rem;
}
.faq-a {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.active .faq-a { max-height: 500px; padding-top: 1rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.disclaimer { font-size: 0.8rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; line-height: 1.6; opacity: 0.7; }
.copyright { margin-top: 2rem; font-size: 0.85rem; color: var(--text-muted); }

/* ── CONVERSION ELEMENTS ── */
/* Sticky CTA */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(11, 15, 22, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-text { font-weight: 600; font-size: 1.1rem; }
.sticky-cta-text span { color: var(--gold); }

/* Exit Intent Popup */
.exit-intent-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-intent-overlay.active { opacity: 1; pointer-events: auto; }
.exit-intent-modal {
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.exit-intent-overlay.active .exit-intent-modal { transform: scale(1); }
.close-popup {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 2rem; cursor: pointer;
}
.close-popup:hover { color: var(--text); }

/* Floating CTA (Desktop only) */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: none;
}
@media (min-width: 1024px) {
  .floating-cta { display: block; }
  .sticky-cta-bar { display: none !important; }
}
.floating-cta .btn-primary {
  border-radius: 50px;
  padding: 1rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.4);
}

/* Countdown Timer */
.countdown-wrapper {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  display: inline-flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}
.time-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.trust-badge svg {
  fill: var(--gold);
  width: 24px;
  height: 24px;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.color-gold { color: var(--gold); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  
  .sticky-cta-bar {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
  }
  
  section { padding: 4rem 0; }
  
  .grid-2 { grid-template-columns: 1fr; }
  
  .btn-primary { width: 100%; }
}
