:root{
  --bg-light:#f3f8fd; /* Light blue background from Flyhub */
  --bg-white:#ffffff;
  --text-dark:#1e293b;
  --text-gray:#64748b;
  --text-light:#94a3b8;
  --accent-blue:#3b82f6;
  --accent-blue-dark:#2563eb;
  --maxw:1200px;
}

/* Reset-ish */
*,*::before,*::after{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text-dark);
  background:var(--bg-white);
  line-height:1.45;
}

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

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:28px 22px;
  position:relative;
  z-index:1;
}

/* Header */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:28px;
  background:var(--bg-white);
  padding:20px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700; letter-spacing:.4px;
  color:var(--text-dark);
}
.logo{
  width:42px; height:42px; border-radius:8px;
  background:var(--accent-blue);
  border:1px solid rgba(59,130,246,.18);
  display:grid; place-items:center;
  box-shadow:0 2px 8px rgba(59,130,246,.15);
}
.logo:after{
  content:"SF";
  font-size:14px; font-weight:800;
  color:#ffffff;
}
.contact{
  opacity:.95; font-weight:500; display:flex; align-items:center; gap:10px;
  white-space:nowrap;
  color:var(--text-gray);
}
.contact .mail-dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--accent-blue); display:inline-block;
  box-shadow:0 0 0 2px rgba(59,130,246,.2);
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:center;
  padding:34px 0 70px;
  background:var(--bg-white);
}
.eyebrow{
  font-weight:700;
  font-size:42px;
  line-height:1.15;
  letter-spacing:.2px;
  color:var(--text-dark);
}
.eyebrow em{color:var(--accent-blue); font-style:normal}
.lead{
  margin-top:26px;
  color:var(--text-gray);
  font-size:18px;
  max-width:62ch;
}

.cta{
  margin-top:30px;
  display:inline-grid;
  gap:6px;
}
.cta .btn{
  display:inline-block;
  background:var(--accent-blue);
  color:#ffffff;
  border-radius:8px;
  padding:16px 32px;
  font-weight:700;
  letter-spacing:.3px;
  border:none;
  box-shadow:0 4px 12px rgba(59,130,246,.25);
  transition: transform .08s ease, box-shadow .08s ease, background .2s ease;
}
.cta .btn:hover{
  background:var(--accent-blue-dark);
  box-shadow:0 6px 16px rgba(59,130,246,.35);
}
.cta .btn:active{ transform: translateY(1px); box-shadow:0 2px 8px rgba(59,130,246,.3)}
.cta .sub{
  text-align:center;
  font-size:12px;
  color:var(--text-light);
  letter-spacing:.25px;
}

.hero-visual{
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.hero-visual img{
  max-width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
}

/* Pills */
.pill{
  position:absolute;
  left:8%;
  bottom:6%;
  background:rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color:var(--text-dark);
  border:1px solid rgba(0,0,0,.08);
  border-radius:8px;
  padding:10px 12px;
  font-size:12px;
  line-height:1.2;
  white-space:nowrap;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.pill.pill-right{left:auto; right:4%; bottom:-8px}
/* Responsive */
@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; gap:26px; padding-bottom:48px }
  .eyebrow{ font-size:36px }
  .lead{ font-size:16px }
  .hero-visual{ order:-1 }
  .pill, .pill.pill-right{ position:static; display:inline-block; margin:10px 6px 0 0 }
  .price-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) } /* 2 cards on tablet */
  .offer-hero-img img{ max-width:420px }
  .bundle-card{
    grid-template-columns:1fr;
    text-align:center;
  }
  .bundle-content{ text-align:left }
  .sheena-row{
    grid-template-columns:1fr;
  }
  .sheena-alt .sheena-media{ order:-1 }
}

/* Add this new breakpoint for mobile */
@media (max-width: 640px){
  .price-grid{ grid-template-columns:1fr } /* 1 card on mobile */
}
/* STATS STRIP */
.stats{
  width:100%;
  background:var(--bg-white);
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.stats-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:34px 22px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:center;
}

.stat .value{
  font-size:46px;
  font-weight:800;
  letter-spacing:.5px;
  line-height:1;
  color:var(--accent-blue);
}

.stat .label{
  margin-top:10px;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-gray);
}

@media (max-width: 820px){
  .stats-inner{ grid-template-columns:1fr; gap:14px }
  .stat .value{ font-size:40px }
  .stat .label{ font-size:13px; letter-spacing:.06em }
}

/* INTRO SECTION */
.intro-sec{
  background:var(--bg-light);
}
.intro-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:60px 22px 70px;
  text-align:center;
}

.intro-title{
  margin:0 0 10px 0;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height:1.1;
  font-weight:900;
  color:var(--text-dark);
  letter-spacing:.2px;
}
.intro-sub{
  margin:0 auto 28px;
  max-width: 900px;
  font-size:18px;
  color:var(--text-gray);
}

/* Video frame */
.video-shell{
  max-width:1000px;
  margin: 0 auto 26px;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  background:#000;
  position:relative;
}
.video-topbar{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height:40px;
  background:var(--accent-blue);
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.video-topbar .spk{
  width:18px; height:18px; opacity:.9;
}
.intro-video{
  display:block;
  width:100%;
  height:auto;
  background:#000;
}

.intro-cta{
  display:inline-grid;
  place-items:center;
  margin-top:18px;
  padding:16px 32px;
  border-radius:8px;
  text-decoration:none;
  user-select:none;
  background:var(--accent-blue);
  color:#fff;
  box-shadow: 0 4px 12px rgba(59,130,246,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border:none;
}
.intro-cta .cta-main{
  font-weight:700;
  letter-spacing:.02em;
  font-size:16px;
}
.intro-cta .cta-sub{
  margin-top:6px;
  font-size:12px;
  opacity:.9;
}
.intro-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59,130,246,.35);
  background:var(--accent-blue-dark);
}
.intro-cta:active{
  transform: translateY(0);
}

@media (max-width: 700px){
  .intro-wrap{ padding:44px 16px 56px }
  .intro-sub{ font-size:16px }
}

/* CURRICULUM SECTION */
.curr-sec{
  background:var(--bg-white);
  color:var(--text-dark);
}
.curr-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:70px 22px 80px;
  text-align:center;
}
.curr-eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--accent-blue);
  margin-bottom:12px;
  font-weight:700;
}
.curr-title{
  margin:0 0 10px 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height:1.15;
  font-weight:900;
  color:var(--text-dark);
}
.curr-sub{
  max-width:980px;
  margin:0 auto 36px;
  font-size:18px;
  color:var(--text-gray);
}

/* CARD GRID */
.mod-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:28px;
  margin-top:10px;
}
.mod-card{
  background:var(--bg-white);
  color:var(--text-dark);
  border-radius:12px;
  padding:22px;
  text-align:left;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mod-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.mod-cover{
  background:#f8fafc;
  border-radius:8px;
  overflow:hidden;
  margin-bottom:18px;
  border:1px solid rgba(0,0,0,.06);
}
.mod-cover img{
  display:block;
  width:100%;
  height:auto;
}
.mod-title{
  font-size:22px;
  line-height:1.3;
  margin:6px 0 10px;
  color:var(--text-dark);
  font-weight:700;
}
.mod-desc{
  margin:0;
  color:var(--text-gray);
  font-size:16px;
}

.gallery-cta{
  display:inline-grid;
  place-items:center;
  margin:32px auto 0;
  padding:16px 32px;
  border-radius:8px;
  background:var(--accent-blue);
  color:#ffffff;
  text-decoration:none;
  border:none;
  box-shadow: 0 4px 12px rgba(59,130,246,.25);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.gallery-cta .gcta-main{
  font-weight:700;
  letter-spacing:.02em;
}
.gallery-cta .gcta-sub{
  margin-top:6px;
  font-size:12px;
  opacity:.9;
}
.gallery-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59,130,246,.35);
  background:var(--accent-blue-dark);
}
.gallery-cta:active{ transform: translateY(0) }

@media (max-width: 900px){
  .mod-grid{ grid-template-columns:1fr }
  .why-grid{ grid-template-columns:1fr }
}

/* AI-POWERED LESSONS */
.ai-sec{
  background:var(--bg-light);
}
.ai-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:70px 22px 64px;
  text-align:center;
}
.ai-title{
  margin:0 0 8px 0;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height:1.12;
  font-weight:900;
  color:var(--text-dark);
}
.ai-accent{
  color:var(--accent-blue);
}
.ai-accent-2{
  color:var(--accent-blue-dark);
}
.ai-sub{
  max-width:980px;
  margin:0 auto 36px;
  font-size:18px;
  color:var(--text-gray);
}

.ai-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:start;
}

.ai-card{
  text-align:center;
  color:var(--text-dark);
  background:var(--bg-white);
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ai-card:hover{
  transform: translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.ai-cover{
  height:240px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  background:var(--bg-light);
  display:block;
  margin-bottom:16px;
  border:1px solid rgba(0,0,0,.06);
}
.ai-cover img{
  display:block; width:100%; height:100%; object-fit:cover;
}
.ai-card-title{
  font-size:18px;
  line-height:1.35;
  margin:6px 0 8px;
  font-weight:700;
  color:var(--text-dark);
}
.ai-card-desc{
  margin:0 auto 12px;
  font-size:16px;
  color:var(--text-gray);
  max-width:32ch;
}
.ai-meta{
  margin:0;
  font-size:14px;
  color:var(--text-light);
}

@media (max-width: 1100px){
  .ai-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:28px }
}
@media (max-width: 640px){
  .ai-grid{ grid-template-columns:1fr }
  .ai-cover{ height:200px }
}

.ai-bottom-cta-wrap{
  display:flex;
  justify-content:center;
  margin-top:32px;
}

.ai-bottom-cta{
  display:inline-grid;
  place-items:center;
  padding:16px 32px;
  border-radius:8px;
  text-decoration:none;
  user-select:none;
  color:#ffffff;
  background:var(--accent-blue);
  box-shadow:0 4px 12px rgba(59,130,246,.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  border:none;
}

.ai-bottom-cta .btn-main{
  font-weight:700;
  letter-spacing:.02em;
}
.ai-bottom-cta .btn-sub{
  margin-top:6px;
  font-size:12px;
  opacity:.9;
}

.ai-bottom-cta:hover{
  transform: translateY(-2px);
  background:var(--accent-blue-dark);
  box-shadow:0 6px 16px rgba(59,130,246,.35);
}
.ai-bottom-cta:active{
  transform: translateY(0);
}

/* OFFER SECTION */
.offer-sec{
  background:var(--bg-white);
  color:var(--text-dark);
}
.offer-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:80px 22px;
  text-align:center;
}

.offer-hero-img{
  display:flex; justify-content:center; margin-bottom:22px;
}
.offer-hero-img img{ max-width:560px; height:auto; }

.offer-title{
  margin:8px 0 12px;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height:1.2;
  font-weight:900;
  color:var(--text-dark);
}

.offer-copy{
  max-width:980px;
  margin:0 auto 28px;
  color:var(--text-gray);
}
.offer-copy p{ margin:.7em 0 }
.offer-points{
  list-style:none; padding:0; margin:12px 0 8px 0;
}
.offer-points li{
  margin:.45em 0;
  color:var(--text-gray);
}
.offer-points li::before{
  content:"✓";
  display:inline-grid; place-items:center;
  width:18px; height:18px; border-radius:50%;
  background:var(--accent-blue); color:#fff; font-size:12px;
  margin-right:8px;
}
/* PRICING GRID */
.price-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:24px;
}

.price-card{
  background:var(--bg-white);
  color:var(--text-dark);
  border-radius:12px;
  padding:22px 22px 20px;
  text-align:left;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  
  /* Make cards equal height with flex */
  display: flex;
  flex-direction: column;
}

.price-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.pc-eyebrow{
  text-align:center;
  font-size:12px;
  letter-spacing:.12em;
  color:var(--accent-blue);
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:6px;
}

.pc-old{
  text-align:center;
  color:var(--text-light);
  text-decoration: line-through;
  font-weight:700;
  margin-bottom:2px;
  font-size:18px; /* Make old price visible */
}

.pc-old--hidden{ 
  visibility:hidden; 
  height:0; 
  margin:0;
}

.pc-price{
  text-align:center;
  font-size:36px;
  font-weight:900;
  color:var(--text-dark);
  margin-bottom:14px;
}

.pc-price .pc-price-suffix{
  font-size:14px; 
  font-weight:600; 
  color:var(--text-gray); 
  margin-left:6px;
}

.pc-list{
  list-style:none; 
  padding:0; 
  margin:0 0 16px 0;
  flex-grow: 1; /* Push button to bottom */
}

.pc-list li{
  display:flex; 
  align-items:flex-start;
  gap:10px;
  margin:.65em 0;
  color:var(--text-gray);
}

.pc-list li::before{
  content:"";
  width:18px; 
  height:18px; 
  flex:0 0 18px;
  border-radius:50%;
  background:var(--accent-blue);
  position:relative; 
  top:3px;
  box-shadow:0 0 0 2px rgba(59,130,246,.15);
}

.pc-list li::after{
  content:"";
  position:relative; 
  left:-27px; 
  top:6px;
  width:6px; 
  height:10px;
  border-right:2px solid #fff; 
  border-bottom:2px solid #fff;
  transform: rotate(45deg);
}

.pc-cta{
  display:grid; 
  place-items:center;
  text-decoration:none;
  border-radius:8px;
  padding:16px 32px;
  background:var(--accent-blue);
  color:#fff;
  box-shadow: 0 4px 12px rgba(59,130,246,.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  border:none;
  margin-top: auto; /* Align button to bottom */
}

.pc-cta .pc-cta-main{ 
  font-weight:700; 
}

.pc-cta .pc-cta-sub{ 
  margin-top:6px; 
  font-size:12px; 
  opacity:.9; 
}

.pc-cta:hover{ 
  transform: translateY(-2px); 
  background:var(--accent-blue-dark); 
  box-shadow:0 6px 16px rgba(59,130,246,.35); 
}

.pc-cta:active{ 
  transform: translateY(0); 
}
/* MOST COMPREHENSIVE PROGRAM */
.bundle-sec{
  background:var(--bg-light);
}
.bundle-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:64px 22px 56px;
  text-align:center;
}
.bundle-title{
  margin:0 0 8px;
  font-size:clamp(28px,4.2vw,44px);
  line-height:1.15;
  font-weight:900;
  color:var(--text-dark);
}
.bundle-sub{
  max-width:980px;
  margin:0 auto 28px;
  color:var(--text-gray);
  font-size:18px;
}

.bundle-grid{
  display:grid;
  gap:28px;
}

.bundle-card{
  background:var(--bg-white);
  color:var(--text-dark);
  border-radius:12px;
  padding:22px;
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:22px;
  align-items:center;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.bundle-card:hover{
  transform: translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.bundle-media img,
.bundle-media-ph{
  display:block;
  width:100%;
  height:220px;
  object-fit:contain;
  background:var(--bg-light);
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}
.bundle-media-ph{ background:var(--bg-light) }

.bundle-content{
  text-align:left;
}
.bundle-h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.25;
  font-weight:700;
  color:var(--text-dark);
}
.bundle-content p{ margin:.6em 0; color:var(--text-gray); }
.bundle-value{
  margin-top:8px;
  color:var(--accent-blue);
  font-weight:600;
}

.b-list{
  list-style:none; padding:0; margin:.3em 0 .2em;
}
.b-list li{
  position:relative;
  padding-left:28px;
  margin:.45em 0;
  color:var(--text-gray);
}
.b-list li::before{
  content:"";
  position:absolute; left:0; top:2px;
  width:18px; height:18px; border-radius:50%;
  background:var(--accent-blue);
  box-shadow:0 0 0 2px rgba(59,130,246,.15);
}
.b-list li::after{
  content:"";
  position:absolute; left:6px; top:7px;
  width:6px; height:10px;
  border-right:2px solid #fff; border-bottom:2px solid #fff;
  transform:rotate(45deg);
}

.bundle-cta-wrap,
.closing-cta-wrap,
.templates-cta-wrap{
  display:flex; justify-content:center;
  margin-top:26px;
}

.bundle-cta{
  display:inline-grid;
  place-items:center;
  padding:16px 32px;
  border-radius:8px;
  color:#fff; text-decoration:none;
  background:var(--accent-blue);
  box-shadow:0 4px 12px rgba(59,130,246,.25);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
  border:none;
}
.bundle-cta .btn-main{ font-weight:700; letter-spacing:.02em }
.bundle-cta .btn-sub{ margin-top:6px; font-size:12px; opacity:.9 }
.bundle-cta:hover{
  transform:translateY(-2px);
  background:var(--accent-blue-dark);
  box-shadow:0 6px 16px rgba(59,130,246,.35);
}
.bundle-cta:active{ transform:translateY(0) }

/* WHO IS SHEENA SECTION */
.sheena-sec{
  background:var(--bg-white);
}
.sheena-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:60px 22px 70px;
}

.sheena-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:32px;
  align-items:start;
  margin-bottom:40px;
}
.sheena-row:last-child{ margin-bottom:0 }

.sheena-col{ width:100% }

.sheena-text{ color:var(--text-dark) }
.sheena-eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--accent-blue);
  margin-bottom:8px;
  font-weight:700;
}
.sheena-title{
  margin:0 0 12px;
  font-size:clamp(24px, 3.4vw, 34px);
  line-height:1.2;
  font-weight:900;
  color:var(--text-dark);
}
.sheena-subtitle{
  margin:0 0 10px;
  font-size:clamp(20px, 2.4vw, 28px);
  line-height:1.25;
  font-weight:700;
  color:var(--text-dark);
}
.sheena-text p{
  margin:.7em 0;
  color:var(--text-gray);
  font-size:16px;
}

.sheena-media img{
  display:block;
  width:100%;
  height:auto;
  border-radius:12px;
  background:var(--bg-light);
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  object-fit:cover;
  border:1px solid rgba(0,0,0,.06);
}

/* WHY TSFDA */
.why-sec{
  background:var(--bg-light);
  color:var(--text-dark);
}
.why-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:72px 22px;
  text-align:center;
}
.why-title{
  margin:0 0 10px;
  font-size:clamp(30px,4.6vw,64px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:.2px;
  color:var(--text-dark);
}
.why-sub{
  margin:0 auto 28px;
  max-width:980px;
  font-size:20px;
  color:var(--text-gray);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:26px 34px;
  justify-items:stretch;
  margin-top:14px;
}

.why-card{
  background:var(--bg-white);
  color:var(--text-dark);
  border-radius:12px;
  padding:20px 22px;
  display:grid;
  grid-template-columns:28px 1fr;
  gap:12px;
  text-align:left;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover{
  transform: translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.why-check{
  width:22px; height:22px; border-radius:50%;
  background:var(--accent-blue);
  position:relative; top:3px;
  box-shadow:0 0 0 2px rgba(59,130,246,.15);
}
.why-check::after{
  content:"";
  position:absolute; left:7px; top:4px;
  width:6px; height:10px;
  border-right:2px solid #fff; border-bottom:2px solid #fff;
  transform:rotate(45deg);
}
.why-content h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.35;
  color:var(--text-dark);
  font-weight:700;
}
.why-content p{
  margin:0;
  color:var(--text-gray);
  font-size:16px;
}

/* RESULTS GRID */
.results-sec{
  background:var(--bg-white);
}
.results-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:64px 22px 56px;
  text-align:center;
}
.results-title{
  margin:0 0 18px;
  font-size:clamp(28px,4.8vw,56px);
  line-height:1.1;
  font-weight:900;
  color:var(--text-dark);
}

.results-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  margin-top:10px;
}

.result-card{
  margin:0;
  padding:0;
  background:var(--bg-light);
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1 / 1;
  border:1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.result-card:hover{
  transform: translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.result-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width: 1000px){
  .results-grid{ grid-template-columns:repeat(2,minmax(0,1fr)) }
}
@media (max-width: 600px){
  .results-grid{ grid-template-columns:1fr }
}

/* CLIENT CLOSING SYSTEM */
.closing-sec{
  background:var(--bg-light);
  color:var(--text-dark);
}
.closing-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:72px 22px 76px;
  text-align:center;
}
.closing-title{
  margin:0 0 12px;
  font-size:clamp(28px, 4.6vw, 56px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:.2px;
  color:var(--text-dark);
}
.gold-accent{
  color:var(--accent-blue);
}
.closing-sub{
  margin:0 auto 26px;
  max-width:980px;
  font-size:18px;
  color:var(--text-gray);
}

.closing-visual{
  margin: 6px auto 22px;
}
.closing-visual img{
  display:block;
  width:100%;
  max-width:900px;
  margin:0 auto;
  height:auto;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
  border-radius:12px;
}

/* PREMIUM WEBSITE TEMPLATES */
.templates-sec{
  background:var(--bg-white);
}
.templates-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:56px 22px 60px;
  text-align:center;
}
.templates-eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--accent-blue);
  margin-bottom:8px;
  font-weight:700;
}
.templates-title{
  margin:0 0 10px;
  font-size:clamp(28px,4.6vw,48px);
  line-height:1.15;
  font-weight:900;
  color:var(--text-dark);
}
.templates-accent{
  color:var(--accent-blue);
}
.templates-sub{
  max-width:980px;
  margin:0 auto 26px;
  color:var(--text-gray);
  font-size:18px;
}

.templates-visual img{
  display:block;
  width:100%;
  max-width:920px;
  height:auto;
  margin: 0 auto 22px;
  box-shadow:0 20px 60px rgba(0,0,0,.1);
  border-radius:12px;
}

/* FAQ SECTION */
.faq-sec{
  position:relative;
  color:var(--text-dark);
  background:var(--bg-light);
  overflow:hidden;
}
.faq-wrap{
  position:relative; z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:64px 22px 40px;
  text-align:center;
}
.faq-eyebrow{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  color:var(--accent-blue);
  margin-bottom:8px;
  font-weight:700;
}
.faq-title{
  margin:0 0 18px;
  font-size:clamp(28px, 4.6vw, 52px);
  line-height:1.12;
  font-weight:900;
  color:var(--text-dark);
}

.faq-list{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:12px;
  text-align:left;
}
.faq-item{
  background:var(--bg-white);
  color:var(--text-dark);
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}
.faq-item summary{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  cursor:pointer;
  font-weight:700;
  color:var(--text-dark);
}
.faq-item summary::-webkit-details-marker{ display:none }
.faq-item summary::after{
  content:"▾";
  font-size:18px;
  color:var(--accent-blue);
  transition: transform .2s ease;
}
.faq-item[open] summary::after{ transform: rotate(-180deg) }
.faq-body{
  padding:0 20px 18px 20px;
  color:var(--text-gray);
  line-height:1.6;
  border-top:1px solid rgba(0,0,0,.06);
}
.faq-body p{ margin:12px 0 0 }

/* Footer */
.site-footer{
  background:var(--bg-white);
  border-top:1px solid rgba(0,0,0,.06);
}
.footer-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:14px 22px;
  text-align:center;
  color:var(--text-gray);
}
.footer-wrap a{ color:inherit; text-decoration:underline }

/* MODAL */
.modal{ position:fixed; inset:0; display:none; z-index:9999 }
.modal[aria-hidden="false"]{ display:block }

.modal-backdrop{
  position:absolute; inset:0; background:rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}

.modal-panel{
  position:relative;
  width:min(640px, 92vw);
  margin: min(8vh,80px) auto;
  background:var(--bg-white);
  border:2px solid var(--accent-blue);
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.2);
  padding:28px 26px 26px;
}

.modal-close{
  position:absolute; top:-18px; right:-18px;
  width:36px; height:36px; border-radius:50%;
  border:none; cursor:pointer; font-size:22px; line-height:1;
  color:#fff; background:var(--text-dark); box-shadow:0 6px 20px rgba(0,0,0,.3);
}

.modal-title{
  margin:0 0 16px; text-align:center;
  font-weight:900; font-size:28px; color:var(--text-dark);
}

.modal-form{ display:grid; gap:12px }
.modal-form input{
  width:100%; padding:14px 12px; font-size:15px;
  border:1px solid rgba(0,0,0,.15); border-radius:8px;
  background:var(--bg-white);
  transition: border-color .2s ease;
}
.modal-form input:focus{
  outline:none;
  border-color:var(--accent-blue);
}

.modal-cta{
  margin-top:6px; border:none; cursor:pointer;
  display:grid; place-items:center;
  padding:16px 32px;
  border-radius:8px; color:#fff;
  background:var(--accent-blue);
  box-shadow:0 4px 12px rgba(59,130,246,.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  font-weight:700; letter-spacing:.02em;
}
.modal-cta .main{ font-size:14px }
.modal-cta .sub{ margin-top:6px; font-size:12px; opacity:.9 }
.modal-cta:hover{ transform:translateY(-2px); background:var(--accent-blue-dark); box-shadow:0 6px 16px rgba(59,130,246,.35) }
.modal-cta:active{ transform:translateY(0) }

@media (max-width:480px){
  .modal-title{ font-size:22px }
  .modal-panel{ padding:22px 18px 20px }
}