@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

  :root{
    /* Exact theme from reference screenshot */
    --deep-navy:#050A30;
    --navy:#0A192F;
    --navy-mid:#112240;
    --navy-card:#0D1B2A;
    --royal:#1E3A8A;
    --electric-blue:#2563EB;
    --sky-blue:#60A5FA;
    --slate:#475569;
    --ice:#F8FAFC;
    --ice-blue:#F0F4F8;
    --ice-tint:#E8EEF5;
    --charcoal:#0F172A;
    --medium-gray:#64748B;
    --white:#FFFFFF;

    /* CTA */
    --cta:#2563EB;
    --cta-hover:#1D4ED8;
    --cta-soft:#60A5FA;

    /* Section backgrounds matching screenshot */
    --bg-dark:radial-gradient(ellipse at 30% 20%, #132044 0%, #0A192F 45%, #050A30 100%);
    --bg-dark-flat:#0A192F;
    --bg-process:linear-gradient(160deg, #0B1D4A 0%, #0A192F 40%, #071530 100%);
    --bg-industries:linear-gradient(135deg, #0A192F 0%, #12305A 50%, #0A192F 100%);
    --bg-light:
      radial-gradient(ellipse at 15% 20%, rgba(96,165,250,0.18) 0%, transparent 45%),
      radial-gradient(ellipse at 85% 60%, rgba(37,99,235,0.10) 0%, transparent 40%),
      radial-gradient(ellipse at 50% 100%, rgba(224,231,255,0.55) 0%, transparent 50%),
      linear-gradient(180deg, #F8FAFC 0%, #F0F4F8 55%, #E8EEF5 100%);
    --bg-light-alt:
      radial-gradient(ellipse at 80% 10%, rgba(96,165,250,0.14) 0%, transparent 40%),
      radial-gradient(ellipse at 20% 80%, rgba(37,99,235,0.08) 0%, transparent 45%),
      linear-gradient(180deg, #F0F4F8 0%, #F8FAFC 50%, #EEF2F7 100%);

    --gold:var(--cta);
    --gold-dim:var(--cta-soft);
    --teal:var(--sky-blue);
    --ink:var(--charcoal);
    --muted:var(--slate);
    --line:rgba(37,99,235,0.12);
    --navy-950:var(--ice);
    --navy-900:var(--ice-blue);
    --navy-800:var(--ice-tint);
    --cream:var(--ice);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; scroll-padding-top:90px;}
  body{
    font-family:'Inter', poppins;
    background:var(--bg-light);
    color:var(--ink);
    line-height:1.5;
    overflow-x:hidden;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1160px; margin:0 auto; padding:0 32px;}
  h1,h2,h3{font-family:'Playfair Display', poppins; font-weight:700; line-height:1.1;}
  .eyebrow::before{content:''; width:7px; height:7px; border-radius:50%; background:var(--cta); box-shadow:0 0 10px rgba(37,99,235,.4);}
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:14px 26px; font-size:13px; font-weight:600;
    letter-spacing:.06em; text-transform:uppercase;
    border-radius:6px; cursor:pointer; transition:all .25s ease;
    font-family:'JetBrains Mono', monospace;
  }
  .btn-gold{background:var(--cta); color:var(--white);}
  .btn-gold:hover{background:var(--cta-hover); transform:translateY(-1px);}
  .btn-outline{border:1.5px solid rgba(37,99,235,.35); color:var(--ink); background:transparent;}
  .btn-outline:hover{border-color:var(--cta); color:var(--cta);}

  /* NAV — dark */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(5,10,48,.94);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(96,165,250,0.12);
  }
  nav{display:flex; align-items:center; justify-content:space-between; padding:15px 0;}
  .navlinks{display:flex; gap:34px; font-size:13px; letter-spacing:.03em;}
  .navlinks a{color:rgba(243,244,246,0.75); transition:color .2s;}
  .navlinks a:hover{color:var(--white);}
  .navmenu-wrap{display:flex; align-items:center; gap:40px;}
  .btn-gold{margin-left:15px; padding:10px 20px;}
  .logo{
    display:inline-flex;
    align-items:center;
    flex-shrink:0;
    line-height:0;
  }
  .logo img{
    height:36px;
    width:auto;
    display:block;
  }
  @media(max-width:900px){ .navlinks{display:none;} }

  /* HERO — full-bleed banner carousel */
  .hero{
    position:relative;
    min-height:640px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:var(--white);
    background:var(--deep-navy);
  }
  .hero-slides{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .hero-slide{
    position:absolute;
    inset:0;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity 1s ease;
  }
  .hero-slide.is-active{opacity:1;}
  .hero::after{
    content:'';
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(105deg, rgba(5,10,48,0.88) 0%, rgba(10,25,47,0.72) 48%, rgba(7,18,38,0.45) 100%);
    pointer-events:none;
  }
  .hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(0, 1fr);
    gap:0;
    align-items:center;
    width:100%;
    padding:110px 0 90px;
  }
  .hero-copy{max-width:620px; position:relative;}
  .hero-panel{
    display:none;
    opacity:0;
    transition:opacity .6s ease;
  }
  .hero-panel.is-active{
    display:block;
    opacity:1;
    animation:heroCopyIn .55s ease;
  }
  @keyframes heroCopyIn{
    from{opacity:0; transform:translateY(10px);}
    to{opacity:1; transform:translateY(0);}
  }
  .hero h1{font-size:clamp(34px,5vw,54px); margin:22px 0 20px; color:var(--white);}
  .hero h1 em{color:var(--cta-soft); font-style:italic;}
  .hero p{color:rgba(203,213,225,0.95); font-size:16px; max-width:480px; margin-bottom:34px;}
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
  .hero .btn-outline{border-color:rgba(255,255,255,0.55); color:var(--white);}
  .hero .btn-outline:hover{background:var(--white); color:var(--deep-navy); border-color:var(--white);}
  .hero a.btn-outline{display:inline-flex; align-items:center; justify-content:center; text-decoration:none;}
  .dots{display:flex; gap:8px; margin-top:56px;}
  .dot{
    width:26px;
    height:3px;
    padding:0;
    border:none;
    background:rgba(255,255,255,.25);
    border-radius:2px;
    cursor:pointer;
    transition:background .3s, width .3s;
  }
  .dot.active{background:var(--cta); width:36px;}
  @media(max-width:860px){
    .hero{min-height:520px;}
    .hero-slide{background-position:70% center;}
    .hero-grid{padding:80px 0 70px;}
  }

  /* ABOUT — icy light */
  .about-section{
    background:var(--bg-light);
    padding:100px 0 110px;
    color:var(--ink);
  }
  .about-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
  .about-img-wrap{position:relative;}
  .about-img{
    width:100%; height:420px; border-radius:12px; overflow:hidden;
    background-size:cover; background-position:center;
    box-shadow:0 30px 60px rgba(10,15,61,.12);
  }
  .about-badge{
    position:absolute; right:-20px; bottom:-30px; max-width:260px;
    background:linear-gradient(145deg, #F8FAFC, #E8EEF5);
    border:1px solid rgba(37,99,235,.22);
    border-radius:10px; padding:22px 24px; box-shadow:0 20px 40px rgba(10,25,47,.1);
  }
  .about-badge .num{font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:var(--cta); margin-bottom:8px;}
  .about-badge p{color:var(--muted); font-size:13px; line-height:1.5;}
  .about-copy h2{font-size:32px; margin-bottom:18px; color:var(--navy);}
  .about-copy p.lead{color:var(--muted); font-size:15px; margin-bottom:36px; max-width:460px;}
  .about-features{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .about-feature .icon{
    width:44px; height:44px; border-radius:9px; display:flex; align-items:center; justify-content:center;
    font-size:19px; margin-bottom:16px;
  }
  .about-feature:nth-child(1) .icon{background:rgba(37,99,235,.12); color:var(--cta);}
  .about-feature:nth-child(2) .icon{background:rgba(96,165,250,.16); color:var(--sky-blue);}
  .about-feature:nth-child(3) .icon{background:rgba(10,25,47,.08); color:var(--navy);}
  .about-feature h4{font-family:'Inter',sans-serif; font-size:15.5px; font-weight:700; margin-bottom:6px; color:var(--navy);}
  .about-feature p{color:var(--muted); font-size:12.5px;}
  @media(max-width:860px){
    .about-grid{grid-template-columns:1fr;}
    .about-features{grid-template-columns:1fr;}
    .about-badge{position:static; margin-top:18px; max-width:none;}
  }

  /* WHAT WE BUILD — light */
  .build-section{
    background:var(--bg-light-alt);
    padding:100px 0;
    border-bottom:1px solid var(--line);
    color:var(--ink);
  }
  .build-head{display:flex; justify-content:space-between; gap:40px; margin-bottom:50px; flex-wrap:wrap;}
  .build-head .label{font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:.14em; color:var(--cta); text-transform:uppercase; margin-bottom:10px;}
  .build-head h2{font-size:30px; color:var(--navy);}
  .build-head p{color:var(--muted); max-width:340px; font-size:14.5px;}
  .build-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
  .build-grid .card:first-child{grid-column:span 1; border:1px solid var(--cta);}
  @media(max-width:1000px){.build-grid{grid-template-columns:repeat(2,1fr);}}
  @media(max-width:560px){.build-grid{grid-template-columns:1fr;}}
  .card{
    background:rgba(248,250,252,0.92);
    border-radius:8px; overflow:hidden;
    border:1px solid rgba(37,99,235,0.08); transition:.3s; display:flex; flex-direction:column;
    box-shadow:0 10px 28px rgba(10,25,47,.08);
  }
  .card:hover{transform:translateY(-4px); border-color:rgba(37,99,235,.28);}
  .card .thumb{height:130px; background-size:cover; background-position:center; position:relative;}
  .card .icon-badge{
    position:absolute; bottom:-16px; left:16px; width:34px; height:34px; border-radius:8px;
    background:linear-gradient(135deg,var(--cta),var(--cta-soft)); display:flex; align-items:center; justify-content:center;
    font-size:15px; box-shadow:0 4px 14px rgba(37,99,235,.35);
  }
  .card .body{padding:26px 18px 22px;}
  .card h3{font-family:'Inter',sans-serif; font-size:15.5px; font-weight:700; margin-bottom:8px; color:var(--navy);}
  .card p{color:var(--muted); font-size:13px; margin-bottom:14px;}
  .card .learn{color:var(--cta); font-size:12.5px; font-weight:600;}

  .section-title-wrap,
  .about-section,
  .digital-section,
  .hiring-section,
  .industries,
  .process-section,
  .contact,
  .hero{
    scroll-margin-top:90px;
  }
  .section-title-wrap{
    background:var(--bg-light);
    padding:72px 0 28px;
    text-align:center;
  }
  .section-title-wrap--dark{
    background:var(--bg-dark);
    padding:72px 0 12px;
  }
  .section-title{
    font-family:'Inter', sans-serif;
    font-size:clamp(28px, 5vw, 42px);
    font-weight:700;
    color:var(--navy);
    line-height:1.2;
    letter-spacing:-0.02em;
    margin:0;
  }
  .section-title--light{color:var(--white);}
  .section-lead{
    max-width:720px;
    margin:16px auto 0;
    font-size:15px;
    line-height:1.7;
    color:var(--muted);
  }
  .section-title-wrap--dark .section-lead{color:rgba(203,213,225,0.78);}
  @media(max-width:860px){
    .section-title-wrap{padding:48px 0 18px;}
    .section-title-wrap--dark{padding:48px 0 8px;}
    .section-title{font-size:clamp(24px, 7vw, 34px);}
  }
  @media(max-width:480px){
    .section-title-wrap{padding:36px 0 12px;}
    .section-title-wrap--dark{padding:36px 0 4px;}
    .section-title{font-size:22px;}
  }

  /* DIGITAL INTRO — mirrors hiring definition layout */
  .digital-section{
    background:var(--bg-light);
    padding:10px 0 20px;
  }
  .digital-row{
    padding:28px 0 48px;
  }
  .digital-row .wrap{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:56px;
    align-items:center;
  }
  .digital-visual{position:relative;}
  .digital-visual img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 20px 50px rgba(10,25,47,.12);
  }
  .digital-eyebrow{
    display:inline-block;
    font-family:'Inter', sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--cta);
    margin-bottom:16px;
  }
  .digital-content h2{
    font-family:'Inter', sans-serif;
    font-size:clamp(28px, 3.4vw, 40px);
    font-weight:700;
    color:var(--navy);
    line-height:1.2;
    margin-bottom:16px;
    max-width:460px;
  }
  .digital-content p{
    color:var(--muted);
    font-size:15px;
    line-height:1.7;
    max-width:480px;
    margin:0;
  }
  @media(max-width:900px){
    .digital-row .wrap{grid-template-columns:1fr; gap:28px;}
    .digital-visual img{height:320px;}
    .digital-content h2{max-width:none;}
  }
  @media(max-width:560px){
    .digital-visual img{height:240px;}
    .digital-row{padding:20px 0 36px;}
    .digital-content h2{font-size:clamp(22px, 6.5vw, 28px);}
    .digital-content p{font-size:14px;}
  }

  /* DETAIL ROWS — light alternating */
  .detail-row{
    padding:90px 0;
    background:var(--bg-light);
    color:var(--ink);
  }
  .detail-row.alt{
    background:var(--bg-light-alt);
  }
  .detail-row .wrap{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;}
  .detail-img{border-radius:10px; overflow:hidden; height:280px; background-size:cover; background-position:center; box-shadow:0 20px 50px rgba(10,25,47,.12);}
  .detail-tag{font-family:'JetBrains Mono',monospace; font-size:11.5px; letter-spacing:.12em; color:var(--cta); text-transform:uppercase; margin-bottom:10px;}
  .detail-row h3{font-size:26px; margin-bottom:12px; color:var(--navy);}
  .detail-row p.desc{color:var(--slate); font-size:14.5px; margin-bottom:18px; max-width:520px;}
  .detail-row ul{list-style:none; margin-bottom:24px;}
  .detail-row li{position:relative; padding-left:18px; margin-bottom:9px; font-size:13.5px; color:var(--charcoal);}
  .detail-row li::before{content:''; position:absolute; left:0; top:7px; width:6px; height:6px; border-radius:50%; background:var(--cta);}
  .btn-dark{background:var(--cta); color:var(--white); border-radius:24px; padding:13px 24px; font-size:12.5px;}
  .btn-dark:hover{background:var(--cta-hover);}
  @media(max-width:860px){
    .detail-row{padding:36px 0;}
    .wrap{padding:0 20px;}
    .detail-row .wrap{grid-template-columns:0.78fr 1fr; gap:18px; align-items:start;}
    .detail-row.reverse .wrap{direction:ltr; grid-template-columns:1fr 0.78fr;}
    .detail-img{height:170px; border-radius:10px; box-shadow:0 10px 24px rgba(10,15,61,.12);}
    .detail-tag{font-size:10.5px; margin-bottom:8px;}
    .detail-row h3{font-size:19px; margin-bottom:8px; line-height:1.2;}
    .detail-row p.desc{font-size:12.5px; max-width:none; margin-bottom:12px; line-height:1.45;}
    .detail-row ul{margin-bottom:14px;}
    .detail-row li{font-size:11.5px; margin-bottom:6px; padding-left:16px;}
    .detail-row li::before{width:5px; height:5px; top:6px;}
    .detail-row .btn-dark{padding:10px 18px; font-size:11.5px; border-radius:22px;}
  }

  /* HIRING — deep navy */
  .hiring-section{
    background:var(--bg-dark);
    padding:20px 0 80px;
    position:relative;
    overflow:hidden;
  }
  .hiring-row{
    padding:48px 0;
  }
  .hiring-row .wrap{
    display:grid;
    grid-template-columns:1.05fr 1fr;
    gap:56px;
    align-items:center;
  }
  .hiring-row--reverse .wrap{
    grid-template-columns:1fr 1.05fr;
  }
  .hiring-visual{position:relative;}
  .hiring-visual img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:22px;
    display:block;
  }
  .hiring-visual--sm img{
    height:280px;
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }
  .hiring-row--reverse .hiring-visual--sm img{
    margin-left:auto;
    margin-right:0;
  }
  .hiring-row:not(.hiring-row--reverse) .hiring-visual--sm img{
    margin-left:0;
    margin-right:auto;
  }
  .hiring-badge-pill{
    position:absolute;
    top:22px;
    right:22px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(5, 10, 48, 0.88);
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(96,165,250,0.2);
    white-space:nowrap;
  }
  .hiring-badge-pill .dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--sky-blue);
    box-shadow:0 0 0 3px rgba(96,165,250,0.3);
    flex-shrink:0;
  }
  .hiring-content .hiring-eyebrow{
    display:inline-block;
    font-family:'Inter', sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--sky-blue);
    margin-bottom:16px;
  }
  .hiring-content h2{
    font-family:'Inter', sans-serif;
    font-size:clamp(28px, 3.4vw, 40px);
    font-weight:700;
    color:#fff;
    line-height:1.2;
    margin-bottom:16px;
    max-width:440px;
  }
  .hiring-content h3{
    font-family:'Inter', sans-serif;
    font-size:clamp(22px, 2.6vw, 28px);
    font-weight:700;
    color:#fff;
    line-height:1.25;
    margin-bottom:14px;
  }
  .hiring-content > p{
    color:rgba(200, 216, 230, 0.78);
    font-size:15px;
    line-height:1.7;
    max-width:460px;
    margin-bottom:20px;
  }
  .hiring-content ul{
    list-style:none;
    margin:0 0 24px;
    padding:0;
  }
  .hiring-content li{
    position:relative;
    padding-left:16px;
    margin-bottom:10px;
    font-size:14px;
    color:rgba(203,213,225,0.88);
    line-height:1.45;
  }
  .hiring-content li::before{
    content:'';
    position:absolute;
    left:0; top:7px;
    width:6px; height:6px;
    border-radius:50%;
    background:var(--sky-blue);
  }
  .hiring-card-icon{
    width:40px;
    height:40px;
    border-radius:10px;
    background:rgba(37, 99, 235, 0.2);
    color:var(--sky-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
  }
  .hiring-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 26px;
    border:1.5px solid transparent;
    border-radius:999px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    background:var(--cta);
    transition:background .2s, color .2s, border-color .2s;
  }
  .hiring-cta span{font-size:16px; line-height:1;}
  .hiring-cta:hover{
    background:var(--cta-hover);
    color:#fff;
  }
  @media(max-width:900px){
    .hiring-row .wrap,
    .hiring-row--reverse .wrap{
      grid-template-columns:1fr;
      gap:28px;
    }
    .hiring-row--reverse .hiring-visual{order:-1;}
    .hiring-visual img{height:320px;}
    .hiring-visual--sm img{height:220px; max-width:360px; margin-left:auto; margin-right:auto;}
    .hiring-content h2{max-width:none; font-size:clamp(24px, 5.5vw, 34px);}
  }
  @media(max-width:560px){
    .hiring-visual img{height:240px;}
    .hiring-visual--sm img{height:180px; max-width:100%;}
    .hiring-section{padding:10px 0 60px;}
    .hiring-row{padding:32px 0;}
    .hiring-content h2{font-size:clamp(22px, 6.5vw, 28px);}
    .hiring-content h3{font-size:clamp(20px, 5.5vw, 24px);}
    .hiring-eyebrow{font-size:11px;}
    .hiring-content > p{font-size:14px;}
  }

  /* CANDIDATES — light */
  .candidates{background:var(--bg-light-alt); padding:90px 0; color:var(--ink);}
  .cand-grid{display:grid; grid-template-columns:1.2fr 1fr; gap:50px; align-items:center;}
  .cand-grid h2{font-size:30px; margin-bottom:14px; color:var(--navy);}
  .cand-grid p{color:var(--muted); font-size:14.5px; max-width:420px; margin-bottom:22px;}
  .pills{display:flex; gap:10px; flex-wrap:wrap;}
  .pill{border:1px solid rgba(37,99,235,.16); border-radius:20px; padding:8px 16px; font-size:12.5px; color:var(--muted); background:rgba(37,99,235,.05);}
  .upload-card{
    background:rgba(248,250,252,0.95); border:1px solid rgba(37,99,235,.14); border-radius:10px;
    padding:44px 30px; text-align:center; box-shadow:0 12px 30px rgba(10,25,47,.08);
  }
  .upload-card .up-icon{font-size:26px; color:var(--cta); margin-bottom:14px;}
  .upload-card h4{font-family:'Inter',sans-serif; font-size:18px; margin-bottom:8px; color:var(--navy);}
  .upload-card p{color:var(--muted); font-size:13px; margin-bottom:22px;}
  @media(max-width:800px){.cand-grid{grid-template-columns:1fr;}}

  /* INDUSTRIES — deep navy like screenshot */
  .industries{background:#FFFFFF; color:var(--navy); padding:100px 0;}
  .industries .center{text-align:center; margin-bottom:50px;}
  .industries h2{font-size:30px; margin-bottom:10px; color:var(--navy);}
  .industries p.sub{color:var(--slate); font-size:14.5px;}
  .ind-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
  @media(max-width:800px){.ind-grid{grid-template-columns:1fr 1fr;}}
  @media(max-width:520px){.ind-grid{grid-template-columns:1fr;}}
  .ind-card{
    position:relative; height:180px; border-radius:10px; overflow:hidden;
    background-size:cover; background-position:center; display:flex; align-items:flex-end;
  }
  .ind-card::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(5,10,48,0) 40%, rgba(5,10,48,.92) 100%);}
  .ind-card .info{position:relative; z-index:2; padding:18px; color:#fff;}
  .ind-card h4{font-family:'Inter'; font-size:17px; font-weight:700;}

  /* FAQ — light ice */
  .faq{background:var(--bg-light); color:var(--ink); padding:20px 0 100px;}
  .faq-wrap{max-width:760px; margin:0 auto; padding:0 32px;}
  .faq .center{text-align:center; margin-bottom:44px;}
  .faq h2{font-size:30px; color:var(--navy);}
  .faq-item{border-bottom:1px solid rgba(37,99,235,.1); padding:22px 0;}
  .faq-q{display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:700; font-size:14.5px; color:var(--navy);}
  .faq-q .sym{font-size:18px; color:var(--cta); font-weight:400; transition:.2s;}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-a p{color:var(--slate); font-size:13.5px; padding-top:12px; max-width:600px;}
  .faq-item.open .faq-a{max-height:200px;}
  .faq-item.open .faq-q .sym{transform:rotate(45deg);}

  /* PROCESS — deep navy + darker cards */
  .process-section{
    background:var(--bg-process);
    padding:100px 0 90px;
  }
  .process-head{
    text-align:center;
    max-width:640px;
    margin:0 auto 52px;
  }
  .process-badge{
    display:inline-block;
    background:rgba(96,165,250,0.16);
    color:var(--sky-blue);
    font-family:'Inter', sans-serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    padding:7px 14px;
    border-radius:6px;
    margin-bottom:20px;
  }
  .process-head h2{
    font-family:'Inter', sans-serif;
    font-size:clamp(28px, 3.5vw, 40px);
    font-weight:700;
    color:#fff;
    margin-bottom:14px;
    line-height:1.2;
  }
  .process-head p{
    color:rgba(200, 214, 230, 0.72);
    font-size:15px;
    line-height:1.7;
  }
  .process-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
  }
  .process-card{
    background:var(--navy-card);
    border:1px solid rgba(96,165,250,0.12);
    border-radius:16px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform .25s ease, border-color .25s ease;
  }
  .process-card:hover{
    transform:translateY(-4px);
    border-color:rgba(37,99,235,0.4);
  }
  .process-img{
    position:relative;
    height:170px;
    overflow:hidden;
  }
  .process-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .process-num{
    position:absolute;
    top:14px;
    right:16px;
    font-family:'Inter', sans-serif;
    font-size:42px;
    font-weight:700;
    color:rgba(255,255,255,0.28);
    line-height:1;
    letter-spacing:-0.02em;
    pointer-events:none;
  }
  .process-body{
    padding:20px 20px 16px;
    display:flex;
    flex-direction:column;
    flex:1;
  }
  .process-step{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
  }
  .process-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--cta);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .process-step > span:last-child{
    font-family:'Inter', sans-serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:.1em;
    color:#fff;
  }
  .process-body h3{
    font-family:'Inter', sans-serif;
    font-size:17px;
    font-weight:700;
    color:#fff;
    margin-bottom:8px;
  }
  .process-body p{
    font-size:13px;
    line-height:1.6;
    color:rgba(190, 205, 220, 0.7);
    flex:1;
  }
  .process-foot{
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,0.08);
    display:flex;
    justify-content:flex-end;
  }
  .process-foot span{
    color:rgba(255,255,255,0.45);
    font-size:14px;
  }
  .process-cta-wrap{
    text-align:center;
    margin-top:48px;
  }
  .process-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--cta);
    color:#fff;
    font-family:'Inter', sans-serif;
    font-size:14px;
    font-weight:600;
    padding:14px 28px;
    border-radius:999px;
    transition:background .2s, transform .2s;
  }
  .process-cta:hover{
    background:var(--cta-hover);
    transform:translateY(-1px);
  }
  @media(max-width:900px){
    .process-grid{grid-template-columns:1fr 1fr;}
  }
  @media(max-width:600px){
    .process-grid{grid-template-columns:1fr;}
    .process-section{padding:70px 0;}
    .process-img{height:190px;}
  }

  /* CONTACT — pale ice like screenshot (not solid blue) */
  .contact{background:var(--bg-light); padding:100px 0; color:var(--ink);}
  .contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:60px;}
  .contact h2{font-size:32px; margin-bottom:14px; color:var(--navy);}
  .contact > .wrap > .contact-grid > div:first-child p{color:var(--muted); font-size:14.5px; margin-bottom:34px; max-width:360px;}
  .info-row{border-top:1px solid rgba(37,99,235,0.12); padding:18px 0;}
  .info-row .k{font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--cta); margin-bottom:6px;}
  .info-row .v{font-size:14.5px; color:var(--charcoal);}
  .info-row .v a{color:var(--charcoal); transition:color .2s;}
  .info-row .v a:hover{color:var(--cta);}
  .form-card{
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(37,99,235,0.12);
    border-radius:10px; padding:34px;
    box-shadow:0 16px 40px rgba(10,25,47,0.08);
  }
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
  label{font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); display:block; margin-bottom:7px; font-family:'JetBrains Mono',monospace;}
  input, select, textarea{
    width:100%; background:#FFFFFF; border:1px solid rgba(148,163,184,0.45); border-radius:5px;
    padding:12px 14px; color:var(--charcoal); font-size:13.5px; font-family:'Inter',sans-serif;
  }
  input::placeholder, textarea::placeholder{color:var(--medium-gray);}
  input:focus, select:focus, textarea:focus{outline:none; border-color:var(--cta);}
  select option{background:#FFFFFF; color:var(--charcoal);}
  .full{margin-bottom:16px;}
  textarea{resize:vertical; min-height:90px;}
  .send-btn{width:100%; margin-top:6px;}
  .newsletter{border-top:1px solid rgba(37,99,235,0.12); margin-top:30px; padding-top:24px;}
  .newsletter h4{font-family:'Inter'; font-size:15px; margin-bottom:6px; color:var(--navy);}
  .newsletter p{color:var(--muted); font-size:12.5px; margin-bottom:14px;}
  .nl-row{display:flex; gap:10px;}
  .nl-row input{flex:1;}
  .nl-row .btn{flex-shrink:0; padding:12px 20px;}
  .nl-row .btn-outline{border-color:rgba(37,99,235,0.35); color:var(--cta);}
  .nl-row .btn-outline:hover{background:var(--cta); color:var(--white);}
  @media(max-width:820px){.contact-grid{grid-template-columns:1fr;} .form-row{grid-template-columns:1fr;}}

  /* FOOTER — deepest navy from screenshot */
  footer{
    background:#050A30;
    padding-top:0;
    color:var(--white);
  }
  .marquee{
    border-bottom:1px solid rgba(96,165,250,0.15); overflow:hidden; white-space:nowrap; padding:16px 0;
  }
  .marquee span{
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:.1em; color:var(--sky-blue);
    margin:0 22px; text-transform:uppercase;
  }
  .marquee span.dim{color:rgba(156,163,175,0.55);}
  .foot-main{padding:70px 0 30px; display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:40px;}
  .foot-cta h2{font-size:28px; max-width:380px; color:var(--white);}
  .foot-grid{
    display:grid;
    grid-template-columns:1.2fr repeat(3, minmax(0, 1fr));
    gap:40px;
    align-items:start;
    padding-bottom:40px;
  }
  .foot-col h5{font-family:'JetBrains Mono',monospace; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--sky-blue); margin-bottom:16px;}
  .foot-col a, .foot-col p{display:block; font-size:13.5px; color:rgba(226,232,240,0.8); margin-bottom:10px; line-height:1.55;}
  .foot-col a:hover{color:var(--sky-blue);}
  .foot-brand p{color:rgba(203,213,225,0.7); font-size:13px; max-width:none; margin:0 0 18px;}
  .foot-logo{margin-bottom:16px;}
  .foot-logo img{height:40px;}
  .socials{display:flex; gap:10px;}
  .soc{width:32px; height:32px; border-radius:50%; border:1px solid rgba(96,165,250,0.3); display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--white);}
  .foot-bottom{border-top:1px solid rgba(96,165,250,0.15); padding:22px 0; display:flex; justify-content:space-between; font-size:12px; color:rgba(156,163,175,0.8); flex-wrap:wrap; gap:10px;}
  @media(max-width:900px){
    .foot-grid{grid-template-columns:1fr 1fr; gap:32px;}
    .foot-brand{grid-column:1 / -1;}
  }
  @media(max-width:700px){
    .foot-main{flex-direction:column;}
    .foot-grid{grid-template-columns:1fr; gap:28px;}
    .foot-brand{grid-column:auto;}
  }

  .chat-fab{
    position:fixed; bottom:26px; right:26px; width:52px; height:52px; border-radius:50%;
    background:var(--cta); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:20px;
    box-shadow:0 8px 24px rgba(37,99,235,.45); z-index:200; cursor:pointer;
  }

  /* CONTACT MODAL */
  .contact-modal{
    position:fixed; inset:0; z-index:300;
    display:flex; align-items:center; justify-content:center;
    padding:20px;
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .25s ease, visibility .25s ease;
  }
  .contact-modal.is-open{
    opacity:1; visibility:visible; pointer-events:auto;
  }
  .contact-modal__backdrop{
    position:absolute; inset:0;
    background:rgba(5,10,48,.65);
    backdrop-filter:blur(4px);
  }
  .contact-modal__dialog{
    position:relative; z-index:1;
    width:min(560px, 100%);
    max-height:min(90vh, 760px);
    overflow:auto;
    background:linear-gradient(160deg, #F8FAFC 0%, #F0F4F8 100%);
    border:1px solid rgba(37,99,235,.14);
    border-radius:14px;
    padding:28px 26px 24px;
    box-shadow:0 24px 60px rgba(5,10,48,.35);
    transform:translateY(12px);
    transition:transform .25s ease;
  }
  .contact-modal.is-open .contact-modal__dialog{transform:translateY(0);}
  .contact-modal__close{
    position:absolute; top:12px; right:14px;
    width:36px; height:36px; border:0; border-radius:50%;
    background:rgba(37,99,235,.08); color:var(--navy);
    font-size:24px; line-height:1; cursor:pointer;
  }
  .contact-modal__close:hover{background:rgba(37,99,235,.16);}
  .contact-modal__head{margin-bottom:20px; padding-right:36px;}
  .contact-modal__head h3{
    font-family:'Inter', sans-serif;
    font-size:24px; font-weight:700; color:var(--navy); margin-bottom:8px;
  }
  .contact-modal__head p{color:var(--slate); font-size:14px; line-height:1.55;}
  .contact-modal .form-row{margin-bottom:14px;}
  .contact-modal .full{margin-bottom:14px;}
  .contact-modal label{color:var(--slate);}
  .contact-modal input,
  .contact-modal select,
  .contact-modal textarea{
    background:#fff;
    border:1px solid rgba(148,163,184,.45);
    color:var(--charcoal);
  }
  .form-status{
    margin:0 0 12px;
    font-size:13px;
    line-height:1.45;
    padding:10px 12px;
    border-radius:6px;
  }
  .form-status.is-success{
    background:rgba(16,185,129,.12);
    color:#047857;
  }
  .form-status.is-error{
    background:rgba(239,68,68,.1);
    color:#b91c1c;
  }
  .send-btn:disabled{opacity:.7; cursor:not-allowed;}

  /* THANK YOU — inline + page */
  .thankyou-inline{
    text-align:center;
    padding:28px 12px 10px;
  }
  .thankyou-inline .thankyou-icon,
  .thankyou-page .thankyou-icon{
    width:64px; height:64px; margin:0 auto 18px;
    border-radius:50%;
    background:rgba(37,99,235,.12);
    color:var(--cta);
    display:flex; align-items:center; justify-content:center;
    font-size:28px; font-weight:700;
  }
  .thankyou-inline h3{
    font-family:'Inter', sans-serif;
    font-size:22px; color:var(--navy); margin-bottom:10px;
  }
  .thankyou-inline p{
    color:var(--slate); font-size:14.5px; line-height:1.6;
    max-width:360px; margin:0 auto 22px;
  }
  .thankyou-page{
    min-height:calc(100vh - 160px);
    display:flex; align-items:center; justify-content:center;
    padding:80px 20px;
    background:var(--bg-light);
  }
  .thankyou-card{
    max-width:560px;
    text-align:center;
    background:rgba(255,255,255,.85);
    border:1px solid rgba(37,99,235,.12);
    border-radius:16px;
    padding:48px 32px;
    box-shadow:0 20px 50px rgba(10,25,47,.08);
  }
  .thankyou-eyebrow{
    font-family:'JetBrains Mono', monospace;
    font-size:11px; letter-spacing:.12em; text-transform:uppercase;
    color:var(--cta); margin-bottom:12px;
  }
  .thankyou-card h1{
    font-family:'Inter', sans-serif;
    font-size:clamp(26px, 4vw, 34px);
    color:var(--navy);
    margin-bottom:14px;
  }
  .thankyou-copy{
    color:var(--slate); font-size:15px; line-height:1.7;
    margin-bottom:12px;
  }
  .thankyou-meta{
    color:var(--medium-gray); font-size:13px; min-height:1.2em;
    margin-bottom:28px;
  }
  .thankyou-actions{
    display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
  }
  .thankyou-page .btn-outline{
    border-color:rgba(37,99,235,.35);
    color:var(--cta);
  }
  .thankyou-page .btn-outline:hover{
    background:var(--cta); color:#fff;
  }

  @media(max-width:560px){
    .contact-modal{padding:12px; align-items:flex-end;}
    .contact-modal__dialog{padding:22px 16px 18px; border-radius:14px 14px 0 0; max-height:92vh;}
    .contact-modal .form-row{grid-template-columns:1fr;}
    .thankyou-card{padding:36px 20px;}
  }
