:root {
  --blue: #1B51A7;
  --blue-dark: #133d80;
  --red: #CC2200;
  --red-light: #f5e8e5;
  --white: #ffffff;
  --off: #F7F6F3;
  --light: #EEF2F9;
  --border: #DDE3EE;
  --text: #111111;
  --muted: #6b7280;
  --card: #ffffff;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Open Sans',sans-serif;background:var(--off);color:var(--text);overflow-x:hidden;font-size:16px}

/* ── TOPBAR ── */
.topbar{
  background:var(--blue);
  color:#fff;
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.3px;
}
.topbar .dot{width:7px;height:7px;background:var(--red);border-radius:50%;display:inline-block;animation:pulse 1.5s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
#countdown{
  font-family:'Open Sans',sans-serif;
  font-size:14px;
  font-weight:700;
  background:rgba(255,255,255,0.15);
  padding:3px 12px;
  border-radius:3px;
  letter-spacing:1px;
}

.sticky
{
  position:sticky;
  top:0;
  z-index:100;
}
/* ── NAV ── */
nav{
  background:var(--white);
  border-bottom:1px solid var(--border);
  padding:16px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 1px 8px rgba(0,0,0,0.06);
}
.logo img{height:42px;width:auto}
.nav-cta{
  background:var(--red);
  color:#fff;
  border:none;
  padding:10px 24px;
  font-family:'Open Sans',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:background 0.2s;
}
.nav-cta:hover{background:#aa1c00}

/* ── HERO ── */
.hero{
  background: linear-gradient(to right, var(--white) 40%, rgba(255,255,255,0) 80%), url('./assets/hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 120px 60px;
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: start;
  min-height: 600px;
}
.hero-inner{max-width:1200px;position:relative;z-index:1;display:flex;flex-direction:column;align-items:start; width: 100%}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--light);
  border:1px solid var(--border);
  padding:5px 14px;
  font-size:16px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:24px;
}
.hero h1{
  font-family:'Open Sans',sans-serif;
  font-size:clamp(38px,5vw,64px);
  font-weight:800;
  line-height:1.08;
  color:var(--text);
  margin-bottom:20px;
}
.hero h1 span{color:var(--blue)}
.hero h1 em{color:var(--red);font-style:normal}
.hero-sub{
  font-size:17px;
  font-weight:300;
  color:var(--muted);
  line-height:1.7;
  /* margin:0 auto; */
  max-width:580px;
}
.hero-sub strong{color:var(--text);font-weight:600}
.slots-bar-wrap{
  display:inline-flex;
  align-items:center;
  gap:20px;
  background:var(--off);
  border:1px solid var(--border);
  padding:14px 20px;
  margin-bottom:32px;
}
.slots-label{font-size:11px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.bar-track{width:160px;height:5px;background:var(--border);border-radius:2px}
.bar-fill{width:30%;height:100%;background:var(--red);border-radius:2px;transition:width 1s}
.slots-num{font-family:'Open Sans',sans-serif;font-size:28px;font-weight:800;color:var(--red);line-height:1}
.slots-num small{font-size:12px;color:var(--muted);font-weight:400}
.hero-btns{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
.btn-primary{
  background:var(--blue);
  color:#fff;
  border:none;
  padding:14px 32px;
  font-family:'Open Sans',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:background 0.2s;
}
.btn-primary:hover{background:var(--blue-dark)}
.btn-outline{
  background:transparent;
  color:var(--blue);
  border:1px solid var(--blue);
  padding:14px 32px;
  font-family:'Open Sans',sans-serif;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:all 0.2s;
}
.btn-outline:hover{background:var(--light)}

/* ── TRUTH SECTION ── */
.truth{
  background:var(--off);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:80px 60px;
}
.truth-inner{max-width:1200px;margin:0 auto}
.truth-flex{
  display:flex;
  gap:80px;
  align-items:flex-start;
}
.truth-left{flex:0 0 45%;display:flex;flex-direction:column}
.truth-left .sec-label{margin-bottom:24px;display:block}
.truth-left h2{
  font-family:'Open Sans',sans-serif;
  font-size:clamp(28px,3vw,42px);
  font-weight:800;
  line-height:1.15;
  color:var(--text);
  margin-bottom:32px;
}
.truth-left p{
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:24px;
}
.truth-left p:last-child{margin-bottom:0}
.truth-left p strong{color:var(--text);font-weight:600}
.truth-right{flex:1;display:flex;flex-direction:column}
.truth-quote{
  border-left:4px solid var(--blue);
  padding-left:28px;
  font-size:17px;
  font-style:italic;
  line-height:1.8;
  color:var(--text);
  margin-bottom:32px;
  font-weight:500;
  letter-spacing:0.2px;
}
.truth-right p{
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
  margin-bottom:24px;
}
.truth-right p:last-child{margin-bottom:0}
.truth-right p strong{color:var(--text);font-weight:700}

/* ── PAIN SECTION ── */
.pain{
  padding:80px 60px;
  background:var(--off);
}
.pain-inner{max-width:1000px;margin:0 auto}
.sec-label{
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:16px;
  display:block;
}
.pain-stages{display:flex;flex-direction:column;gap:0}
.stage{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:0;
  border:1px solid var(--border);
  background:var(--white);
  margin-bottom:2px;
  overflow:hidden;
}

.stage-num{
  background:var(--blue);
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:32px 24px;
  text-align:center;
}
.stage-num .n{
  font-family:'Open Sans',sans-serif;
  font-size:52px;
  font-weight:800;
  line-height:1;
  opacity:0.25;
}
.stage-num .tag{
  font-family:'Open Sans',sans-serif;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-top:4px;
}
.stage:nth-child(2) .stage-num{background:var(--blue-dark)}
.stage:nth-child(3) .stage-num{background:#0e2f5c}
.stage-body{padding:32px 36px}
.stage-body h3{
  font-family:'Open Sans',sans-serif;
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
  color:var(--text);
}
.stage-body p{
  font-size:15px;
  line-height:1.75;
  color:var(--muted);
  max-width:600px;
}
.stage-body p strong{color:var(--text)}
.stage-body .solution{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:16px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--red);
}
.stage-body .solution::before{content:'→';font-size:14px}

/* ── WHY RAD5 ── */
.why{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:70px 60px;
}
.why-inner{max-width:1200px;margin:0 auto}
.stats-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  margin-bottom:52px;
  border:1px solid var(--border);
  overflow:hidden;
}
.stat-box{
  background:var(--off);
  padding:28px 24px;
  text-align:center;
}
.stat-n{
  font-family:'Open Sans',sans-serif;
  font-size:42px;
  font-weight:800;
  color:var(--blue);
  line-height:1;
}
.stat-n em{color:var(--red);font-style:normal}
.stat-d{font-size:12px;font-weight:500;color:var(--muted);text-transform:uppercase;letter-spacing:1px;margin-top:6px}

/* LOGO SCROLL */
.scroll-label{font-size:11px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:20px}
.logo-track-wrap{overflow:hidden;position:relative}
.logo-track-wrap::before,.logo-track-wrap::after{
  content:'';
  position:absolute;top:0;bottom:0;
  width:80px;z-index:2;pointer-events:none;
}
.logo-track-wrap::before{left:0;background:linear-gradient(to right,var(--white),transparent)}
.logo-track-wrap::after{right:0;background:linear-gradient(to left,var(--white),transparent)}
.logo-track{
  display:flex;
  gap:12px;
  animation:scroll-logos 28s linear infinite;
  width:max-content;
}
.logo-track:hover{animation-play-state:paused}
@keyframes scroll-logos{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.client-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px;
  font-weight:600;
  flex-shrink:0;
}
.client-chip img{
  height:70px;
  width:auto;
  object-fit:contain;
}
.client-chip .text-only{
  display:flex;
  align-items:center;
}

/* ── WHY NOW ── */
.why-now{
  background:var(--blue);
  color:#fff;
  padding:60px 60px;
}
.why-now-inner{max-width:700px;margin:0 auto;text-align:center}
.why-now .sec-label{color:rgba(255,255,255,0.5);margin-bottom:16px}
.why-now h2{
  font-family:'Open Sans',sans-serif;
  font-size:clamp(26px,3.5vw,40px);
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
}
.why-now h2 em{color:#ffd166;font-style:normal}
.why-now p{
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,0.75);
  margin-bottom:12px;
}
.why-now p strong{color:#fff}
.why-now .mandate{
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  padding:16px 24px;
  margin-top:24px;
  font-size:14px;
  color:rgba(255,255,255,0.9);
  line-height:1.6;
}
.why-now .mandate strong{color:#ffd166}

/* ── PACKAGES ── */
.packages{
  padding:80px 60px;
  background:var(--off);
}
.packages-inner{max-width:1080px;margin:0 auto}
.pkg-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:var(--border);
  margin-bottom:2px;
}
.pkg{
  background:var(--white);
  padding:32px 26px;
  display:flex;
  flex-direction:column;
}
.pkg.featured{
  background:#fff;
  outline:2px solid var(--blue);
  outline-offset:-1px;
  position:relative;
  z-index:2;
}
.feat-tag{
  position:absolute;
  top:-13px;
  left:50%;
  transform:translateX(-50%);
  background:var(--blue);
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:4px 14px;
  white-space:nowrap;
}
.pkg-tier{font-size:10px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--blue);margin-bottom:4px}
.pkg-name{font-family:'Open Sans',sans-serif;font-size:24px;font-weight:800;margin-bottom:4px}
.pkg-tagline{font-size:12px;color:var(--muted);margin-bottom:20px;line-height:1.5}

/* item list */
.item-list{margin-bottom:0;flex:1}
.item-cat{font-size:9px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--muted);margin:16px 0 8px;border-top:1px solid var(--border);padding-top:12px}
.item-cat:first-child{border-top:none;padding-top:0;margin-top:0}
.item-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
  margin-bottom:6px;
}
.item-name{font-size:12px;color:var(--text);line-height:1.5;flex:1}
.item-price{font-size:11px;font-weight:600;color:var(--muted);white-space:nowrap;flex-shrink:0}
.pkg-inherits{
  font-size:11px;
  color:var(--muted);
  font-style:italic;
  padding:8px 12px;
  background:var(--off);
  margin-bottom:16px;
}
.pkg-inherits strong{color:var(--blue);font-style:normal}

/* pricing */
.pkg-total-block{
  border-top:2px solid var(--border);
  margin-top:20px;
  padding-top:16px;
}
.total-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px}
.total-label{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:var(--muted)}
.total-val{font-size:13px;font-weight:600;color:var(--muted);text-decoration:line-through}
.promo-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:6px}
.promo-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--red)}
.promo-val{font-family:'Open Sans',sans-serif;font-size:26px;font-weight:800;color:var(--red)}
.save-badge{
  display:inline-block;
  background:var(--red-light);
  color:var(--red);
  font-size:11px;
  font-weight:700;
  padding:3px 10px;
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.pkg-cta{
  width:100%;
  padding:13px;
  font-family:'Open Sans',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.5px;
  cursor:pointer;
  border:none;
  transition:all 0.2s;
  text-transform:uppercase;
}
.pkg-cta.solid{background:var(--blue);color:#fff}
.pkg-cta.solid:hover{background:var(--blue-dark)}
.pkg-cta.outline{background:transparent;border:1px solid var(--blue);color:var(--blue)}
.pkg-cta.outline:hover{background:var(--light)}
.pkg-cta.red-solid{background:var(--red);color:#fff}
.pkg-cta.red-solid:hover{background:#aa1c00}

/* CUSTOM PACKAGE */
.custom-pkg{
  background:var(--white);
  border:1px solid var(--border);
  padding:40px;
  margin-top:2px;
}
.custom-pkg-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
  margin-bottom:32px;
  flex-wrap:wrap;
}
.custom-pkg-header h3{font-family:'Open Sans',sans-serif;font-size:22px;font-weight:800;margin-bottom:6px}
.custom-pkg-header p{font-size:13px;color:var(--muted);max-width:420px;line-height:1.6}
.cb-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-bottom:28px;
}
.cb-category h4{
  font-size:10px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--blue);
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--border);
}
.cb-item{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-bottom:8px;
}
.cb-item input[type="checkbox"]{
  width:15px;height:15px;
  accent-color:var(--blue);
  margin-top:2px;
  flex-shrink:0;
  cursor:pointer;
}
.cb-item label{font-size:12px;color:var(--text);line-height:1.5;cursor:pointer}
.custom-other{margin-bottom:24px}
.custom-other label{display:block;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1px;color:var(--muted);margin-bottom:8px}
.custom-other textarea{
  width:100%;
  border:1px solid var(--border);
  background:var(--off);
  padding:12px 16px;
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  color:var(--text);
  resize:vertical;
  min-height:90px;
  outline:none;
}
.custom-other textarea:focus{border-color:var(--blue)}

/* Custom Package Enhancements */
.custom-instruction {
  background: #f8f9fa;
  border-left: 4px solid var(--blue);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: #444;
  border-radius: 4px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.category-header h4 {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
}

.select-all-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.select-all-label input[type="checkbox"] {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  margin: 8px 0;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.form-row input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--off);
  font-size: 14px;
  border-radius: 6px;
  outline: none;
}

.form-row input:focus {
  border-color: var(--blue);
}

.custom-other label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ── WHAT HAPPENS ── */
.what-happens{
  background:var(--white);
  border-top:1px solid var(--border);
  padding:70px 60px;
}
.what-inner{max-width:900px;margin:0 auto}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;margin-top:40px;background:var(--border)}
.step{
  background:var(--off);
  padding:28px 22px;
  position:relative;
}
.step-n{
  font-family:'Open Sans',sans-serif;
  font-size:36px;
  font-weight:800;
  color:var(--border);
  line-height:1;
  margin-bottom:12px;
}
.step h4{font-family:'Open Sans',sans-serif;font-size:15px;font-weight:700;margin-bottom:8px;color:var(--text)}
.step p{font-size:12px;color:var(--muted);line-height:1.6}
.step.active{background:var(--blue)}
.step.active .step-n{color:rgba(255,255,255,0.2)}
.step.active h4{color:#fff}
.step.active p{color:rgba(255,255,255,0.75)}

/* ── URGENCY ── */
.urgency{
  background:var(--red);
  color:#fff;
  padding:60px 60px;
  text-align:center;
}
.urgency h2{
  font-family:'Open Sans',sans-serif;
  font-size:clamp(26px,3.5vw,42px);
  font-weight:800;
  line-height:1.15;
  margin-bottom:16px;
}
.urgency p{
  font-size:15px;
  color:rgba(255,255,255,0.8);
  max-width:520px;
  margin:0 auto 36px;
  line-height:1.7;
}
.urgency p strong{color:#fff}
.slots-grid{
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.slot{
  width:40px;height:40px;
  border:1px solid rgba(255,255,255,0.3);
  display:flex;align-items:center;justify-content:center;
  font-family:'Open Sans',sans-serif;
  font-size:12px;font-weight:700;
  color:rgba(255,255,255,0.5);
}
.slot.taken{background:rgba(0,0,0,0.25);border-color:rgba(0,0,0,0.2);color:rgba(255,255,255,0.4)}
.slot.taken::after{content:'✕'}
.slot:not(.taken)::after{content:attr(data-n)}
.slots-note{font-size:12px;color:rgba(255,255,255,0.6);margin-bottom:32px;letter-spacing:0.5px}
.slots-note span{color:#fff;font-weight:600}
.btn-white{
  background:#fff;
  color:var(--red);
  border:none;
  padding:14px 36px;
  font-family:'Open Sans',sans-serif;
  font-size:13px;font-weight:700;
  cursor:pointer;
  text-decoration:none;
  display:inline-block;
  transition:all 0.2s;
  letter-spacing:0.5px;
}
.btn-white:hover{background:#f0f0f0}

/* ── FOOTER ── */
footer{
  background:var(--text);
  color:rgba(255,255,255,0.5);
  padding:28px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:12px;
}
footer .logo-f img{height:30px;}
footer a{color:rgba(255,255,255,0.5);text-decoration:none}
footer a:hover{color:#fff}

/* SCROLL REVEAL */
.reveal{opacity:0;transform:translateY(20px);transition:opacity 0.6s,transform 0.6s}
.reveal.visible{opacity:1;transform:none}
.d1{transition-delay:0.1s}.d2{transition-delay:0.2s}.d3{transition-delay:0.3s}

/* RESPONSIVE */
@media(max-width:900px){
  nav,section,.hero,.why,.why-now,.packages,.what-happens,.urgency,footer{padding-left:20px;padding-right:20px}
  .hero {
    background: linear-gradient(to bottom, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.7) 100%), url('./assets/hero.png');
    background-position: center right;
    min-height: auto;
    padding: 80px 20px;
  }
  .truth-flex{flex-direction:column;gap:40px}
  .truth-left{flex:1 1 auto}
  .truth-right{flex:1 1 auto}
  .truth-left h2{font-size:28px}
  .stage{grid-template-columns:80px 1fr}
  .stage-num .n{font-size:32px}
  .pkg-grid{grid-template-columns:1fr;background:transparent;gap:12px}
  .cb-grid{grid-template-columns:1fr;gap:16px}
  .steps{grid-template-columns:1fr 1fr;gap:2px}
  .stats-row{grid-template-columns:1fr}
  .custom-pkg-header{flex-direction:column;gap:16px}
  .btn-outline{
  border:1px solid var(--blue);
  padding:8px 20px;
  font-size:12px;
}
}

@media(max-width:900px){
  .topbar{
  padding:8px 8px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3px;
  font-size:10px;
}
#countdown{
  font-size:10px;
}
nav{
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo img{height:28px;width:auto}
.nav-cta{
  padding:5px 12px;
  font-size:10px;
}
  .truth{
  padding:40px 20px;
}
  .pain{
  padding:40px 20px;
  background:var(--off);
}
  .stage{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
  }
  .stage-body{padding:16px !important}
  .stage-body h3{
    font-size:15px;
  }
  .stage-body p{
    font-size:12px;
    line-height:1.75;
  }
  .btn-primary{
  padding:8px 20px;
  font-size:12px;
}
.steps{display:grid;grid-template-columns:repeat(1,1fr);}
footer {
  display:flex;
  justify-content:space-between;
  font-size:10px;
}
footer img {
  height:16px;
}
footer a{color:rgba(255,255,255,0.5);text-decoration:none;font-size:8px}

/* Custom Package - Clean Design */
.custom-pkg-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.custom-instruction {
  background: #f8f9fa;
  border-left: 2px solid var(--blue);
  padding: 8px 10px;
  margin-bottom: 24px;
  font-size: 10.5px;
  color: #444;
  border-radius: 4px;
}

.cb-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.category-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.select-all-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.cb-item input[type="checkbox"] {
  width: 13px;
  height: 13px;
  accent-color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Sub Categories - Presence & Business Systems */
.sub-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.sub-category h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  margin-top: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Contact Fields */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.form-row input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--off);
  font-size: 14px;
  border-radius: 6px;
  outline: none;
}

.form-row input:focus {
  border-color: var(--blue);
}

.custom-other label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 8px;
}

.custom-other textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--off);
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 6px;
  min-height: 130px;
  resize: vertical;
}
.packages{
  padding:20px 10px;
}
.custom-pkg{
  background:var(--white);
  border:1px solid var(--border);
  padding:20px;
  margin-top:2px;
}
.hero{
  background: linear-gradient(to right, var(--white) 30%, rgba(255,255,255,0) 80%), url('./assets/hero.png');
  background-size: cover;
  background-blend-mode: overlay;
  background-color: rgba(255,255,255,0.4);
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
}
.eyebrow{
  gap:5px;
  padding:3px 10px;
  font-size:12px;
  font-weight:700;
}
.hero h1{
  font-size:clamp(30px,4vw,60px);
}
.hero-sub{
  font-size:14px;
  font-weight:400;
  margin-bottom: 10px;
  color:var(--text);
  line-height:1.7;
  max-width:580px;
}
.slots-bar-wrap{
  gap:20px;
  padding:12px 16px;
}

}

/* ── WHATSAPP WIDGET ── */
.wa-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}
.wa-float-btn {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.wa-float-btn:hover { transform: scale(1.1); }
.wa-float-btn img { width: 28px; height: 28px; }