/* ===== Tokens ===== */
:root{
  --orange: #f67c3f;
  --orange-dark: #e0672c;
  --navy: #364f6b;
  --navy-dark: #263a51;
  --cream: #fdf6f1;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-400: #8a97a6;
  --gray-600: #5a6b7d;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(54,79,107,0.08);
  --shadow-lg: 0 20px 45px rgba(54,79,107,0.14);
  --font-head: 'Sora', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html{scroll-behavior:smooth;}

body{
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{max-width:100%;display:block;}

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

ul{list-style:none;}

.container{
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3{font-family:var(--font-head); font-weight:700; color:var(--navy-dark); line-height:1.2;}

.center{text-align:center;}

.eyebrow{
  color:var(--orange);
  font-weight:700;
  font-size:0.85rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.section-sub{
  color:var(--gray-600);
  font-size:1.05rem;
  max-width:640px;
  margin:14px auto 0;
}

section{padding:88px 0;}

/* ===== Buttons ===== */
.btn{
  display:inline-block;
  padding:16px 32px;
  border-radius:999px;
  font-weight:700;
  font-size:1rem;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(246,124,63,0.35);
}
.btn-primary:hover{
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(246,124,63,0.42);
}
.btn-block{width:100%; text-align:center;}

/* ===== Header / Nav ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:86px;
}
.nav-logo img{height:50px; width:auto;}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
  font-weight:600;
  font-size:0.95rem;
}
.nav-links a{color:var(--navy-dark); transition:color .15s ease;}
.nav-links a:hover{color:var(--orange);}
.nav-cta{
  background:var(--navy);
  color:var(--white) !important;
  padding:11px 22px;
  border-radius:999px;
  font-weight:700;
}
.nav-cta:hover{background:var(--navy-dark);}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px;
  height:40px;
  background:none;
  border:none;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:100%;
  background:var(--navy-dark);
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.open span:nth-child(2){opacity:0;}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ===== Hero ===== */
.hero{
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(246,124,63,0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(54,79,107,0.08), transparent 60%),
    var(--gray-50);
  padding:110px 0 90px;
  text-align:center;
}
.hero-inner{max-width:980px;}
.hero-badge{
  display:inline-block;
  background:var(--cream);
  color:var(--orange-dark);
  border:1px solid rgba(246,124,63,0.25);
  padding:8px 18px;
  border-radius:999px;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.02em;
  margin-bottom:24px;
}
.hero h1{
  font-size:clamp(2rem, 4.6vw, 3.35rem);
  letter-spacing:-0.01em;
  max-width:940px;
  margin:0 auto;
}
.hero h1 span{color:var(--orange);}
.hero-sub{
  margin:22px auto 0;
  max-width:640px;
  font-size:1.15rem;
  color:var(--gray-600);
}
.hero-actions{margin-top:34px;}
.hero-actions.center{display:flex; justify-content:center;}
.trust-bar{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:12px;
  font-size:0.9rem;
  font-weight:600;
  color:var(--navy);
}
.trust-bar .divider{color:var(--gray-400); font-weight:400;}
.trust-bar.center{justify-content:center;}

/* ===== Cards / Grids ===== */
.card-grid{
  display:grid;
  gap:24px;
  margin-top:48px;
}
.card-grid.four{grid-template-columns:repeat(4,1fr);}
.card-grid.three{grid-template-columns:repeat(3,1fr);}

.card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:32px 26px;
  box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease;
}
.card:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg);}
.card h3{font-size:1.08rem; margin-bottom:10px;}
.card p{color:var(--gray-600); font-size:0.96rem;}

.card-icon{
  width:52px; height:52px;
  border-radius:14px;
  background:var(--cream);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.card-icon svg{width:26px; height:26px;}

.problem{background:var(--white);}

.card-alt{background:var(--gray-50); border:1px solid var(--gray-100);}

/* ===== Solution / Steps ===== */
.solution{background:var(--cream);}
.steps{margin-top:56px; display:flex; flex-direction:column; gap:28px;}
.step{
  display:flex;
  gap:28px;
  background:var(--white);
  border-radius:var(--radius);
  padding:36px;
  box-shadow:var(--shadow);
}
.step-marker{
  flex:0 0 auto;
  width:64px;
}
.step-num{
  width:64px; height:64px;
  border-radius:50%;
  background:var(--cream);
  border:2px solid var(--orange);
  color:var(--orange);
  font-family:var(--font-head);
  font-size:1.3rem;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}
.step-body h3{font-size:1.25rem; margin-bottom:12px;}
.step-body p{color:var(--gray-600); font-size:1rem;}

/* ===== What's Included (checklist) ===== */
.included{background:var(--cream);}
.checklist{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px 32px;
  max-width:920px;
  margin-left:auto;
  margin-right:auto;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:12px;
  padding:16px 18px;
  font-size:0.96rem;
  color:var(--navy-dark);
  font-weight:500;
  box-shadow:var(--shadow);
}
.check{
  flex:0 0 auto;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--orange);
  color:var(--white);
  font-size:0.75rem;
  font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
}

/* ===== Benchmarks ===== */
.benchmarks{background:var(--navy);}
.benchmarks .eyebrow{color:var(--orange);}
.benchmarks h2{color:var(--white);}
.stat-grid{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.stat{
  text-align:center;
  padding:36px 24px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:18px;
}
.stat-num{
  font-family:var(--font-head);
  font-size:2.8rem;
  font-weight:800;
  color:var(--orange);
  margin-bottom:10px;
}
.stat-label{
  color:rgba(255,255,255,0.78);
  font-size:0.95rem;
  max-width:220px;
  margin:0 auto;
}

/* ===== Case Studies ===== */
.case-studies{background:var(--white);}
.case-grid{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.case-card{
  background:var(--gray-50);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.case-top{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
}
.case-tag{
  display:inline-block;
  align-self:flex-start;
  background:var(--cream);
  color:var(--orange-dark);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:16px;
}
.case-card h3{font-size:1.2rem; margin-bottom:12px;}
.case-card p{color:var(--gray-600); font-size:0.95rem; margin-bottom:22px;}
.case-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:22px;
}
.case-stats div{
  text-align:center;
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:12px;
  padding:14px 8px;
}
.case-stats span{
  display:block;
  font-family:var(--font-head);
  font-size:1.4rem;
  font-weight:800;
  color:var(--navy-dark);
  margin-bottom:4px;
}
.case-stats div{font-size:0.76rem; color:var(--gray-600); font-weight:600;}
.case-img{
  border-radius:12px;
  border:1px solid var(--gray-100);
  box-shadow:var(--shadow);
}

/* ===== FAQ ===== */
.faq{background:var(--cream);}
.faq-list{
  margin-top:48px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:14px;
  padding:6px 24px;
  box-shadow:var(--shadow);
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:18px 28px 18px 0;
  font-weight:600;
  font-size:1.02rem;
  color:var(--navy-dark);
  position:relative;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0; top:14px;
  font-size:1.4rem;
  color:var(--orange);
  font-weight:700;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{
  color:var(--gray-600);
  padding-bottom:20px;
  font-size:0.96rem;
}

/* ===== Book / Calendly ===== */
.book{
  background:
    radial-gradient(1000px 460px at 88% -10%, rgba(246,124,63,0.10), transparent 60%),
    radial-gradient(800px 460px at 5% 100%, rgba(54,79,107,0.08), transparent 60%),
    var(--gray-50);
}
.guarantee-badge{
  margin-top:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--cream);
  color:var(--orange-dark);
  font-weight:700;
  font-size:0.9rem;
  padding:10px 20px;
  border-radius:999px;
  max-width:fit-content;
  margin-left:auto;
  margin-right:auto;
}
.calendly-caption{
  margin-top:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:600;
  color:var(--navy);
  font-size:0.98rem;
}
.calendly-wrap{
  margin-top:18px;
  position:relative;
  background:var(--white);
  border-radius:24px;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--gray-100);
  padding:16px;
  padding-top:22px;
  overflow:hidden;
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}
.calendly-wrap::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:6px;
  background:linear-gradient(90deg, var(--orange), var(--navy));
}

/* ===== Footer ===== */
.site-footer{
  background:var(--navy-dark);
  padding:44px 0;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  text-align:center;
}
.footer-logo-wrap{
  background:var(--white);
  border-radius:16px;
  padding:14px 24px;
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.footer-logo-icon{height:48px; width:auto;}
.footer-logo{height:44px; width:auto;}
.footer-copy{
  color:rgba(255,255,255,0.6);
  font-size:0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .card-grid.four{grid-template-columns:repeat(2,1fr);}
  .stat-grid{grid-template-columns:1fr;}
}

@media (max-width: 760px){
  section{padding:64px 0;}
  .nav-links{
    position:fixed;
    top:86px; left:0; right:0;
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:8px 24px 20px;
    border-bottom:1px solid var(--gray-100);
    transform:translateY(-130%);
    opacity:0;
    transition:transform .25s ease, opacity .25s ease;
  }
  .nav-links.open{transform:translateY(0); opacity:1;}
  .nav-links a{padding:14px 0; width:100%; border-bottom:1px solid var(--gray-100);}
  .nav-cta{margin-top:12px; text-align:center;}
  .nav-toggle{display:flex;}

  .card-grid.four, .card-grid.three{grid-template-columns:1fr;}
  .step{flex-direction:column; padding:26px;}
  .step-marker::after{display:none;}
  .checklist{grid-template-columns:1fr;}
  .faq-item summary{padding:16px 26px 16px 0; font-size:0.98rem;}
  .case-grid{grid-template-columns:1fr;}
}

@media (max-width: 480px){
  .hero{padding:88px 0 64px;}
  .btn{width:100%; text-align:center;}
  .trust-bar{flex-direction:column; gap:8px; align-items:center;}
  .trust-bar .divider{display:none;}
  .stat-num{font-size:2.3rem;}
}
