  :root{
    --navy:#020842;
    --slate:#49515B;
    --slate-light:#767C84;
    --purple:#640D5F;
    --pink:#D91656;
    --orange:#EB5B00;
    --gradient: linear-gradient(91deg, var(--purple) -15.07%, var(--pink) 47.37%, var(--orange) 109.8%);
    --bg-lavender-1:#F5F5FB;
    --bg-lavender-2:#F9FAFF;
    --bg-lavender-3:#FAF5FF;
    --border:#E7E7E7;
    --gold:#FFBD12;
    --radius:12px;
    --max-w:1200px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color:var(--slate);
    background:#ffffff;
    line-height:1.6;
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  .wrap{max-width:var(--max-w); margin:0 auto; padding:0 24px;}
  h1,h2,h3,h4{color:var(--navy); font-weight:700; line-height:1.2;}
  section{padding:72px 0;}
  .eyebrow{
    font-size:13px; font-weight:600; color:var(--pink); text-transform:uppercase;
    letter-spacing:1px; margin-bottom:10px; display:block;
  }
  .section-head{max-width:640px; margin-bottom:44px;}
  .section-head h2{font-size:clamp(24px,3vw,34px); margin-bottom:12px;}
  .section-head p{font-size:16px; color:var(--slate);}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; gap:8px; justify-content:center;
    font-size:14px; font-weight:600; padding:15px 30px; border-radius:50px;
    border:none; cursor:pointer; white-space:nowrap; transition:transform .2s ease, opacity .2s ease;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-primary{background:var(--gradient); color:#fff;}
  .btn-outline{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
  .btn-outline:hover{background:var(--navy); color:#fff;}
  .btn-sm{padding:10px 20px; font-size:13px;}

  /* Header */
  header{
    position:sticky; top:0; z-index:100; background:rgba(255,255,255,.92);
    backdrop-filter:blur(8px); border-bottom:1px solid var(--border);
  }
  .nav-row{display:flex; align-items:center; justify-content:space-between; height:84px;}
  .logo img{height:36px;}
  nav.desktop-nav ul{display:flex; gap:32px; align-items:center;}
  nav.desktop-nav a{font-size:14px; font-weight:500; color:var(--navy);}
  .nav-actions{display:flex; align-items:center; gap:16px;}
  .burger{display:none; background:none; border:none; cursor:pointer; flex-direction:column; gap:5px;}
  .burger span{width:24px; height:2px; background:var(--navy); display:block;}
  .mobile-nav{display:none; flex-direction:column; gap:0; border-top:1px solid var(--border); padding:8px 0;}
  .mobile-nav a{display:block; padding:12px 0; font-size:15px; color:var(--navy); border-bottom:1px solid var(--border);}
  .mobile-nav.open{display:flex;}

  /* Hero */
  .hero{
    background:var(--bg-lavender-2);
    padding:80px 0 64px;
  }
  .hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center;}
  .hero h1{font-size:clamp(32px,4.2vw,50px); margin-bottom:18px;}
  .hero .lead{font-size:17px; max-width:480px; margin-bottom:28px;}
  .hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:22px;}
  .rating{font-size:13px; color:var(--slate-light); display:flex; align-items:center; gap:8px;}
  .stars{color:var(--gold); letter-spacing:2px;}
  .hero-visual{display:flex; align-items:center; justify-content:center; padding:12px;}
  .hero-visual svg{width:100%; max-width:440px; height:auto;}

  /* Trust strip */
  .trust{padding:36px 0; border-bottom:1px solid var(--border);}
  .trust p{font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--slate-light); text-align:center; margin-bottom:22px;}
  .trust-logos{display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:40px; opacity:.75;}
  .trust-logos img{height:26px; width:auto; filter:grayscale(100%);}

  /* Outcome pillars */
  .pillars{background:var(--bg-lavender-1);}
  .pillar-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
  .pillar{background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:28px 20px; text-align:center;}
  .pillar .icon{
    width:48px; height:48px; border-radius:50%; background:var(--bg-lavender-3);
    display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
  }
  .pillar .icon svg{width:24px; height:24px; stroke:var(--pink);}
  .pillar h4{font-size:16px; margin-bottom:6px;}
  .pillar p{font-size:13px; color:var(--slate-light);}

  /* AI capability grid */
  .capability-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  .capability-card{
    border:1px solid var(--border); border-radius:var(--radius); padding:26px;
    background:#fff; transition:border-color .2s ease, transform .2s ease;
  }
  .capability-card:hover{border-color:var(--pink); transform:translateY(-3px);}
  .capability-card .icon{
    width:44px; height:44px; border-radius:10px; background:var(--bg-lavender-3);
    display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  }
  .capability-card .icon svg{width:22px; height:22px; stroke:var(--purple);}
  .capability-card h4{font-size:16px; margin-bottom:8px;}
  .capability-card p{font-size:13.5px; color:var(--slate-light);}

  /* Proof / case studies */
  .proof{background:var(--bg-lavender-2);}
  .proof-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:16px;}
  .proof-card{background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:28px; text-align:center;}
  .proof-card .num{font-size:34px; font-weight:700; background:var(--gradient); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:8px;}
  .proof-card p{font-size:13.5px; color:var(--slate-light);}
  .proof-note{font-size:12px; color:var(--slate-light); text-align:center;}

  /* Process */
  .process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative;}
  .process-step{text-align:center; position:relative;}
  .process-step .num{
    width:40px; height:40px; border-radius:50%; background:var(--navy); color:#fff;
    display:flex; align-items:center; justify-content:center; font-weight:700; margin:0 auto 14px; font-size:15px;
  }
  .process-step h4{font-size:15px; margin-bottom:6px;}
  .process-step p{font-size:13px; color:var(--slate-light);}

  /* Testimonial */
  .testimonial{background:var(--bg-lavender-1);}
  .testimonial-card{
    max-width:720px; margin:0 auto; background:#fff; border:1px solid var(--border);
    border-radius:20px; padding:44px; text-align:center;
  }
  .testimonial-card p.quote{font-size:19px; color:var(--navy); font-style:italic; margin-bottom:22px;}
  .testimonial-person{display:flex; align-items:center; justify-content:center; gap:12px;}
  .testimonial-person img{width:44px; height:44px; border-radius:50%;}
  .testimonial-person b{display:block; font-size:14px; color:var(--navy);}
  .testimonial-person span{font-size:12px; color:var(--slate-light);}

  /* Lead capture */
  .lead-section{padding-bottom:88px;}
  .lead-card{
    max-width:560px; margin:0 auto; background:#fff; border:1px solid var(--border);
    border-radius:20px; padding:40px; box-shadow:0 20px 60px -30px rgba(2,8,66,.2);
  }
  .lead-progress{display:flex; gap:6px; margin-bottom:26px;}
  .lead-progress i{flex:1; height:4px; border-radius:2px; background:var(--bg-lavender-1);}
  .lead-progress i.done{background:var(--pink);}
  .lead-step{display:none;}
  .lead-step.active{display:block;}
  .field{margin-bottom:16px;}
  .field label{display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px;}
  .field input, .field textarea{
    width:100%; padding:12px 14px; border:1px solid var(--border); border-radius:8px;
    font-size:14px; font-family:inherit; color:var(--navy);
  }
  .field input:focus, .field textarea:focus{outline:none; border-color:var(--pink);}
  .lead-actions{display:flex; justify-content:flex-end; gap:10px; margin-top:8px;}
  .lead-success{display:none; text-align:center; padding:20px 0;}
  .lead-success.active{display:block;}
  .lead-success svg{width:44px; height:44px; stroke:var(--pink); margin:0 auto 14px;}

  /* FAQ */
  .faq-list{max-width:760px; margin:0 auto;}
  .faq-item{border-bottom:1px solid var(--border);}
  .faq-q{
    width:100%; text-align:left; background:none; border:none; cursor:pointer;
    padding:20px 4px; display:flex; justify-content:space-between; align-items:center;
    font-size:15.5px; font-weight:600; color:var(--navy); font-family:inherit;
  }
  .faq-q svg{width:18px; height:18px; stroke:var(--slate-light); transition:transform .2s ease; flex-shrink:0;}
  .faq-item.open .faq-q svg{transform:rotate(180deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .25s ease;}
  .faq-a p{padding:0 4px 20px; font-size:14px; color:var(--slate-light);}

  /* Closing CTA */
  .cta-banner{background:var(--gradient); text-align:center; padding:64px 0;}
  .cta-banner h2{color:#fff; font-size:clamp(22px,3vw,30px); margin-bottom:22px;}
  .cta-banner .btn-primary{background:#fff; color:var(--navy);}

  /* Footer */
  footer{background:var(--navy); color:#B8BCD6; padding:64px 0 24px;}
  .footer-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; margin-bottom:48px;}
  .footer-top img{height:30px; margin-bottom:16px;}
  .footer-top p{font-size:13px; color:#9BA0C0; margin-bottom:16px;}
  .footer-socials{display:flex; gap:12px;}
  .footer-socials a{
    width:34px; height:34px; border:1px solid #2E355F; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .footer-socials img{width:16px; height:16px;}
  .footer-col h4{color:#fff; font-size:14px; margin-bottom:16px;}
  .footer-col ul li{margin-bottom:10px;}
  .footer-col a{font-size:13px; color:#9BA0C0;}
  .footer-col a:hover{color:#fff;}
  .footer-bottom{
    border-top:1px solid #23295A; padding-top:22px; display:flex;
    justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12.5px; color:#8A8FB5;
  }
  .footer-bottom .links{display:flex; gap:18px;}
.alert{padding:11px 14px; border-radius:8px; font-size:13.5px; margin-bottom:14px;}
.alert-danger{background:#FDECEF; color:#B01243; border:1px solid #F7C7D3;}
.alert-success{background:#ECFAF1; color:#0F7B45; border:1px solid #C6EDD7;}
  /* Responsive */
  @media (max-width:960px){
    nav.desktop-nav, .nav-actions .btn{display:none;}
    .burger{display:flex;}
    .hero-grid{grid-template-columns:1fr;}
    .pillar-grid, .capability-grid, .proof-grid, .process-grid{grid-template-columns:repeat(2,1fr);}
    .footer-top{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    section{padding:52px 0;}
    .pillar-grid, .capability-grid, .proof-grid, .process-grid{grid-template-columns:1fr;}
    .footer-top{grid-template-columns:1fr;}
    .lead-card{padding:28px 22px;}
  }
