/* =========================
   styles.css (CLEAN REWRITE)
   - No duplicates
   - Modern hero + modern pricing compare (no table/grid look)
   - Nav includes Call now button
   ========================= */

/* TOKENS */
:root{
  --bg:#f6f8ff;
  --card:#ffffff;
  --ink:#0b1220;
  --muted:#5b6577;
  --line:#e7eaf3;

  --brand:#2563eb;
  --brand2:#60a5fa;

  --shadow:0 14px 34px rgba(15,23,42,.10);
  --shadow2:0 18px 44px rgba(15,23,42,.12);

  --r:14px;

  --plat-stroke: rgba(0,0,0,.22);
}

/* BASE */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--ink);
  background:linear-gradient(180deg,#fff,var(--bg));
}
a{ color:inherit; }
.wrap{ max-width:1120px; margin:0 auto; padding:20px; }

/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
  position:sticky;
  top:12px;
  z-index:10;
}
.brandRow{ display:flex; align-items:center; gap:10px; font-weight:900; }
.logo{ height:34px; width:auto; display:block; }

.navlinks{
  display:flex;
  align-items:center;
  gap:10px;
}
.navlinks a{
  text-decoration:none;
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.navlinks a:hover{
  background:rgba(37,99,235,.06);
  border-color:var(--line);
}

/* NAV CTA */
.navCta{
  background:#0b1220;
  color:#fff !important;
  border:1px solid #0b1220 !important;
  padding:10px 12px !important;
}
.navCta:hover{
  background:#111827 !important;
}

/* BUTTONS */
.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.btnSolid{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#fff;
  border:none;
}

/* SECTIONS/CARDS */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:20px;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding:28px 0 22px;
}
.heroCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:26px;
}
.tagline{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  color:var(--brand);
  letter-spacing:.10em;
  text-transform:uppercase;
  padding:8px 12px;
  border:1px solid var(--line);
  background:rgba(37,99,235,.05);
  border-radius:999px;
}
.hero h1{
  font-size:48px;
  line-height:1.04;
  margin:14px 0 10px;
  letter-spacing:-.03em;
}
.sub{ color:var(--muted); margin:0; max-width:60ch; font-size:16px; }
.heroPoints{ display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 0; }
.pill{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  padding:8px 10px;
  border-radius:12px;
  background:#eef2ff;
  border:1px solid var(--line);
  font-weight:800;
  font-size:13px;
}
.ctaRow{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }
.fine{ margin-top:12px; color:var(--muted); font-size:13px; }

.heroImage{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.heroImage img{
  width:100%;
  height:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:14px;
}

/* CONTENT GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

/* PRICING BLOCK */
.pricingBlock{
  background:#bff3ff;
  border-radius:18px;
  padding:26px;
  margin:22px 0;
}
.pricingHeader{
  text-align:center;
}
.pricingHeader h2{
  margin:0 0 6px;
  font-size:42px;
  font-weight:1000;
  letter-spacing:-.02em;
}
.pricingHeader p{
  margin:0 auto 18px;
  max-width:60ch;
  color:var(--muted);
  font-size:18px;
}

/* SLIDER */
.sliderWrap{
  width:min(980px,100%);
  margin:0 auto 18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:16px 18px;
}
.sliderTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:10px;
}
.sliderLabel{
  font-weight:950;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--muted);
}
.sliderValue{
  font-weight:1000;
  font-size:26px;
  margin-top:4px;
  letter-spacing:-.01em;
}
.sliderMeta{
  font-size:14px;
  color:var(--muted);
  max-width:48ch;
  text-align:right;
}
.slider{ width:100%; margin:10px 0 0; accent-color:var(--brand); }

/* ===== MODERN COMPARISON (NO TABLE) ===== */
.pricingCompare{
  width:min(1040px, 100%);
  margin: 0 auto;
}

.planGrid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:14px;
  align-items:stretch;
  margin-bottom:12px;
}
.planSpacer{ display:block; }

.planCardLite{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
  padding:16px 16px 14px;
}
.planCardLite.isPlatinum{
  border:2px solid var(--plat-stroke);
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
}
.planTop{ display:grid; gap:6px; }

.planBadgeLite{
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--plat-stroke);
  background:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.planTitleLite{
  font-size:16px;
  font-weight:900;
  color:#0b1220;
}
.planPriceLite{
  font-size:30px;
  font-weight:1000;
  letter-spacing:-.02em;
  display:flex;
  align-items:baseline;
  gap:6px;
}
.planPriceLite .currency{ font-size:18px; opacity:.9; }
.planPriceLite .per{ font-size:14px; font-weight:700; color:#6b7280; }
.planSubLite{ font-size:13px; color:#6b7280; line-height:1.3; }

.compareBody{
  background: rgba(255,255,255,.75);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
  overflow:hidden;
  position:relative;
}

/* right border to “complete” Platinum column */
.compareBody:after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:2px;
  height:100%;
  background: var(--plat-stroke);
  pointer-events:none;
  opacity:.9;
}

.groupTitle{
  padding: 12px 16px;
  font-weight:900;
  color:#111827;
  background: rgba(17,24,39,.03);
  border-top:1px solid rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.08);
}

.compareRow{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:14px;
  padding: 12px 16px;
  align-items:center;
  border-bottom:1px solid rgba(15,23,42,.08);
  background:#fff;
}

.featureLabel{
  color:#111827;
  font-weight:700;
  font-size:14px;
}

.featureVal{
  color:#111827;
  font-weight:700;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
  justify-content:flex-start;
}

/* Platinum inner left border */
.platCol{
  position:relative;
  padding-left:14px;
}
.platCol:before{
  content:"";
  position:absolute;
  left:0;
  top:-12px;
  bottom:-12px;
  width:2px;
  background: var(--plat-stroke);
  opacity:.9;
}

.tick{
  display:inline-flex;
  width:22px;
  height:22px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  font-size:14px;
  background: rgba(34,197,94,.14);
  color:#166534;
  border:1px solid rgba(34,197,94,.25);
}
.dash{
  color:#9ca3af;
  font-weight:1000;
  font-size:18px;
  line-height:1;
}
.note{
  color:#6b7280;
  font-weight:700;
  font-size:13px;
}

.pricingFootnote{
  width:min(980px,100%);
  margin:14px auto 0;
  color:rgba(15,23,42,.65);
  font-size:13px;
  text-align:center;
}

/* CTA CARD */
.pricingCta{
  margin-top:18px;
  display:flex;
  justify-content:center;
}
.pricingCtaCard{
  width:min(980px,100%);
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
}
.ctaTopRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.callNowBtn{ padding:12px 16px; border-radius:14px; }
.callNowNote{ color:var(--muted); font-weight:700; }

.pricingCtaCard h3{
  margin:6px 0 6px;
  font-size:20px;
  font-weight:1000;
  text-align:center;
}
.pricingCtaCard p{
  margin:0 0 12px;
  color:var(--muted);
  text-align:center;
}

.miniForm input,
.miniForm textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
  font-size:15px;
  outline:none;
  background:#fff;
}
.miniForm input:focus,
.miniForm textarea:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}

.field{ display:block; }
.fieldLabel{
  display:block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6b7280;
  margin:6px 0 6px;
}

.miniGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:10px;
}

.miniForm textarea{
  min-height:96px;
  resize:vertical;
  margin-top:10px;
}

.miniForm button{
  width:100%;
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
}

.miniFine{
  margin:10px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

/* FOOTER */
footer{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero{ grid-template-columns:1fr; }
  .grid{ grid-template-columns:1fr; }
  .hero h1{ font-size:36px; }
  .heroImage{ display:none; }

  .sliderTop{ flex-direction:column; align-items:flex-start; }
  .sliderMeta{ text-align:left; max-width:none; }

  .planGrid,
  .compareRow{
    grid-template-columns:1fr;
  }
  .planSpacer{ display:none; }

  .platCol{ padding-left:0; }
  .platCol:before{ display:none; }
  .compareBody:after{ display:none; }

  .miniGrid{ grid-template-columns:1fr; }
}
