/* ── RESET & BASE ─────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:   #0d1f3c;
  --navy2:  #162a4e;
  --gold:   #b8962e;
  --gold2:  #d4af37;
  --red:    #c0182a;
  --white:  #ffffff;
  --light:  #f4f6f9;
  --text:   #1a1a2e;
  --text2:  #4a5568;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13,31,60,.12);
  --r:      10px;
}
html{scroll-behavior:smooth}
body{
  font-family:'Barlow',system-ui,sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

/* ── TYPOGRAPHY ───────────────────────────────── */
h1,h2,h3,h4{font-family:'Bebas Neue',sans-serif;font-weight:400;letter-spacing:.5px;line-height:1.05}
h1{font-size:clamp(44px,7vw,82px)}
h2{font-size:clamp(32px,5vw,54px)}
h3{font-size:clamp(22px,3vw,32px)}
p{line-height:1.7;color:var(--text2)}

/* ── LAYOUT ───────────────────────────────────── */
.wrap{max-width:1140px;margin:0 auto;padding:0 1.5rem}
.wrap-sm{max-width:760px;margin:0 auto;padding:0 1.5rem}
section{padding:5rem 0}
.divider{height:1px;background:var(--border)}

/* ── BUTTONS ──────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Bebas Neue',sans-serif;font-size:17px;letter-spacing:1.5px;
  padding:14px 32px;border-radius:var(--r);border:none;cursor:pointer;
  text-decoration:none;transition:all .2s;
}
.btn-gold{background:var(--gold);color:#fff;box-shadow:0 4px 14px rgba(184,150,46,.35)}
.btn-gold:hover{background:var(--gold2);transform:translateY(-2px);box-shadow:0 6px 20px rgba(184,150,46,.45)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy2);transform:translateY(-2px)}
.btn-outline{background:transparent;color:var(--navy);border:2px solid var(--navy)}
.btn-outline:hover{background:var(--navy);color:#fff}
.btn-outline-white{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.6)}
.btn-outline-white:hover{background:rgba(255,255,255,.1)}

/* ── NAV ──────────────────────────────────────── */
nav{
  position:sticky;top:0;z-index:100;
  background:var(--navy);
  box-shadow:0 2px 20px rgba(0,0,0,.25);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:.85rem 1.5rem;max-width:1140px;margin:0 auto;
}
.nav-logo img{height:56px;width:auto;max-width:280px}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{
  color:rgba(255,255,255,.8);font-size:14px;font-weight:700;
  letter-spacing:.5px;text-transform:uppercase;
  transition:color .2s;padding:.25rem 0;
  border-bottom:2px solid transparent;
}
.nav-links a:hover,.nav-links a.active{color:#fff;border-bottom-color:var(--gold)}
.nav-cta{margin-left:1rem}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.5rem}
.hamburger span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:.3s}
.mobile-menu{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:var(--navy);padding:1rem 1.5rem 1.5rem;
  flex-direction:column;gap:1rem;
  border-top:1px solid rgba(255,255,255,.1);
}
.mobile-menu.open{display:flex}
.mobile-menu a{color:rgba(255,255,255,.85);font-size:15px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.08)}

/* ── HERO ─────────────────────────────────────── */
.hero{
  background:var(--navy);
  color:#fff;
  padding:5rem 0 4rem;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 70% 50%,rgba(184,150,46,.15),transparent 60%),
              radial-gradient(ellipse at 20% 80%,rgba(192,24,42,.1),transparent 50%);
}
.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;
}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;
  color:var(--gold2);background:rgba(184,150,46,.15);
  border:1px solid rgba(184,150,46,.3);
  padding:6px 14px;border-radius:20px;margin-bottom:1.25rem;
}
.hero h1{color:#fff;margin-bottom:1.25rem}
.hero h1 em{font-style:normal;color:var(--gold2)}
.hero-sub{font-size:18px;color:rgba(255,255,255,.8);line-height:1.6;margin-bottom:2rem;max-width:520px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:2.5rem}
.hero-stats{display:flex;gap:2rem;flex-wrap:wrap}
.stat-item{border-left:3px solid var(--gold);padding-left:.75rem}
.stat-num{font-family:'Bebas Neue',sans-serif;font-size:32px;color:var(--gold2);line-height:1}
.stat-lbl{font-size:12px;color:rgba(255,255,255,.6);font-weight:600;letter-spacing:.5px;text-transform:uppercase}

/* HERO SCREEN MOCKUP */
.hero-screen{
  background:var(--navy2);border:2px solid rgba(255,255,255,.1);
  border-radius:12px;overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.5);
  aspect-ratio:16/10;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.hero-screen-placeholder{
  text-align:center;padding:2rem;
}
.hero-screen-placeholder i{font-size:64px;color:rgba(255,255,255,.15);display:block;margin-bottom:1rem}
.hero-screen-placeholder p{font-size:13px;color:rgba(255,255,255,.3);font-weight:600;letter-spacing:1px;text-transform:uppercase}
.screen-bar{
  position:absolute;top:0;left:0;right:0;
  background:rgba(0,0,0,.4);
  padding:.5rem 1rem;
  display:flex;align-items:center;gap:.5rem;
}
.screen-dot{width:10px;height:10px;border-radius:50%}

/* ── SECTION HEADER ───────────────────────────── */
.section-tag{
  display:inline-block;font-size:10px;font-weight:700;letter-spacing:3px;
  text-transform:uppercase;color:var(--gold);
  background:rgba(184,150,46,.1);border:1px solid rgba(184,150,46,.25);
  padding:5px 14px;border-radius:20px;margin-bottom:1rem;
}
.section-title{color:var(--navy);margin-bottom:1rem}
.section-sub{font-size:17px;color:var(--text2);max-width:580px;line-height:1.6}
.section-header{margin-bottom:3rem}
.section-header.center{text-align:center}
.section-header.center .section-sub{margin:0 auto}

/* ── FEATURE CARDS ────────────────────────────── */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.feature-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:1.75rem;box-shadow:var(--shadow);
  transition:transform .2s,box-shadow .2s,border-color .2s;
}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(13,31,60,.15);border-color:var(--gold)}
.feature-icon{
  width:56px;height:56px;border-radius:12px;
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;color:var(--gold2);
  margin-bottom:1.1rem;
}
.feature-title{font-family:'Bebas Neue',sans-serif;font-size:22px;letter-spacing:.5px;color:var(--navy);margin-bottom:.5rem}
.feature-text{font-size:14px;line-height:1.6}

/* ── HOW IT WORKS ─────────────────────────────── */
.steps{display:flex;flex-direction:column;gap:0}
.step{
  display:grid;grid-template-columns:80px 1fr;gap:1.5rem;
  padding:2rem 0;border-bottom:1px solid var(--border);
}
.step:last-child{border-bottom:none}
.step-num{
  font-family:'Bebas Neue',sans-serif;font-size:64px;
  color:rgba(13,31,60,.08);line-height:1;text-align:center;
}
.step-title{font-family:'Bebas Neue',sans-serif;font-size:26px;color:var(--navy);margin-bottom:.5rem}
.step-text{font-size:15px;line-height:1.7}

/* ── PRICING ──────────────────────────────────── */
.pricing-card{
  background:var(--navy);color:#fff;border-radius:20px;
  padding:3rem;max-width:600px;margin:3rem auto 0;
  position:relative;overflow:hidden;
  box-shadow:0 20px 60px rgba(13,31,60,.3);
}
.pricing-card::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse at 80% 20%,rgba(184,150,46,.2),transparent 60%);
}
.pricing-card>*{position:relative;z-index:1}
.pricing-badge{
  display:inline-block;
  background:var(--gold);color:#fff;
  font-size:10px;font-weight:800;letter-spacing:2px;text-transform:uppercase;
  padding:5px 14px;border-radius:20px;margin-bottom:1.5rem;
}
.pricing-amount{font-family:'Bebas Neue',sans-serif;font-size:80px;line-height:1;color:var(--gold2)}
.pricing-amount span{font-size:24px;color:rgba(255,255,255,.5)}
.pricing-period{font-size:14px;color:rgba(255,255,255,.6);margin-bottom:2rem}
.pricing-feats{list-style:none;margin-bottom:2rem}
.pricing-feats li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:15px;color:rgba(255,255,255,.85);
  padding:.6rem 0;border-bottom:1px solid rgba(255,255,255,.08);
}
.pricing-feats li:last-child{border:none}
.pricing-feats li i{color:var(--gold2);font-size:16px;flex-shrink:0;margin-top:2px}
.pricing-trial{
  background:rgba(184,150,46,.15);border:1px solid rgba(184,150,46,.3);
  border-radius:var(--r);padding:1rem;text-align:center;
  font-size:15px;color:rgba(255,255,255,.85);margin-bottom:1.5rem;
}
.pricing-trial strong{color:var(--gold2)}

/* ── TESTIMONIAL ──────────────────────────────── */
.testimonial{
  background:var(--light);border-radius:16px;padding:2.5rem;
  border-left:5px solid var(--gold);
  margin-bottom:1.5rem;
}
.testimonial-text{font-size:18px;font-style:italic;color:var(--navy);line-height:1.6;margin-bottom:1rem}
.testimonial-author{font-size:13px;font-weight:700;color:var(--text2);text-transform:uppercase;letter-spacing:.5px}

/* ── SCREENSHOT PLACEHOLDER ───────────────────── */
.screenshot{
  background:var(--light);border:2px dashed var(--border);
  border-radius:12px;aspect-ratio:16/9;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:.75rem;color:var(--text2);
}
.screenshot i{font-size:48px;opacity:.3}
.screenshot p{font-size:13px;font-weight:600;letter-spacing:1px;text-transform:uppercase;opacity:.5}

/* ── DARK BAND ────────────────────────────────── */
.dark-band{background:var(--navy);color:#fff;padding:5rem 0}
.dark-band h2{color:#fff}
.dark-band .section-sub{color:rgba(255,255,255,.75)}
.dark-band p{color:rgba(255,255,255,.75)}

/* ── RED BAND ─────────────────────────────────── */
.red-band{background:var(--red);color:#fff;padding:4rem 0;text-align:center}
.red-band h2{color:#fff;margin-bottom:.75rem}
.red-band p{color:rgba(255,255,255,.85);font-size:17px;margin-bottom:2rem}

/* ── FAQ ──────────────────────────────────────── */
.faq-item{border-bottom:1px solid var(--border);overflow:hidden}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  background:none;border:none;padding:1.25rem 0;
  font-family:'Bebas Neue',sans-serif;font-size:20px;letter-spacing:.5px;
  color:var(--navy);text-align:left;cursor:pointer;gap:1rem;
}
.faq-q i{font-size:18px;color:var(--gold);flex-shrink:0;transition:transform .3s}
.faq-q.open i{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-a.open{max-height:400px}
.faq-a-inner{padding:.25rem 0 1.25rem;font-size:15px;line-height:1.7}

/* ── CONTACT FORM ─────────────────────────────── */
.contact-form{background:var(--light);border-radius:16px;padding:2.5rem}
.field{margin-bottom:1.25rem}
.field label{display:block;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--navy);margin-bottom:.5rem}
.field input,.field select,.field textarea{
  width:100%;padding:12px 16px;
  border:1px solid var(--border);border-radius:var(--r);
  font-family:'Barlow',sans-serif;font-size:15px;color:var(--text);
  background:#fff;transition:border-color .2s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--gold);
}
.field textarea{min-height:120px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* ── FOOTER ───────────────────────────────────── */
footer{background:var(--navy);color:#fff;padding:3rem 0 2rem}
.footer-inner{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:2rem;
  margin-bottom:2rem;padding-bottom:2rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-logo{height:52px;width:auto;margin-bottom:1rem;max-width:240px}
.footer-brand p{font-size:13px;color:rgba(255,255,255,.55);line-height:1.6}
.footer-col h4{font-family:'Bebas Neue',sans-serif;font-size:16px;letter-spacing:1px;color:var(--gold2);margin-bottom:.85rem}
.footer-col a{display:block;font-size:13px;color:rgba(255,255,255,.6);padding:.25rem 0;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.4)}

/* ── RESPONSIVE ───────────────────────────────── */

/* Prevent horizontal scroll globally */
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; }
* { min-width: 0; }

@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;text-align:center}
  .hero-sub{max-width:100%}
  .hero-actions{justify-content:center}
  .hero-stats{justify-content:center}
  .hero-screen{display:none}
  .features-grid{grid-template-columns:1fr 1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  /* Force all inline grids to stack */
  [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important}
  [style*="grid-template-columns: 1fr 1fr"]{grid-template-columns:1fr !important}
}

@media(max-width:600px){
  /* Nav */
  .nav-links{display:none}
  .hamburger{display:flex}
  .nav-cta{display:none}

  /* Typography */
  h1{font-size:38px !important}
  h2{font-size:28px !important}
  h3{font-size:22px !important}

  /* Layout */
  .wrap{padding:0 1rem}
  .wrap-sm{padding:0 1rem}
  section{padding:3rem 0}

  /* All grids stack on mobile */
  .features-grid{grid-template-columns:1fr}
  .step{grid-template-columns:50px 1fr}
  .step-num{font-size:44px}
  .field-row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}

  /* Force ALL inline grid styles to single column */
  [style*="grid-template-columns"]{grid-template-columns:1fr !important}
  [style*="display:grid"]{grid-template-columns:1fr !important}

  /* Fix inline flex rows that wrap badly */
  [style*="display:flex"][style*="gap:2rem"]{flex-direction:column}
  [style*="display:flex"][style*="gap:4rem"]{flex-direction:column}
  [style*="display:flex"][style*="gap:3rem"]{flex-direction:column !important}

  /* Pricing cards */
  .pricing-card{padding:1.75rem}
  .pricing-amount{font-size:60px}

  /* Buttons full width on mobile */
  .btn{width:100%;justify-content:center;text-align:center}

  /* Hero */
  .hero{padding:3rem 0 2.5rem}
  .hero-stats{gap:1.25rem}
  .stat-item{flex:1;min-width:calc(50% - .75rem)}

  /* Screenshots */
  img[style*="border-radius:12px"]{margin-bottom:1rem}
  img[style*="border-radius:10px"]{margin-bottom:.5rem}

  /* Trust bar */
  [style*="display:flex;align-items:center;justify-content:center;gap:3rem"]{
    flex-direction:column;gap:1rem;align-items:flex-start;padding:0 1rem
  }

  /* Who it's for cards */
  [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important}

  /* Footer */
  .footer-links{flex-wrap:wrap;gap:1rem}
}

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
