:root{
  --navy:#061733;
  --navy2:#0d2d5c;
  --green:#00b050;
  --green2:#35d07f;
  --gold:#d6b56d;
  --text:#172033;
  --muted:#667085;
  --light:#f5f7fa;
  --white:#ffffff;
  --border:rgba(255,255,255,.14);
  --shadow:0 24px 80px rgba(0,0,0,.18);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', Arial, Helvetica, sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px clamp(18px,4vw,64px);
  background:rgba(6,23,51,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.brand img{
  width:150px;
  display:block;
}

.nav{
  display:flex;
  gap:28px;
  color:rgba(255,255,255,.84);
  font-size:.94rem;
  font-weight:600;
}

.nav a:hover{
  color:var(--green2);
}

.header-cta{
  background:var(--green);
  color:white;
  padding:11px 18px;
  border-radius:999px;
  font-size:.9rem;
  font-weight:800;
}

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,176,80,.26), transparent 34%),
    linear-gradient(135deg,#041024 0%,#071a35 46%,#0d2d5c 100%);
  color:white;
  padding:130px 20px 80px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.7), transparent);
  pointer-events:none;
}

.hero-container{
  position:relative;
  z-index:1;
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:56px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--green2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  margin-bottom:18px;
}

.eyebrow::before{
  content:"";
  width:32px;
  height:2px;
  background:currentColor;
  border-radius:99px;
}

.eyebrow.dark{
  color:var(--green);
}

.hero h1{
  font-size:clamp(2.55rem,6vw,5.25rem);
  line-height:.95;
  letter-spacing:-.07em;
  max-width:780px;
  margin-bottom:26px;
  font-weight:900;
}

.hero h1 span{
  display:block;
  color:var(--green2);
}

.lead{
  max-width:680px;
  font-size:clamp(1.05rem,2vw,1.35rem);
  color:rgba(255,255,255,.86);
  margin-bottom:22px;
}

.hero-warning{
  max-width:680px;
  background:rgba(255,255,255,.10);
  border:1px solid var(--border);
  border-left:4px solid var(--green);
  padding:18px 20px;
  border-radius:18px;
  color:rgba(255,255,255,.9);
  margin-bottom:28px;
}

.buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:14px;
  border:0;
  cursor:pointer;
  font-weight:900;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:white;
  box-shadow:0 16px 32px rgba(0,176,80,.24);
}

.btn-secondary{
  background:white;
  color:var(--navy);
}

.btn-outline{
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid rgba(255,255,255,.25);
}

.full{
  width:100%;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  color:rgba(255,255,255,.75);
  font-weight:700;
  font-size:.92rem;
}

.trust-row span{
  background:rgba(255,255,255,.08);
  padding:8px 12px;
  border-radius:999px;
}

.hero-visual{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-visual img{
  position:relative;
  z-index:2;
  width:min(100%,560px);
  filter:drop-shadow(0 40px 70px rgba(0,0,0,.34));
}

.product-glow{
  position:absolute;
  width:430px;
  height:430px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(0,176,80,.35), transparent 68%);
  filter:blur(10px);
}

.floating-card{
  position:absolute;
  z-index:3;
  width:174px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow);
  color:white;
  font-weight:700;
}

.floating-card strong{
  display:block;
  font-size:1.4rem;
  color:var(--green2);
}

.card-top{
  top:80px;
  right:22px;
}

.card-bottom{
  left:6px;
  bottom:88px;
}

.section{
  padding:92px 20px;
}

.section-heading{
  max-width:850px;
  margin:0 auto 44px;
  text-align:center;
}

.section-heading h2,
.split h2,
.offer-box h2{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.05;
  letter-spacing:-.045em;
  color:var(--navy);
  margin-bottom:16px;
  font-weight:900;
}

.section-heading p{
  color:var(--muted);
  font-size:1.08rem;
}

.light{
  background:#f7f9fc;
}

.cards{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  gap:22px;
}

.symptom-grid{
  grid-template-columns:repeat(3,1fr);
}

.card{
  background:white;
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 60px rgba(14,30,64,.08);
  border:1px solid rgba(6,23,51,.06);
}

.symptom{
  min-height:206px;
}

.icon{
  font-size:2rem;
  margin-bottom:18px;
}

.card h3{
  color:var(--navy);
  font-size:1.25rem;
  margin-bottom:10px;
}

.card p,
.card li{
  color:var(--muted);
}

.problem{
  background:white;
}

.split{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:50px;
  align-items:start;
}

.problem-copy{
  font-size:1.12rem;
  color:#475467;
}

.problem-copy p + p{
  margin-top:18px;
}

.dark-section{
  background:
    radial-gradient(circle at 20% 0%, rgba(0,176,80,.18), transparent 26%),
    linear-gradient(135deg,#041024,#071a35 48%,#102e59);
  color:white;
}

.dark-section .section-heading h2,
.dark-section .section-heading p{
  color:white;
}

.product-grid{
  grid-template-columns:repeat(3,1fr);
}

.product-card{
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}

.product-card h3{
  color:white;
  font-size:1.45rem;
}

.product-card .subtitle{
  color:var(--green2);
  font-weight:800;
  margin-bottom:18px;
}

.product-card ul{
  list-style:none;
  display:grid;
  gap:12px;
}

.product-card li{
  color:rgba(255,255,255,.78);
  padding-left:26px;
  position:relative;
}

.product-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green2);
  font-weight:900;
}

.product-tag{
  display:inline-flex;
  background:rgba(0,176,80,.18);
  color:var(--green2);
  border:1px solid rgba(53,208,127,.22);
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:.78rem;
  text-transform:uppercase;
  margin-bottom:18px;
}

.featured{
  transform:translateY(-16px);
  background:linear-gradient(180deg,rgba(0,176,80,.24),rgba(255,255,255,.08));
  border-color:rgba(53,208,127,.35);
}

.offer{
  background:white;
}

.offer-box{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:40px;
  align-items:center;
  background:linear-gradient(135deg,#f3fbf6,#ffffff);
  border:1px solid rgba(0,176,80,.14);
  border-radius:34px;
  padding:clamp(28px,5vw,58px);
  box-shadow:0 22px 80px rgba(0,176,80,.08);
}

.offer-box p{
  color:var(--muted);
  font-size:1.08rem;
}

.lead-form{
  background:white;
  padding:26px;
  border-radius:26px;
  box-shadow:0 18px 60px rgba(14,30,64,.10);
  display:grid;
  gap:16px;
}

.lead-form label{
  display:grid;
  gap:8px;
  color:var(--navy);
  font-weight:800;
}

.lead-form input,
.lead-form select{
  height:52px;
  border:1px solid #d0d5dd;
  border-radius:14px;
  padding:0 14px;
  font:inherit;
  color:var(--text);
  background:white;
}

.lead-form small{
  color:var(--muted);
  font-size:.8rem;
}

.option-grid{
  grid-template-columns:repeat(3,1fr);
}

.option-card{
  min-height:230px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.card-link{
  color:var(--green);
  font-weight:900;
  margin-top:20px;
}

.faq{
  background:white;
}

.faq-list{
  max-width:920px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

details{
  background:#f7f9fc;
  border:1px solid rgba(6,23,51,.08);
  border-radius:18px;
  padding:20px 22px;
}

summary{
  cursor:pointer;
  font-weight:900;
  color:var(--navy);
}

details p{
  color:var(--muted);
  margin-top:12px;
}

.footer{
  background:#041024;
  color:white;
  text-align:center;
  padding:52px 20px;
}

.footer img{
  width:170px;
  margin-bottom:16px;
}

.footer p{
  color:rgba(255,255,255,.78);
  margin-bottom:8px;
}

.footer .domains{
  color:var(--green2);
  font-weight:800;
}

.disclaimer{
  max-width:980px;
  margin:20px auto 0;
  font-size:.82rem;
  color:rgba(255,255,255,.56)!important;
}

@media(max-width:980px){
  .nav{
    display:none;
  }

  .hero-container,
  .split,
  .offer-box{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:118px;
  }

  .hero-copy{
    text-align:center;
  }

  .eyebrow{
    justify-content:center;
  }

  .buttons,
  .trust-row{
    justify-content:center;
  }

  .hero-visual{
    min-height:420px;
  }

  .symptom-grid,
  .product-grid,
  .option-grid{
    grid-template-columns:1fr;
  }

  .featured{
    transform:none;
  }

  .floating-card{
    display:none;
  }
}

@media(max-width:560px){
  .site-header{
    padding:14px 16px;
  }

  .brand img{
    width:128px;
  }

  .header-cta{
    padding:10px 13px;
    font-size:.78rem;
  }

  .hero{
    padding-left:16px;
    padding-right:16px;
  }

  .hero h1{
    font-size:2.7rem;
  }

  .section{
    padding:70px 16px;
  }

  .card{
    padding:24px;
  }

  .offer-box{
    padding:22px;
    border-radius:24px;
  }

  .lead-form{
    padding:20px;
  }
}
