  :root{
    --navy:#090921;
    --navy-light:#12122e;
    --blue:#4d7cfb;
    --blue-dark:#3a63e0;
    --white:#f5f5f0;
    --grey:#8a8ea3;
    --card:#101030;
    --border:#22224a;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
    background:var(--navy);
    color:var(--white);
    line-height:1.6;
  }
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img,svg{display:block;max-width:100%;}
  .wrap{max-width:1180px;margin:0 auto;padding:0 24px;}
  .btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:6px;
    font-weight:700;
    font-size:15px;
    letter-spacing:0.3px;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    cursor:pointer;
    border:none;
  }
  .btn-primary{
    background:var(--blue);
    color:#fff;
    box-shadow:0 8px 24px rgba(77,124,251,0.35);
  }
  .btn-primary:hover{background:var(--blue-dark); transform:translateY(-2px);}
  .btn-outline{
    background:transparent;
    border:1.5px solid rgba(245,245,240,0.35);
    color:var(--white);
  }
  .btn-outline:hover{border-color:var(--blue); color:var(--blue);}
  .eyebrow{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:700;
    color:var(--blue);
    margin-bottom:14px;
    display:block;
  }
  section{padding:96px 0;}
  h1,h2,h3{font-weight:800; letter-spacing:-0.5px;}
  p{color:var(--grey);}

  /* NAV */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(9,9,33,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 0;
  }
  .logo{font-size:20px; font-weight:800; letter-spacing:-0.5px;}
  .logo span{color:var(--blue);}
  .nav-links{display:flex; gap:36px; align-items:center;}
  .nav-links a{font-size:14px; font-weight:600; color:var(--white); opacity:0.85;}
  .nav-links a:hover{opacity:1; color:var(--blue);}
  .nav-cta{display:flex; align-items:center; gap:20px;}
  .nav-phone{font-size:14px; font-weight:600; color:var(--grey);}
  .menu-toggle{display:none; background:none; border:none; color:var(--white); font-size:26px; cursor:pointer;}

  /* HERO */
  .hero{
    padding:110px 0 100px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute; top:-200px; right:-200px;
    width:600px; height:600px;
    background:radial-gradient(circle, rgba(77,124,251,0.18) 0%, transparent 70%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:60px;
    align-items:center;
    position:relative;
  }
  .hero h1{
    font-size:48px;
    line-height:1.15;
    margin-bottom:22px;
  }
  h1 .accent{color:var(--blue);}
  .hero p.lead{
    font-size:18px;
    max-width:520px;
    margin-bottom:34px;
  }
  .hero-ctas{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px;}
  .hero-trust{
    display:flex; gap:28px; flex-wrap:wrap;
    padding-top:28px; border-top:1px solid var(--border);
  }
  .hero-trust div{font-size:13px; color:var(--grey); font-weight:600;}
  .hero-trust strong{display:block; color:var(--white); font-size:22px; font-weight:800;}

  .hero-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:16px;
    padding:32px;
    box-shadow:0 30px 60px rgba(0,0,0,0.35);
  }
  .hero-card .card-label{font-size:13px; color:var(--grey); font-weight:600; margin-bottom:6px;}
  .hero-card .card-title{font-size:20px; font-weight:800; margin-bottom:24px;}
  .estimator-row{
    display:flex; justify-content:space-between; align-items:center;
    padding:14px 0; border-bottom:1px solid var(--border);
  }
  .estimator-row:last-of-type{border-bottom:none;}
  .estimator-row span:first-child{font-size:14px; color:var(--grey);}
  .estimator-row span:last-child{font-size:15px; font-weight:700;}
  .hero-card .btn{width:100%; text-align:center; margin-top:22px;}

  /* PAIN / INTRO STRIP */
  .pain{
    background:var(--navy-light);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  .pain-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
  }
  .pain-item h3{font-size:17px; margin-bottom:10px; display:flex; gap:10px; align-items:center;}
  .pain-item p{font-size:14.5px;}
  .pain-icon{
    width:38px; height:38px; border-radius:8px;
    background:rgba(77,124,251,0.15); color:var(--blue);
    display:flex; align-items:center; justify-content:center;
    font-size:18px; flex-shrink:0;
  }

  /* SECTION HEAD */
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head h2{font-size:34px; margin-bottom:16px;}
  .section-head p{font-size:16px;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}

  /* SERVICES */
  .services-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
  }
  .service-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:14px;
    padding:32px 28px;
    transition:border-color .15s ease, transform .15s ease;
    display:flex;
    flex-direction:column;
  }
  .service-card:hover{border-color:var(--blue); transform:translateY(-4px);}
  .service-icon{
    width:48px; height:48px; border-radius:10px;
    background:rgba(77,124,251,0.15);
    display:flex; align-items:center; justify-content:center;
    font-size:22px; margin-bottom:20px;
  }
  .service-card h3{font-size:19px; margin-bottom:10px;}
  .service-card p{font-size:14.5px; margin-bottom:18px;}
  .service-card ul{flex-grow:1;}
  .service-card ul li{
    font-size:13.5px; color:var(--grey);
    padding-left:20px; position:relative; margin-bottom:8px;
  }
  .service-card ul li::before{
    content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800;
  }
  .service-card > .btn{margin-top:22px;}

  /* WHY US / STATS */
  .why{
    background:var(--navy-light);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  .why-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  }
  .why-list li{
    display:flex; gap:16px; margin-bottom:26px; align-items:flex-start;
  }
  .why-list .num{
    width:34px; height:34px; border-radius:50%;
    background:rgba(77,124,251,0.15); color:var(--blue);
    font-weight:800; font-size:14px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .why-list h4{font-size:16px; margin-bottom:4px;}
  .why-list p{font-size:14px;}
  .stats-card{
    background:var(--card); border:1px solid var(--border); border-radius:16px; padding:36px;
    display:grid; grid-template-columns:1fr 1fr; gap:28px;
  }
  .stat strong{display:block; font-size:32px; font-weight:800; color:var(--blue);}
  .stat span{font-size:13px; color:var(--grey); font-weight:600;}

  /* ABOUT / FOUNDERS */
  .founders-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:28px;
  }
  .founder-card{
    background:var(--card); border:1px solid var(--border); border-radius:14px; padding:30px;
  }
  .founder-avatar{
    width:56px; height:56px; border-radius:50%;
    background:linear-gradient(135deg,var(--blue),#8aa8ff);
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:18px; color:#fff; margin-bottom:18px;
  }
  .founder-card h3{font-size:18px; margin-bottom:4px;}
  .founder-role{font-size:13px; color:var(--blue); font-weight:700; margin-bottom:14px; display:block;}
  .founder-card p{font-size:14.5px;}

  /* PRICING */
  .pricing{background:var(--navy-light); border-top:1px solid var(--border); border-bottom:1px solid var(--border);}
  .pricing-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:stretch;
  }
  .price-card{
    background:var(--card); border:1px solid var(--border); border-radius:16px;
    padding:36px 30px; display:flex; flex-direction:column;
  }
  .price-card.featured{
    border-color:var(--blue);
    box-shadow:0 20px 50px rgba(77,124,251,0.2);
    position:relative;
    transform:scale(1.03);
  }
  .price-badge{
    position:absolute; top:-13px; left:50%; transform:translateX(-50%);
    background:var(--blue); color:#fff; font-size:11px; font-weight:800;
    padding:5px 14px; border-radius:20px; letter-spacing:0.5px;
  }
  .price-card h3{font-size:18px; margin-bottom:8px;}
  .price-card .price{font-size:36px; font-weight:800; margin:10px 0 4px;}
  .price-card .price span{font-size:14px; font-weight:600; color:var(--grey);}
  .price-card > p{font-size:13.5px; margin-bottom:22px;}
  .price-card ul{margin-bottom:28px; flex-grow:1;}
  .price-card ul li{
    font-size:14px; color:var(--white); opacity:0.85;
    padding-left:22px; position:relative; margin-bottom:12px;
  }
  .price-card ul li::before{content:"✓"; position:absolute; left:0; color:var(--blue); font-weight:800;}
  .price-card .btn{text-align:center;}
  .price-note{text-align:center; font-size:13px; color:var(--grey); margin-top:36px;}

  /* FAQ */
  .faq-item{
    border-bottom:1px solid var(--border);
    padding:22px 0;
  }
  .faq-q{
    display:flex; justify-content:space-between; align-items:center;
    cursor:pointer; font-weight:700; font-size:16px;
  }
  .faq-q .plus{color:var(--blue); font-size:20px; transition:transform .2s ease;}
  .faq-item.open .plus{transform:rotate(45deg);}
  .faq-a{
    max-height:0; overflow:hidden; transition:max-height .25s ease;
    font-size:14.5px; color:var(--grey); padding-top:0;
  }
  .faq-item.open .faq-a{max-height:200px; padding-top:14px;}

  /* CTA BAND */
  .cta-band{
    background:linear-gradient(135deg, var(--blue-dark), var(--blue));
    border-radius:20px;
    padding:56px;
    display:flex; justify-content:space-between; align-items:center; gap:30px;
    flex-wrap:wrap;
  }
  .cta-band h2{font-size:28px; color:#fff; margin-bottom:8px;}
  .cta-band p{color:rgba(255,255,255,0.85); font-size:15px;}
  .cta-band .btn-primary{background:#fff; color:var(--blue-dark); box-shadow:none;}
  .cta-band .btn-primary:hover{background:#e9edff;}

  /* CONTACT */
  .contact-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:50px;
  }
  .contact-info li{
    display:flex; gap:16px; margin-bottom:26px; align-items:flex-start;
  }
  .contact-info .ic{
    width:42px; height:42px; border-radius:10px; background:rgba(77,124,251,0.15);
    color:var(--blue); display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .contact-info h4{font-size:15px; margin-bottom:4px;}
  .contact-info p{font-size:14px;}
  .placeholder{color:var(--blue); font-style:italic;}
  form{display:flex; flex-direction:column; gap:16px;}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  input, textarea{
    background:var(--card); border:1px solid var(--border); border-radius:8px;
    padding:14px 16px; color:var(--white); font-family:inherit; font-size:14px;
    outline:none; width:100%;
  }
  input:focus, textarea:focus{border-color:var(--blue);}
  textarea{resize:vertical; min-height:110px;}
  ::placeholder{color:var(--grey);}

  /* FOOTER */
  footer{border-top:1px solid var(--border); padding:48px 0 32px;}
  .footer-grid{
    display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:30px;
    margin-bottom:36px;
  }
  .footer-links{display:flex; gap:60px; flex-wrap:wrap;}
  .footer-col h5{font-size:13px; text-transform:uppercase; letter-spacing:1px; color:var(--grey); margin-bottom:16px;}
  .footer-col a{display:block; font-size:14px; margin-bottom:10px; color:var(--white); opacity:0.85;}
  .footer-col a:hover{color:var(--blue); opacity:1;}
  .footer-bottom{
    border-top:1px solid var(--border); padding-top:24px;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
    font-size:13px; color:var(--grey);
  }

  @media (max-width: 900px){
    .hero-grid, .why-grid, .contact-grid{grid-template-columns:1fr;}
    .pain-grid, .services-grid, .pricing-grid, .founders-grid{grid-template-columns:1fr;}
    .price-card.featured{transform:none;}
    nav{position:relative; flex-wrap:wrap;}
    .nav-links{
      display:none;
      width:100%;
      flex-direction:column;
      align-items:flex-start;
      gap:18px;
      order:3;
      padding-top:20px; margin-top:14px;
      border-top:1px solid var(--border);
    }
    .nav-links.mobile-open{display:flex;}
    .nav-cta{gap:12px;}
    .nav-phone{display:none;}
    .menu-toggle{display:block;}
    .hero h1{font-size:34px;}
    section{padding:64px 0;}
    .cta-band{padding:36px;}
  }

/* PAGE HERO (service pages) */
.page-hero{padding:80px 0 60px;}
.page-hero h1{font-size:40px; line-height:1.15; margin-bottom:18px;}
.page-hero p.lead{font-size:17px; max-width:640px; margin-bottom:30px; margin-left:0;}

/* BREADCRUMB */
.breadcrumb{font-size:13px; color:var(--grey); margin-bottom:22px;}
.breadcrumb a{color:var(--grey);}
.breadcrumb a:hover{color:var(--blue);}

/* CHECK LIST (standalone, service pages) */
.check-list li{
  font-size:15.5px; color:var(--white); opacity:0.92;
  padding-left:28px; position:relative; margin-bottom:16px;
}
.check-list li::before{content:"\2713"; position:absolute; left:0; color:var(--blue); font-weight:800;}

/* PROCESS STEPS */
.process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.process-step{background:var(--card); border:1px solid var(--border); border-radius:14px; padding:26px 22px;}
.process-step .num{
  width:34px; height:34px; border-radius:50%;
  background:rgba(77,124,251,0.15); color:var(--blue);
  font-weight:800; font-size:14px;
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.process-step h4{font-size:15.5px; margin-bottom:8px;}
.process-step p{font-size:13.5px;}

/* RELATED SERVICES */
.related-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.related-card{
  background:var(--card); border:1px solid var(--border); border-radius:14px;
  padding:26px 24px; display:block; transition:border-color .15s ease, transform .15s ease;
}
.related-card:hover{border-color:var(--blue); transform:translateY(-3px);}
.related-card h3{font-size:17px; margin-bottom:6px;}
.related-card p{font-size:13.5px; margin-bottom:12px;}
.related-card .arrow{color:var(--blue); font-weight:800; font-size:13px;}

@media (max-width: 900px){
  .process-grid, .related-grid{grid-template-columns:1fr;}
  .page-hero h1{font-size:30px;}
}
