@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --navy: #0F172A;
  --charcoal: #1E293B;
  --slate: #334155;
  --gold: #CA8A04;
  --gold-light: #EAB308;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --border: #334155;
  --widget-bg: #1E293B;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 10px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--muted); }
ul, ol { margin: 0 0 1rem 1.25rem; color: var(--muted); }
.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-alt { background: var(--charcoal); }
.trust-bar {
  background: #020617;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.trust-bar strong { color: var(--gold-light); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--text); }
.logo span { color: var(--gold); }
.nav-desktop { display: flex; gap: 1.5rem; align-items: center; }
.nav-desktop a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--gold-light); }
.btn {
  display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.2s; text-align: center;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; }
.nav-mobile {
  display: none; position: fixed; top: 65px; left: 0; right: 0;
  background: var(--charcoal); border-bottom: 1px solid var(--border);
  padding: 1rem; flex-direction: column; gap: 0.75rem; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text); font-weight: 500; padding: 0.5rem 0; }
.page-offset { padding-top: 120px; }

.hero { padding: 8rem 0 5rem; position: relative; background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-badge {
  display: inline-block; background: rgba(202,138,4,0.15); color: var(--gold-light);
  padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1rem;
}
.hero-lead { font-size: 1.15rem; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; width: 100%; aspect-ratio: 4/3; border: 1px solid var(--border); }

.callout {
  background: var(--widget-bg); border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin: 2rem 0; font-size: 0.95rem;
}
.callout strong { color: var(--gold-light); display: block; margin-bottom: 0.25rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0; }
.stat-widget {
  background: var(--widget-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.stat-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold);
}
.stat-widget .num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-widget .label { font-size: 0.85rem; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.widget-card {
  background: var(--widget-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: border-color 0.2s;
}
.widget-card:hover { border-color: var(--gold); }
.widget-icon {
  width: 48px; height: 48px; background: rgba(202,138,4,0.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem;
}
.control-label {
  font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.5rem;
}

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img { border-radius: var(--radius); object-fit: cover; width: 100%; aspect-ratio: 16/10; border: 1px solid var(--border); }

.steps { counter-reset: ctrlstep; }
.step-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.step-item::before {
  counter-increment: ctrlstep; content: 'Control ' counter(ctrlstep, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 0.75rem; color: var(--gold);
  background: rgba(202,138,4,0.15); padding: 0.5rem 0.75rem; border-radius: 6px; white-space: nowrap; flex-shrink: 0;
}

.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 1rem; overflow: hidden; background: var(--widget-bg); }
.faq-q { padding: 1.25rem 1.5rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--gold); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 1.5rem 1.25rem; display: none; }
.faq-item.open .faq-a { display: block; }

.disclaimer-box {
  background: rgba(202,138,4,0.08); border-left: 4px solid var(--gold);
  padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9rem; margin: 2rem 0;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; background: var(--navy); color: var(--text);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: 0.5rem; align-items: flex-start; }
.form-check input { width: auto; margin-top: 0.3rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.alert { padding: 1rem 1.25rem; border-radius: 8px; margin-bottom: 1.5rem; }
.alert-success { background: rgba(5,150,105,0.2); color: #6EE7B7; border: 1px solid #059669; }
.alert-error { background: rgba(239,68,68,0.15); color: #FCA5A5; border: 1px solid #DC2626; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.tier-card {
  background: var(--widget-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
}
.tier-card.featured { border-color: var(--gold); box-shadow: var(--shadow); }
.tier-card .price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.tier-card .price small { font-size: 0.9rem; font-weight: 500; color: var(--muted); }

.legal-content h2 { margin-top: 2rem; color: var(--text); }
.legal-content h3 { margin-top: 1.5rem; font-size: 1.1rem; color: var(--text); }

.site-footer { background: #020617; color: var(--muted); padding: 4rem 0 2rem; font-size: 0.9rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { color: var(--text); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-grid a { color: var(--muted); display: block; margin-bottom: 0.5rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; font-size: 0.8rem; }
.footer-disclaimer { margin-top: 1rem; line-height: 1.6; }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--charcoal);
  border-top: 1px solid var(--border); padding: 1.25rem; z-index: 2000; display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; max-width: 1140px; margin: 0 auto; width: 92%; }
.cookie-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-secondary { background: var(--slate); color: var(--text); }
.btn-secondary:hover { background: var(--border); color: var(--text); }

.error-page { text-align: center; padding: 6rem 0; }
.error-page h1 { font-size: 6rem; color: var(--gold); }
.page-hero { background: var(--charcoal); padding: 7rem 0 3rem; text-align: center; border-bottom: 1px solid var(--border); }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.photo-strip img { border-radius: var(--radius); object-fit: cover; aspect-ratio: 16/10; width: 100%; border: 1px solid var(--border); }

@media (max-width: 900px) {
  .hero-grid, .feature-row, .footer-grid { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .photo-strip { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } .section { padding: 3rem 0; } }
