
    :root{
      --blue: #052490;
      --blue2: #0052FF;
      --grad: linear-gradient(135deg, var(--blue2), var(--blue));
      --text: #0f172a;
      --muted: #64748b;
      --bg: #ffffff;
      --card: #ffffff;
      --shadow: 0 12px 30px rgba(5, 36, 144, .12);
      --shadow-soft: 0 10px 24px rgba(2, 12, 60, .08);
      --radius: 18px;
      --radius-lg: 28px;
    }

    html, body { height: 100%; }
    body{
      font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
    }

    /* Utilities */
    .text-muted2{ color: var(--muted) !important; }
    .bg-blue{ background: var(--blue) !important; }
    .bg-grad{ background: var(--grad) !important; }
    .btn-primary{
      background: var(--blue);
      border-color: var(--blue);
      border-radius: 999px;
      padding: .75rem 1.25rem;
      font-weight: 600;
      box-shadow: 0 10px 22px rgba(5,36,144,.18);
    }
    .btn-primary:hover{
      background: #041d74;
      border-color: #041d74;
    }
    .btn-outline-primary{
      color: var(--blue);
      border-color: rgba(5,36,144,.35);
      border-radius: 999px;
      padding: .75rem 1.25rem;
      font-weight: 600;
    }
    .btn-outline-primary:hover{
      background: rgba(5,36,144,.06);
      color: var(--blue);
      border-color: rgba(5,36,144,.45);
    }

    .section{ padding: 80px 0; }
    @media (max-width: 991.98px){
      .section{ padding: 56px 0; }
    }

    /* Navbar */
    .navbar{
      background: #fff;
      box-shadow: 0 10px 24px rgba(2, 12, 60, .06);
    }
    .navbar-brand{
      font-weight: 700;
      letter-spacing: .2px;
      color: var(--blue) !important;
    }
    .nav-link{
      font-weight: 500;
      color: rgba(15,23,42,.72) !important;
    }
    .nav-link:hover{ color: var(--blue) !important; }
    .nav-link.active{ color: var(--blue) !important; }

    /* Hero */
    .hero{
      padding: 48px 0 16px;
    }
    .hero h1{
      font-size: clamp(28px, 3.2vw, 44px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    .hero p{
      color: var(--muted);
      margin-bottom: 22px;
    }
    .checklist{
      list-style: none;
      padding-left: 0;
      margin: 0 0 22px 0;
    }
    .checklist li{
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 8px 0;
      color: rgba(15,23,42,.86);
      font-weight: 500;
    }
    .checklist i{
      color: var(--blue2);
      margin-top: 3px;
    }

    .typeform-box{
      background: #d9d9d9;
      border-radius: var(--radius-lg);
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }
    .typeform-box::after{
      content: "";
      position: absolute;
      left: -40px;
      bottom: -60px;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: rgba(0,82,255,.08);
      filter: blur(0);
    }
    .typeform-box strong{
      display: block;
      font-size: 22px;
      font-weight: 700;
      color: rgba(15,23,42,.78);
    }

    /* Problems + Stats */
    .pill-problem{
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,.06);
      background: #fff;
      box-shadow: 0 10px 22px rgba(2, 12, 60, .06);
      padding: 12px 14px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-top: 12px;
    }
    .pill-problem .dot{
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(220, 38, 38, .10);
      color: #dc2626;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .pill-problem .label{
      font-weight: 600;
      color: rgba(15,23,42,.86);
      font-size: 14px;
      line-height: 1.35;
    }

    .stats-card{
      background: var(--blue);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 26px 26px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      min-height: 260px;
    }
    .stats-card::before{
      content:"";
      position:absolute;
      right:-70px;
      top:-70px;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
    }
    .stats-card .metric{
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin: 12px 0 16px;
    }
    .stats-card .value{
      font-size: 42px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.5px;
    }
    .stats-card .desc{
      opacity: .9;
      font-size: 13px;
      line-height: 1.35;
      max-width: 26ch;
    }
    .stats-divider{
      height: 1px;
      background: rgba(255,255,255,.14);
      margin: 14px 0;
    }

    /* CTA band */
    .cta-band{
      background: var(--blue);
      color: #fff;
      padding: 24px 0;
    }
    .cta-band h3{
      font-size: 18px;
      font-weight: 700;
      margin: 0;
    }

    /* How it works cards */
    .how-card{
      border: 1px solid rgba(15,23,42,.06);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 10px 22px rgba(2, 12, 60, .06);
      padding: 18px 18px;
      height: 100%;
    }
    .how-badge{
      width: 42px;
      height: 42px;
      border-radius: 999px;
      background: rgba(0,82,255,.10);
      color: var(--blue);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      letter-spacing: .3px;
      margin-bottom: 10px;
    }
    .how-card h5{
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 8px;
    }
    .how-card p{
      color: var(--muted);
      font-size: 13px;
      margin: 0;
      line-height: 1.55;
    }

    /* Tech gradient section */
    .tech-wrap{
      border-radius: 34px;
      padding: 44px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .tech-wrap::before{
      content:"";
      position:absolute;
      left:-140px;
      top:-140px;
      width: 320px;
      height: 320px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
    }
    .tech-wrap::after{
      content:"";
      position:absolute;
      right:-170px;
      bottom:-170px;
      width: 360px;
      height: 360px;
      border-radius: 999px;
      background: rgba(255,255,255,.07);
    }
    .tech-wrap h2{
      font-weight: 800;
      font-size: clamp(22px, 2.5vw, 34px);
      margin-bottom: 10px;
    }
    .tech-wrap p{
      opacity: .92;
      line-height: 1.7;
      font-size: 14px;
      margin-bottom: 18px;
      max-width: 60ch;
    }
    .media-mock{
      background: rgba(255,255,255,.10);
      border-radius: 24px;
      padding: 14px;
      position: relative;
      z-index: 1;
    }
    .mock-grid{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .mock-img{
      width: 100%;
      height: 120px;
      border-radius: 18px;
      background: rgba(255,255,255,.18);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.15);
    }
    .mock-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.05) contrast(1.05);
    }

    .kpi-row{
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .kpi-pill{
      background: #fff;
      color: var(--blue);
      border-radius: 999px;
      padding: 10px 14px;
      font-weight: 800;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 10px 22px rgba(2,12,60,.12);
    }
    .kpi-pill small{
      font-weight: 700;
      opacity: .85;
    }

    /* Testimonials */
    .t-card{
      border: 1px solid rgba(15,23,42,.06);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 10px 22px rgba(2, 12, 60, .06);
      padding: 18px 18px;
      height: 100%;
    }
    .stars{
      color: #1d4ed8;
      margin-bottom: 10px;
    }
    .t-card p{
      color: rgba(15,23,42,.72);
      font-size: 13px;
      line-height: 1.7;
    }
    .t-person{
      font-weight: 700;
      font-size: 13px;
      color: rgba(15,23,42,.85);
      margin-top: 10px;
    }
    .t-role{
      color: var(--muted);
      font-size: 12px;
      margin-top: -2px;
    }

    /* FAQ */
    .faq .card{
      border: 1px solid rgba(15,23,42,.06) !important;
      border-radius: 14px !important;
      box-shadow: 0 10px 22px rgba(2, 12, 60, .05);
      overflow: hidden;
      margin-bottom: 12px;
    }
    .faq .card-header{
      background: #fff;
      padding: 0;
      border-bottom: 0;
    }
    .faq button{
      text-align: left;
      width: 100%;
      padding: 16px 16px;
      font-weight: 700;
      color: rgba(15,23,42,.85);
    }
    .faq button .plus{
      float: right;
      color: rgba(5,36,144,.8);
      font-weight: 900;
    }
    .faq .card-body{
      padding: 0 16px 16px 16px;
      color: var(--muted);
      line-height: 1.7;
      font-size: 13px;
    }

    /* Footer */
    footer{
      background: var(--blue);
      color: rgba(255,255,255,.92);
      padding: 54px 0 24px;
    }
    footer a{
      color: rgba(255,255,255,.86);
      text-decoration: none;
    }
    footer a:hover{ color: #fff; text-decoration: none; }
    .foot-title{
      font-weight: 800;
      margin-bottom: 10px;
      letter-spacing: .2px;
    }
    .foot-head{
      font-weight: 700;
      margin-bottom: 12px;
      opacity: .95;
    }
    .foot-list{
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .foot-list li{ margin: 8px 0; opacity: .92; }
    .social a{
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(255,255,255,.12);
      margin-right: 8px;
    }
    .social a:hover{ background: rgba(255,255,255,.18); }
    .copyright{
      border-top: 1px solid rgba(255,255,255,.14);
      margin-top: 28px;
      padding-top: 16px;
      font-size: 12px;
      opacity: .88;
    }