/* ====== THEME ====== */
:root{
  --navy:#061a4a;
  --navy-2:#06153d;
  --primary:#1237ff;
  --accent:#2f6bff;
  --soft:#d9e7ff;
  --soft-2:#c8dcff;
  --card:#f2f6ff;
  --radius:22px;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#0b1634;
  background:#fff;
}

a{ text-decoration:none; }

.btn-pill{ border-radius:999px; }
.btn-primary{
  background: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary{
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover{
  background: var(--primary);
  border-color: var(--primary);
}

.section-pad{ padding: 56px 0; }

/* ====== NAV ====== */
.brand-dot{
  width:14px; height:14px; border-radius:50%;
  background: var(--primary);
  display:inline-block;
}
.brand-dot.invert{ background:#fff; }
.brand-text{ letter-spacing:.08em; font-size:.95rem; }

/* ====== HERO ====== */
.hero-wrap{
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}
.hero-card{
  border-radius: var(--radius);
  background: rgba(20, 60, 200, .18);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hero-badge{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  border-radius:999px;
  padding:.35rem .65rem;
}
.hero-pills{
  display:flex; flex-wrap:wrap;
  gap:.6rem;
}
.pill-chip{
  color:#fff;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius:999px;
  padding:.5rem .8rem;
  font-size:.9rem;
  display:flex; align-items:center; gap:.5rem;
}
.pill-dot{
  width:8px; height:8px; border-radius:50%;
  background: #fff;
  opacity:.85;
}

/* ====== 101 cards ====== */
.info-card{
  background: var(--soft);
  border: 1px solid rgba(12,60,255,.10);
  border-radius: 18px;
  padding: 18px;
  min-height: 122px;
  height: 100%;
}
.headline-big{
  font-weight: 800;
  font-size: clamp(1.35rem, 1.5vw + 1rem, 2.05rem);
  line-height: 1.2;
  color:#13307a;
  max-width: 980px;
  margin: 0 auto;
}
.text-accent{ color: var(--primary); }

/* ====== Feature box ====== */
.feature-box{
  background: var(--soft-2);
  border-radius: var(--radius);
}
.feature-list{
  padding-left: 1.2rem;
  margin: 0;
}
.feature-list li{ margin-bottom: .6rem; }
.feature-list li:last-child{ margin-bottom:0; }

/* =========================================
   ✅ PROGRAM SECTION (CARD FORMAT LIKE IMAGE)
========================================= */
.program-wrap{
  background:#fff;
}
.program-title{
  font-size: clamp(2rem, 2.3vw + 1rem, 3.2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.program-grid{
  display:flex;
      flex-direction: row;
    gap: 18px;
}

.program-row{
  display:grid;
  /* grid-template-columns: 420px 1fr; */
  gap:34px;
  align-items:center;
}

.program-row.reverse{
  /* grid-template-columns: 1fr 420px; */
}

/* image card */
.program-media{
  border-radius: 26px;
  overflow:hidden;
  background: #f3f6ff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  height: 260px;
}
.program-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* text card */
.program-card{
  background:#fff;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  padding: 34px;
  min-height: 180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.program-card h3{
      font-size: 16px;
    font-weight: 700;
  margin: 8px 0 10px;
  color:#0b1634;
}
.program-card p{
  margin:0;
  color: rgba(11,22,52,.75);
  font-size: 1.05rem;
  line-height:1.55;
}

/* step badge */
.step-badge{
  width:54px;
  height:54px;
  border-radius: 16px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size: 1.1rem;
  box-shadow: 0 14px 26px rgba(18,55,255,.25);
}

/* responsive */
@media (max-width: 992px){
  .program-row,
  .program-row.reverse{
    grid-template-columns: 1fr;
  }
  .program-media{
    height: 240px;
  }
}

/* ====== Pricing ====== */
.pricing-wrap{
  background: linear-gradient(180deg, var(--navy) 0%, #04102f 100%);
}
.price-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  height: 100%;
  position: relative;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.price-card .price-top{
  padding: 26px 24px 14px;
}
.price-card .price-body{
  padding: 14px 24px 24px;
}
.price-card.featured{
  background: rgba(44, 92, 255, .18);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-6px);
}
.price-badge{
  position:absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.18);
  color:#fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding: .35rem .6rem;
  font-size: .75rem;
}
.price-icon{
  width: 56px; height:56px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  display:grid; place-items:center;
  margin-bottom: 14px;
}
.price-icon .bubble{
  width: 22px; height:22px; border-radius: 50%;
  background: #fff; opacity:.9;
  box-shadow: 22px -10px 0 rgba(255,255,255,.6);
}
.price-icon .syringe{
  width: 34px; height: 10px; border-radius: 6px;
  background: #fff;
  position: relative;
}
.price-icon .syringe:after{
  content:"";
  position:absolute;
  right:-12px; top:50%;
  transform: translateY(-50%);
  width: 12px; height: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,.8);
}
.price-icon .pen{
  width: 10px; height: 34px; border-radius: 6px;
  background: #fff;
  position: relative;
}
.price-icon .pen:after{
  content:"";
  position:absolute;
  bottom:-6px; left:50%;
  transform: translateX(-50%);
  width: 18px; height: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,.8);
}
.checklist{
  list-style:none;
  padding-left:0;
  margin: 0 0 18px 0;
  color: rgba(255,255,255,.92);
}
.checklist li{
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.checklist li:last-child{ margin-bottom:0; }
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  color:#fff;
  opacity:.9;
  font-weight: 800;
}

/* ====== Mid cards ====== */
.mini-card{
  border-radius: var(--radius);
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 34px rgba(0,0,0,.05);
}
.mini-icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: var(--soft);
  font-size: 1.2rem;
}
.stat-quote{
  background: #f4f7ff;
  border-radius: var(--radius);
  border:1px solid rgba(0,0,0,.05);
}

/* ====== Support card ====== */
.support-card{
  background: var(--soft-2);
  border-radius: var(--radius);
}

/* ====== Dark tiles ====== */
.dark-band{
  background: linear-gradient(180deg, var(--navy) 0%, #04102f 100%);
}
.tile-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow:hidden;
  height:100%;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
}
.tile-card img{
  width:100%;
  height: 140px;
  object-fit: cover;
}
.tile-body{ padding: 14px 14px 16px; color:#fff; }

/* ====== Results strip ====== */
.result-strip{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.result-photo{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}
.result-photo img{ width:100%; height: 220px; object-fit: cover; }

/* ====== FAQ ====== */
.faq-wrap{
  background: linear-gradient(180deg, var(--navy) 0%, #04102f 100%);
}
.faq-accordion .accordion-item{
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.14);
}
.faq-accordion .accordion-button{
  background: transparent;
  color:#fff;
  padding: 18px 0;
  font-weight: 600;
}
.faq-accordion .accordion-button:focus{
  box-shadow:none;
}
.faq-accordion .accordion-button::after{
  filter: invert(1);
  opacity: .9;
}
.faq-accordion .accordion-body{
  color: rgba(255,255,255,.75);
  padding: 0 0 18px 0;
}

/* ====== Footer ====== */
.site-footer{
  background: #04102f;
}
.footer-link{
  color: rgba(255,255,255,.68);
}
.footer-link:hover{ color:#fff; }
.footer-input{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
}

/* ====== Responsive ====== */
@media (max-width: 991px){
  .result-strip{ grid-template-columns: 1fr 1fr; }
  .result-photo img{ height: 180px; }
}
@media (max-width: 575px){
  .section-pad{ padding: 44px 0; }
  .hero-card{ padding: 18px !important; }
  .result-strip{ grid-template-columns: 1fr; }
  .result-photo img{ height: 220px; }
}
