/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(14, 26, 18, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 26, 18, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 8px;
  padding: 14px 0 8px;
  list-style: none;
  min-width: 220px;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border: none;
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ─── MOBILE NAV ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(14, 26, 18, 0.97);
  backdrop-filter: blur(16px);
  padding: 80px 24px 28px;
  flex-direction: column;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 12px; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--dark);
  border-radius: 40px;
  padding: 14px 24px;
  font-size: 12px;
  border-bottom: none;
}
.mobile-menu .mobile-cta:hover { background: var(--gold-lt); color: var(--dark); }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 32px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.3);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }
.btn-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--forest);
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid rgba(201, 162, 39, 0.3);
  transition: all 0.25s;
}
.btn-section-cta:hover {
  background: var(--dark);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.25);
}

/* ─── TICKER ─── */
.ticker {
  background: var(--forest);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  animation: ticker 40s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 44px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.ticker-item span { color: var(--gold); font-size: 14px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION UTILITIES ─── */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-pad { padding: 96px 0; }
.section-pad-lg { padding: 120px 0; }
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.section-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-headline em { font-style: italic; color: var(--forest); }
.hairline { height: 1px; background: var(--border); }
.section-cta { text-align: center; padding-top: 56px; }

/* ─── INDUSTRY BADGES ─── */
.ind-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}
.ind-badge svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; flex-shrink: 0; }

/* ─── TRUST SIGNAL ROW ─── */
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}
.trust-dot { color: var(--gold); opacity: 0.6; font-size: 14px; line-height: 1; }

/* ─── STICKY CTA BAR ─── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 56px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
  flex-wrap: wrap;
}
.sticky-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-bar.dismissed { display: none; }
.sticky-bar a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.sticky-bar a:hover { opacity: 0.75; }
.sticky-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark);
  opacity: 0.5;
  padding: 4px 8px;
  transition: opacity 0.2s;
}
.sticky-bar-close:hover { opacity: 1; }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--forest); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--forest) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section .section-inner { position: relative; z-index: 1; }
.cta-section .section-label { justify-content: center; color: var(--gold-lt); }
.cta-section .section-label::before { display: none; }
.cta-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-headline em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 44px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.cta-note {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 24px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--hero-bg);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-brand:hover { opacity: 1; }
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.06em;
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── MODALS ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 20, 14, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream);
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 40px 32px;
  position: relative;
  border-top: 3px solid var(--gold);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--muted);
  line-height: 1;
}
.modal-close:hover { color: var(--dark); }
.modal-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.modal-box .modal-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.modal-box h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 20px 0 8px;
}
.modal-box p, .modal-box li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.modal-box ul { padding-left: 18px; margin-bottom: 8px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .nav-links, .nav-cta { display: none; }
  nav .nav-hamburger { display: flex; }
  nav a svg { width: 120px; height: auto; }

  .section-inner { padding: 0 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  footer { flex-direction: column; text-align: center; padding: 28px 24px; }
  .cta-actions { flex-direction: column; }
  .modal-box { padding: 28px 20px 24px; }

  .sticky-bar { font-size: 11px; padding: 12px 48px 12px 16px; gap: 8px; }
  .trust-row { font-size: 10px; gap: 8px; }
}
