
    :root{
      --bg1:#f6f7ff;
      --bg2:#fff7f0;

      --text:#0b134f;
      --muted:#5b6280;

      --primary:#7C3AED;   /* purple */
      --secondary:#22D3EE; /* cyan */
      --accent:#F97316;    /* orange */

      --card:#ffffff;
      --stroke:#e7e9ff;

      --shadow: 0 12px 30px rgba(11,19,79,.12);
      --shadow2: 0 10px 22px rgba(11,19,79,.08);

      --radius:18px;
      --max:1180px;
    }


    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      background: linear-gradient(180deg, var(--bg1) 0%, #ffffff 45%, var(--bg2) 100%);
      overflow-x:hidden;
    }

    a{color:inherit; text-decoration:none}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

    /* Sticky header + anchor offset */
    header{ position:sticky; top:0; z-index:50; background:#fff; border-bottom:1px solid var(--stroke); }
    section, main{ scroll-margin-top: 90px; }

    /* ===================== pricing slider ===================== */.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.7s;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 70%;
    text-align: center;
}

.subtitle {
    font-size: 20px;
    margin-bottom: 10px;
   
}

.title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #E74C3C;
}

.text {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-main {
    background:#0B134F;
    padding: 12px 25px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}
.btn-main:hover {
    background: #e74c3c;
    color: #fff;
}

.btn-main:hover {
    background: #c83424;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    padding: 5px 15px;
    z-index: 10;
    transition: 0.3s;
}

.arrow:hover {
    color: #e74c3c;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dots span {
    width: 12px;
    height: 12px;
    background: #eee;
    display: inline-block;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots .active-dot {
    background: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 420px; }
    .title { font-size: 30px; }
    .subtitle { font-size: 16px; }
    .text { font-size: 14px; }
}


    /* ===================== SECTIONS ===================== */
    section{ padding:30px 0; }
    .secHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .secHead h2{
      margin:0;
      font-size: clamp(20px, 2.6vw, 30px);
      letter-spacing:-.4px;
    }
    .secHead p{
      margin:0;
      color:var(--muted);
      max-width: 64ch;
      line-height:1.6;
      font-weight:650;
    }

    /* Toggle */
    .toggle{
      display:inline-flex;
      gap:8px;
      align-items:center;
      padding:6px;
      border-radius:999px;
      border:1px solid var(--stroke);
      background:#fff;
      box-shadow: 0 8px 18px rgba(11,19,79,.06);
    }
    .toggle button{
      cursor:pointer;
      border:0;
      padding:10px 12px;
      border-radius:999px;
      background: transparent;
      color:var(--muted);
      font-weight:950;
      font-size:13px;
    }
    .toggle button.active{
      background: linear-gradient(135deg, rgba(124,58,237,.14), rgba(34,211,238,.14));
      color:var(--text);
    }
    .save{
      font-size:12px;
      font-weight:950;
      padding:6px 10px;
      border-radius:999px;
      background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.14));
      border: 1px solid var(--stroke);
      color: rgba(11,19,79,.85);
    }

    /* Pricing cards */
    .pricingGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
      align-items:stretch;
    }
    .card{
      border:1px solid var(--stroke);
      background:#fff;
      border-radius: 24px;
      padding:18px;
      box-shadow: var(--shadow);
      position:relative;
      transition: transform .18s ease;
    }
    .card:hover{ transform: translateY(-3px); }
    .badge{
      position:absolute;
      top:14px; right:14px;
      padding:7px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:950;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color:#fff;
    }
    .cardTitle{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .cardTitle h3{margin:0; font-size:18px}
    .cardTitle span{color:var(--muted); font-weight:800; font-size:13px}

    .price{margin:12px 0 10px; display:flex; align-items:flex-end; gap:8px}
    .price .amt{font-size:36px; font-weight:950; letter-spacing:-1px; line-height:1}
    .price .per{color:var(--muted); font-weight:900; margin-bottom:6px; font-size:13px}

    .desc{margin:0 0 14px; color:var(--muted); line-height:1.6; font-size:14px; font-weight:650}
    .list{margin:0; padding:0; list-style:none; display:grid; gap:10px}
    .li{
      display:flex; gap:10px; align-items:flex-start;
      color:var(--muted);
      font-weight:750;
      line-height:1.5;
      font-size:14px;
    }
    .li svg{flex:0 0 auto; margin-top:2px}
    .cardActions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
    
    .cardActions a{
        flex:1;
        text-align:center;
        padding:10px 0;
        border:1px solid var(--stroke);
        border-radius:12px;
        font-weight:950;
        font-size:14px;
        color:#fff;
        background:#0B134F;
        box-shadow: 0 8px 18px rgba(11,19,79,.06);
    }
    .contact-info a{
        flex:1;
        text-align:center;
        padding:10px 12px;
        border:1px solid var(--stroke);
        border-radius:5px;
        font-weight:950;
        font-size:14px;
        color:#fff;
        background:#0B134F;
        box-shadow: 0 8px 18px rgba(11,19,79,.06);
    }

    .highlight{
      border-color: rgba(34,211,238,.7);
      background: linear-gradient(180deg, #ffffff, #f4feff);
    }

    /* add-ons */
    .addons{
      margin-top:14px;
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:12px;
    }
    .addon{
      border:1px solid var(--stroke);
      background:#fff;
      border-radius: 20px;
      padding:14px;
      box-shadow: 0 10px 22px rgba(11,19,79,.07);
    }
    .addon b{display:flex; align-items:center; gap:10px}
    .addon p{margin:8px 0 0; color:var(--muted); line-height:1.55; font-size:13px; font-weight:650}

    /* Comparison table */
    .tableWrap{
      border:1px solid var(--stroke);
      border-radius: 24px;
      overflow:auto;
      background:#fff;
      box-shadow: var(--shadow);
    }
    table{width:100%; border-collapse:collapse; font-size:14px; min-width:760px}
    th,td{padding:14px 12px; border-bottom:1px solid #f0f2ff}
    th{
      text-align:left;
      color:var(--muted);
      font-weight:950;
      background:#f7f8ff;
    }
    td{color:var(--muted); font-weight:750}
    tr:last-child td{border-bottom:0}
    .center{text-align:center}
    .tick{color:#16a34a; font-weight:950}
    .dash{color:#c3c7dd; font-weight:950}

    /* Testimonials */
    .testGrid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .quote{
      border:1px solid var(--stroke);
      background:#fff;
      border-radius: 24px;
      padding:18px;
      box-shadow: 0 10px 22px rgba(11,19,79,.07);
    }
    .quote p{margin:0 0 12px; line-height:1.6; font-weight:750; color:var(--text)}
    .who{display:flex; align-items:center; justify-content:space-between; gap:10px}
    .who b{display:block}
    .who small{display:block; color:var(--muted); font-weight:850; margin-top:2px}
    .stars{letter-spacing:2px; color: rgba(11,19,79,.6); font-weight:950}

    /* FAQ */
    .faq{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:14px;
    }
    details{
      border:1px solid var(--stroke);
      background:#fff;
      border-radius: 24px;
      padding:16px;
      box-shadow: 0 10px 22px rgba(11,19,79,.06);
    }
    summary{
      cursor:pointer;
      list-style:none;
      font-weight:950;
      color:var(--text);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    summary::-webkit-details-marker{display:none}
    details p{
      margin:10px 0 0;
      color:var(--muted);
      line-height:1.6;
      font-weight:700;
      font-size:14px;
    }
    .chev{
      width:26px; height:26px;
      border-radius:10px;
      border:1px solid var(--stroke);
      background:#f7f8ff;
      display:grid; place-items:center;
      transition: transform .15s ease;
      flex: 0 0 auto;
    }
    details[open] .chev{transform: rotate(180deg)}

    /* CTA */
    .cta{
      border:1px solid var(--stroke);
      background: linear-gradient(135deg, #ffffff, #f6f7ff);
      border-radius: 28px;
      padding:22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      box-shadow: var(--shadow);
    }
    .cta h3{margin:0; font-size:22px; letter-spacing:-.3px}
    .cta p{margin:6px 0 0; color:var(--muted); line-height:1.6; font-weight:700; max-width:70ch}

    /* ================= RESPONSIVE ================= */
    @media (max-width: 980px){
      .pricingBanner{ grid-template-columns: 1fr; }
      .pb-grid{ grid-template-columns: 1fr 1fr; }

      .pricingGrid{grid-template-columns: repeat(2, 1fr)}
      .addons{grid-template-columns: repeat(2, 1fr)}
      .testGrid{grid-template-columns: repeat(2, 1fr)}
      .faq{grid-template-columns: 1fr}
      .navlinks{display:none}
    }

    @media (max-width: 680px){
      .nav{flex-wrap:wrap}
      .navlinks{display:flex; width:100%; justify-content:flex-start; gap:8px}

      .pb-grid{ grid-template-columns: 1fr; }
      .pb-card.featured{ grid-column: auto; }

      .pricingGrid{grid-template-columns: 1fr}
      .addons{grid-template-columns: 1fr}
      .testGrid{grid-template-columns: 1fr}
    }

    @media (max-width: 520px){
      th,td{padding:12px 10px}
      .price .amt{font-size:34px}
      .pb-price .amt{font-size:26px}
    }
