:root{
      --navy:#112b5c;
      --navy-2:#163872;
      --gold:#e0a31a;
      --gold-2:#f0b42f;
      --text:#1e2430;
      --muted:#667085;
      --bg:#f6f8fb;
      --white:#ffffff;
      --line:#e5e7eb;
      --success:#0f9d58;
      --danger:#cc3d3d;
      --shadow:0 18px 45px rgba(17,43,92,.12);
      --radius:20px;
      --radius-sm:14px;
      --max:1180px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      color:var(--text);
      background:var(--bg);
      line-height:1.6;
    }

    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    .container{
      width:min(var(--max), calc(100% - 32px));
      margin:0 auto;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:16px 26px;
      border-radius:999px;
      font-weight:700;
      transition:.2s ease;
      border:2px solid transparent;
      cursor:pointer;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      background:linear-gradient(135deg,var(--gold),var(--gold-2));
      color:#111827;
      box-shadow:0 12px 30px rgba(224,163,26,.22);
    }
    .btn-secondary{
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.18);
      color:#fff;
    }

    .eyebrow{
      display:inline-block;
      padding:8px 14px;
      background:rgba(224,163,26,.14);
      color:#8c6200;
      border:1px solid rgba(224,163,26,.24);
      border-radius:999px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
      text-transform:uppercase;
    }

    .section{
      padding:84px 0;
    }

    .section-title{
      font-size:clamp(30px,4vw,50px);
      line-height:1.1;
      margin:14px 0 16px;
      color:var(--navy);
    }

    .section-subtitle{
      max-width:820px;
      font-size:18px;
      color:var(--muted);
      margin:0 auto;
    }

    .center{text-align:center}

    /* Header */
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(10px);
      background:rgba(246,248,251,.88);
      border-bottom:1px solid rgba(17,43,92,.08);
    }
    .site-header .inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:78px;
      gap:20px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .brand-logo{
      width:52px;
      height:52px;
      border-radius:14px;
      overflow:hidden;
      box-shadow:var(--shadow);
      background:#fff;
      flex:0 0 auto;
    }
    .logo-img{
      height:48px;
      width:auto;
      max-width:200px;
      display:block;
      flex:0 0 auto;
    }
    .brand-text{
      min-width:0;
    }
    .brand-title{
      font-size:18px;
      font-weight:800;
      color:var(--navy);
      line-height:1.1;
    }
    .brand-sub{
      font-size:12px;
      color:var(--muted);
      margin-top:4px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .nav{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }
    .nav a{
      font-weight:700;
      color:var(--navy);
      font-size:14px;
    }
    .nav .btn{
      padding:12px 18px;
    }

    /* Hero */
    .hero{
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at top right, rgba(224,163,26,.18), transparent 28%),
        linear-gradient(135deg, #0d234d 0%, #13356a 52%, #1b4d8f 100%);
      color:#fff;
      padding:84px 0 72px;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:auto -10% -120px -10%;
      height:220px;
      background:linear-gradient(90deg, rgba(224,163,26,.95), rgba(255,200,77,.65));
      border-radius:50% 50% 0 0/100% 100% 0 0;
      transform:rotate(-2deg);
      opacity:.94;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:34px;
      align-items:center;
      z-index:1;
    }
    .hero h1{
      font-size:clamp(38px,5vw,70px);
      line-height:.98;
      margin:16px 0 20px;
      letter-spacing:-.02em;
    }
    .hero p.lead{
      font-size:20px;
      color:rgba(255,255,255,.9);
      max-width:720px;
      margin:0 0 26px;
    }
    .hero-points{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
      margin:26px 0 32px;
    }
    .hero-point{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:18px;
      padding:14px 16px;
      font-weight:700;
      color:#fff;
    }
    .hero-cta{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
    }

    .hero-card{
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      border-radius:28px;
      padding:24px;
      box-shadow:var(--shadow);
    }
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:16px;
    }
    .stat{
      background:#fff;
      color:var(--text);
      border-radius:20px;
      padding:22px 18px;
      min-height:126px;
    }
    .stat .num{
      font-size:34px;
      font-weight:800;
      line-height:1;
      color:var(--navy);
      margin-bottom:10px;
    }
    .stat .label{
      font-size:14px;
      color:var(--muted);
      font-weight:700;
    }
    .hero-note{
      margin-top:16px;
      color:rgba(255,255,255,.88);
      font-size:14px;
    }

    /* Cards */
    .cards-3{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:24px;
    }
    .cards-2{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:24px;
    }
    .card{
      background:var(--white);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:28px;
      box-shadow:var(--shadow);
    }
    .card h3{
      margin:0 0 12px;
      color:var(--navy);
      font-size:24px;
    }
    .card p{
      margin:0;
      color:var(--muted);
    }

    /* Split section */
    .split{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:30px;
      align-items:start;
    }

    .list{
      display:grid;
      gap:12px;
      margin-top:20px;
    }
    .list-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px 16px;
      border:1px solid var(--line);
      background:#fff;
      border-radius:16px;
    }
    .check,.xmark,.dot{
      width:26px;
      height:26px;
      border-radius:999px;
      flex:0 0 26px;
      display:grid;
      place-items:center;
      font-size:14px;
      font-weight:900;
      margin-top:1px;
    }
    .check{background:rgba(15,157,88,.12); color:var(--success)}
    .xmark{background:rgba(204,61,61,.1); color:var(--danger)}
    .dot{background:rgba(17,43,92,.08); color:var(--navy)}

    /* Timeline */
    .timeline{
      display:grid;
      gap:16px;
      margin-top:26px;
    }
    .step{
      display:grid;
      grid-template-columns:70px 1fr;
      gap:18px;
      align-items:start;
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      padding:18px;
    }
    .step-num{
      width:52px;
      height:52px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--navy),var(--navy-2));
      color:#fff;
      font-size:20px;
      font-weight:800;
    }
    .step h4{
      margin:4px 0 6px;
      color:var(--navy);
      font-size:20px;
    }
    .step p{
      margin:0;
      color:var(--muted);
    }

    /* Pricing */
    .pricing{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:22px;
      align-items:stretch;
    }
    .price-card{
      position:relative;
      background:#fff;
      border:1px solid var(--line);
      border-radius:24px;
      padding:28px 22px;
      box-shadow:var(--shadow);
      display:flex;
      flex-direction:column;
    }
    .price-card.featured{
      border:2px solid rgba(224,163,26,.55);
      transform:translateY(-8px);
    }
    .badge{
      position:absolute;
      top:16px;
      right:16px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(224,163,26,.14);
      color:#8c6200;
      font-size:12px;
      font-weight:800;
      text-transform:uppercase;
    }
    .tier{
      font-size:14px;
      font-weight:800;
      letter-spacing:.04em;
      text-transform:uppercase;
      color:var(--navy);
    }
    .price{
      margin:8px 0 14px;
      font-size:42px;
      font-weight:900;
      color:var(--navy);
      line-height:1;
    }
    .price small{
      font-size:16px;
      color:var(--muted);
      font-weight:700;
    }
    .price-card p{
      color:var(--muted);
      margin:0 0 18px;
      min-height:48px;
    }
    .features{
      display:grid;
      gap:10px;
      margin:18px 0 24px;
    }
    .feature{
      display:flex;
      gap:10px;
      color:var(--text);
      font-size:15px;
    }
    .feature::before{
      content:"•";
      color:var(--gold);
      font-weight:900;
    }
    .price-card .btn{
      margin-top:auto;
      width:100%;
    }

    /* FAQ */
    .faq{
      display:grid;
      gap:14px;
      margin-top:26px;
    }
    .faq-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .faq-question{
      width:100%;
      border:0;
      background:#fff;
      padding:20px 22px;
      text-align:left;
      font-size:18px;
      font-weight:800;
      color:var(--navy);
      display:flex;
      justify-content:space-between;
      gap:18px;
      cursor:pointer;
    }
    .faq-answer{
      display:none;
      padding:0 22px 20px;
      color:var(--muted);
      font-size:16px;
    }
    .faq-item.active .faq-answer{display:block}
    .faq-item.active .faq-question span:last-child{transform:rotate(45deg)}
    .faq-question span:last-child{
      transition:.2s ease;
      font-size:24px;
      line-height:1;
    }

    /* CTA */
    .cta-band{
      background:linear-gradient(135deg,var(--navy),var(--navy-2));
      color:#fff;
      border-radius:32px;
      padding:40px;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:26px;
      align-items:center;
    }
    .cta-band h2{
      margin:10px 0 14px;
      font-size:clamp(28px,4vw,48px);
      line-height:1.05;
    }
    .cta-band p{
      margin:0;
      color:rgba(255,255,255,.86);
      font-size:18px;
    }
    .cta-contact{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius:24px;
      padding:24px;
    }
    .cta-contact .item{
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .cta-contact .item:last-child{border-bottom:0}
    .cta-contact strong{display:block; font-size:14px; color:rgba(255,255,255,.7); margin-bottom:4px}
    .cta-contact a{font-size:18px; font-weight:800; color:#fff}

    footer{
      padding:42px 0 60px;
      text-align:center;
      color:var(--muted);
      font-size:14px;
    }

    /* Utility */
    .muted{color:var(--muted)}
    .mb-0{margin-bottom:0}
    .gold{color:var(--gold)}
    .navy{color:var(--navy)}

    @media (max-width: 1100px){
      .pricing{grid-template-columns:repeat(2, minmax(0,1fr))}
      .cards-3{grid-template-columns:1fr}
      .split,
      .hero-grid,
      .cta-band{grid-template-columns:1fr}
    }

    @media (max-width: 760px){
      .site-header .inner{padding:10px 0}
      .logo-img{height:40px;max-width:150px}
      .nav{display:none}
      .hero{padding-top:56px}
      .hero-points,
      .stats-grid,
      .cards-2,
      .pricing{grid-template-columns:1fr}
      .section{padding:64px 0}
      .cta-band{padding:28px}
      .card,.price-card,.hero-card{padding:22px}
      .section-title{font-size:34px}
      .hero h1{font-size:42px}
    }