<style>
  *{
    box-sizing:border-box;
    margin:0;
    padding:0;
  }

  html{
    scroll-behavior:smooth;
  }

  body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f7fb;
    color:#0f172a;
    line-height:1.6;
  }

  a{
    text-decoration:none;
  }

  /* TOP BAR */

  .topbar{
    background:#0f172a;
    color:#e2e8f0;
    padding:10px 6%;
    display:flex;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
    font-size:14px;
  }

  .topbar a{
    color:#93c5fd;
    font-weight:bold;
  }

  /* HEADER */

  header{
    background:white;
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 4px 20px rgba(15,23,42,.08);
  }

  .nav{
    max-width:1200px;
    margin:auto;
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
  }

  .logo{
    display:flex;
    align-items:center;
    gap:14px;
    color:#0f172a;
    font-size:24px;
    font-weight:900;
  }

  .logo-mark{
    width:70px;
    height:70px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#0f172a);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-weight:900;
  }

  .nav-links{
    display:flex;
    gap:22px;
    align-items:center;
    flex-wrap:wrap;
  }

  .nav-links a{
    color:#334155;
    font-weight:bold;
  }

  .nav-btn{
    background:#2563eb;
    color:white!important;
    padding:12px 18px;
    border-radius:10px;
  }

  /* HERO */

  .hero{
    padding:90px 24px;
    background:
        linear-gradient(90deg,rgba(255,255,255,.95),rgba(239,246,255,.92)),
        radial-gradient(circle at top right,#bfdbfe,#eff6ff);
  }

  .hero-inner{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
  }

  .badge{
    display:inline-block;
    background:#dbeafe;
    color:#1e3a8a;
    padding:8px 14px;
    border-radius:999px;
    font-weight:900;
    margin-bottom:20px;
  }

  h1{
    font-size:62px;
    line-height:1.05;
    margin-bottom:22px;
    color:#0f172a;
  }

  .hero p{
    font-size:20px;
    color:#475569;
  }

  .hero{
    overflow:hidden;
  }

  .hero-actions{
    margin-top:32px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
  }

  .btn{
    display:inline-block;
    padding:15px 26px;
    border-radius:12px;
    font-weight:900;
    transition:.2s;
  }

  .btn:hover{
    transform:translateY(-2px);
  }

  .btn-primary{
    background:#2563eb;
    color:white;
  }

  .btn-light{
    background:white;
    color:#0f172a;
    border:1px solid #cbd5e1;
  }

  /* QUOTE BOX */

  .quote-box{
    background:white;
    border:1px solid #dbe3ef;
    padding:22px;
    border-radius:26px;
    box-shadow:0 25px 70px rgba(15,23,42,.16);
  }

  .quote-box h2{
    color:#1d4ed8;
    font-size:30px;
    margin-bottom:8px;
  }

  .quote-box p{
    color:#475569;
    margin-bottom:18px;
  }

  .quote-box iframe{
    width:100%;
    min-width:100%;
    height:850px;
    border:0;
    border-radius:18px;
    background:white;
    display:block;
  }

  /* SECTIONS */

  section{
    padding:80px 24px;
    background:#f4f7fb;
  }

  .section-alt{
    background:white;
  }

  .container{
    max-width:1200px;
    margin:auto;
  }

  .section-title{
    text-align:center;
    margin-bottom:45px;
  }

  .section-title h2{
    font-size:40px;
    margin-bottom:12px;
    color:#0f172a;
  }

  .section-title p{
    color:#475569;
    max-width:760px;
    margin:auto;
    font-size:18px;
  }

  .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:22px;
  }

  .card{
    background:white;
    border:1px solid #e2e8f0;
    padding:30px;
    border-radius:22px;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    transition:.25s;
  }

  .card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,23,42,.12);
  }

  .card h3{
    color:#1d4ed8;
    margin-bottom:10px;
  }

  .card p{
    color:#475569;
  }

  /* CTA */

  .cta{
    background:linear-gradient(135deg,#2563eb,#1e3a8a);
    color:white;
    border-radius:30px;
    padding:50px;
    display:flex;
    justify-content:space-between;
    gap:25px;
    align-items:center;
    flex-wrap:wrap;
    box-shadow:0 20px 50px rgba(37,99,235,.25);
  }

  .cta h2{
    font-size:38px;
    margin-bottom:8px;
  }

  .cta p{
    color:#dbeafe;
  }

  /* FOOTER */

  footer{
    background:#0f172a;
    color:#94a3b8;
    padding:40px 24px;
  }

  .footer-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:25px;
    flex-wrap:wrap;
  }

  footer strong{
    color:white;
  }

  footer a{
    color:#93c5fd;
  }



  .container,
  .hero-inner,
  .nav{
    max-width:1600px;
  }




  /* MOBILE */

  @media(max-width:900px){

    .hero-inner{
        grid-template-columns:1fr;
    }

    h1{
        font-size:42px;
    }

    .nav{
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-links{
        gap:14px;
    }

    .quote-box iframe{
        height:760px;
    }

    .cta{
        padding:32px;
    }
  }
  </style>