  :root{
    --navy:#0F2747;
    --navy-2:#132D52;
    --gold:#CBA24A;
    --gold-light:#E4C98A;
    --cream:#FDFBF7;
    --line:#E4DDCF;
    --ink:#1C2733;
    --muted:#6B6459;
    --white:#FFFFFF;
    --radius:18px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',system-ui,sans-serif;
    color:var(--ink);
    background:var(--cream);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4,.display{font-family:'Space Grotesk',sans-serif;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  .wrap{max-width:1160px;margin:0 auto;padding:0 28px;}
  section{padding:44px 0;}
  @media(max-width:720px){ section{padding:64px 0;} .wrap{padding:0 20px;} }

  /* focus visibility */
  a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{
    outline:2px solid var(--gold); outline-offset:3px;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
  }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:var(--navy);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  nav.wrap{display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px;}
  .brand img{height:34px;}
  .navlinks{display:flex; gap:32px; align-items:center; font-size:14.5px; font-weight:500;}
  .navlinks a{color:#fff; opacity:0.8; transition:opacity .2s;}
  .navlinks a:hover{opacity:1;}
  .nav-cta{
    background:var(--gold); color:var(--navy) !important; opacity:1 !important;
    padding:10px 20px; border-radius:999px; font-weight:600; font-size:14px;
  }
  .nav-phone{display:none; color:#fff;}
  @media(min-width:860px){.nav-phone{display:inline;}}
  .navlinks .navlist{display:none; gap:32px;}
  @media(min-width:860px){.navlinks .navlist{display:flex;}}

  /* ---------- HERO ---------- */
  .hero{padding-top:48px; padding-bottom:60px;}
  .hero-grid{display:grid; grid-template-columns:1.15fr 1fr; gap:56px; align-items:center;}
  @media(max-width:920px){.hero-grid{grid-template-columns:1fr; gap:40px;}}
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    font-size:12.5px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
    color:var(--gold); margin-bottom:18px;
  }
  .eyebrow::before{content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); display:inline-block;}
  .hero h1{
    font-size:clamp(34px,5vw,54px); font-weight:700; line-height:1.12; color:var(--navy);
    letter-spacing:-0.01em;
  }
  .hero p.lead{font-size:18px; color:var(--muted); margin-top:22px; max-width:52ch;}
  .hero-ctas{display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;}

  /* ---------- HERO WITH PHOTO BACKGROUND ---------- */
  .hero-photo{
    background-size:cover; background-position:center;
    border-radius:0 0 28px 28px;
    padding-top:64px; padding-bottom:76px;
  }
  .hero-photo .eyebrow{color:var(--gold-light);}
  .hero-photo h1{color:#fff;}
  .hero-photo p.lead{color:#E7ECF2;}
  .hero-photo .sectors-line{color:#C7D3DF;}
  .hero-photo .sectors-line b{color:#fff;}
  .hero-photo .launch-badge{background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.22); color:#fff;}

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:15px 26px; border-radius:999px; font-weight:600; font-size:15px;
    border:1px solid transparent; cursor:pointer; transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-primary{background:var(--navy); color:#fff; box-shadow:0 10px 24px rgba(15,39,71,0.22);}
  .btn-ghost{background:transparent; color:var(--navy); border-color:var(--navy);}
  .sectors-line{margin-top:28px; font-size:13.5px; color:var(--muted);}
  .sectors-line b{color:var(--navy); font-weight:600;}
  .launch-badge{
    display:inline-block; margin-top:22px; padding:10px 18px; border-radius:999px;
    background:#FBF0DA; border:1px solid var(--gold); color:var(--navy); font-size:13.5px;
  }

  /* Signature element: identity card */
  .idcard{
    background:var(--navy); border-radius:24px; padding:34px 30px;
    box-shadow:0 24px 60px rgba(15,39,71,0.35);
    position:relative; overflow:hidden;
  }
  .idcard::after{
    content:""; position:absolute; inset:0;
    background:radial-gradient(circle at 85% 0%, rgba(203,162,74,0.18), transparent 55%);
    pointer-events:none;
  }
  .idcard .call-label{font-size:12px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); font-weight:600;}
  .idcard .ring{display:flex; align-items:center; gap:10px; margin-top:14px;}
  .ring-dot{width:9px; height:9px; border-radius:50%; background:#5FE39B; box-shadow:0 0 0 4px rgba(95,227,155,0.18); animation:pulse 1.8s infinite;}
  @keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.4;}}
  .idcard .business-name{
    font-family:'Space Grotesk',sans-serif; color:#fff; font-size:28px; font-weight:600;
    margin-top:16px; min-height:76px; display:flex; align-items:center;
  }
  .idcard .business-name span{transition:opacity .4s ease;}
  .idcard hr{border:none; border-top:1px solid rgba(255,255,255,0.14); margin:22px 0;}
  .idcard .transcript{font-size:14.5px; color:#C7D3DF; line-height:1.8;}
  .idcard .transcript b{color:#fff;}
  .idcard .foot{margin-top:20px; font-size:12px; color:#8FA0B8; letter-spacing:.3px;}

  /* ---------- PHOTO BAND ---------- */
  .photo-band{position:relative; width:100%; height:340px; overflow:hidden;}
  .photo-band img{width:100%; height:100%; object-fit:cover;}
  .photo-band-overlay{
    position:absolute; inset:0; display:flex; align-items:flex-end;
    background:linear-gradient(0deg, rgba(15,39,71,0.82) 0%, rgba(15,39,71,0.1) 55%, transparent 100%);
    padding:32px 28px;
  }
  .photo-band-overlay p{
    color:#fff; font-family:'Space Grotesk',sans-serif; font-size:clamp(18px,2.6vw,26px);
    font-weight:600; max-width:640px;
  }
  @media(max-width:720px){.photo-band{height:220px;}}

  /* ---------- OFFER ---------- */
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-head .eyebrow{color:var(--gold);}
  .section-head h2{font-size:clamp(26px,3.4vw,38px); color:var(--navy); font-weight:700; line-height:1.2;}
  .section-head p{color:var(--muted); margin-top:14px; font-size:16px;}

  .cards3{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch;}
  @media(max-width:880px){.cards3{grid-template-columns:1fr;}}
  .card{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:34px 28px; display:flex; flex-direction:column;
  }
  .card.featured{
    background:var(--navy); border-color:var(--navy); color:#fff;
    transform:translateY(-10px); box-shadow:0 20px 50px rgba(15,39,71,0.28);
  }
  @media(max-width:880px){.card.featured{transform:none;}}
  .card .badge{
    align-self:flex-start; background:var(--gold); color:var(--navy); font-size:11px; font-weight:700;
    letter-spacing:.6px; text-transform:uppercase; padding:5px 12px; border-radius:999px; margin-bottom:16px;
  }
  .card h3{font-size:19px; font-weight:700; letter-spacing:.5px;}
  .card.featured h3{color:var(--gold);}
  .card .tag{font-size:14px; color:var(--muted); font-style:italic; margin-top:6px;}
  .card.featured .tag{color:#C7D3DF;}
  .card .price{font-size:30px; font-weight:700; color:var(--navy); margin-top:20px; font-family:'Space Grotesk',sans-serif;}
  .card.featured .price{color:#fff;}
  .card .price span{font-size:13px; font-weight:400; color:var(--muted);}
  .card.featured .price span{color:#9FB0C4;}
  .card .old-price{font-size:17px; font-weight:500; color:var(--muted); text-decoration:line-through; margin-right:8px;}
  .card.featured .old-price{color:#8FA0B8;}
  .card .then-price{font-size:12.5px; color:var(--muted); margin-top:4px;}
  .card.featured .then-price{color:#9FB0C4;}
  .card ul{list-style:none; margin-top:20px; flex-grow:1;}
  .card li{font-size:14px; padding:7px 0; padding-left:20px; position:relative; color:#333;}
  .card.featured li{color:#EAF0F6;}
  .card li::before{content:"—"; position:absolute; left:0; color:var(--gold);}
  .card .idealfor{margin-top:18px; padding-top:16px; border-top:1px solid var(--line); font-size:12.5px; color:var(--muted);}
  .card.featured .idealfor{border-top-color:rgba(255,255,255,.15); color:#B9C3D1;}
  .card .idealfor b{display:block; color:var(--navy); font-size:11px; letter-spacing:.8px; margin-bottom:4px;}
  .card.featured .idealfor b{color:var(--gold);}
  .custom-note{text-align:center; margin-top:34px; font-size:14px; color:var(--muted);}
  .custom-note b{color:var(--navy);}
  .card-cta{
    display:block; text-align:center; margin-top:22px; padding:13px 18px; border-radius:999px;
    background:var(--navy); color:#fff; font-weight:600; font-size:14.5px;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .card-cta:hover{transform:translateY(-1px); box-shadow:0 10px 20px rgba(15,39,71,0.22);}
  .card-cta.cta-featured{background:var(--gold); color:var(--navy);}
  .card-cta.cta-featured:hover{box-shadow:0 10px 20px rgba(203,162,74,0.35);}

  /* ---------- WHY ---------- */
  .why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:36px;}
  @media(max-width:880px){.why-grid{grid-template-columns:1fr;}}
  .why-item .icon{
    width:52px; height:52px; border-radius:14px; background:var(--line);
    display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:700; color:var(--navy);
    margin-bottom:18px;
  }
  .why-item h3{font-size:17px; font-weight:700; color:var(--navy);}
  .why-item p{font-size:14.5px; color:var(--muted); margin-top:8px;}

  .pourquoi-grid{display:grid; grid-template-columns:300px 1fr; gap:48px; align-items:start;}
  @media(max-width:860px){.pourquoi-grid{grid-template-columns:1fr;}}
  .pourquoi-photo{width:100%; height:480px; object-fit:cover; border-radius:var(--radius); box-shadow:0 20px 44px rgba(15,39,71,0.18); position:sticky; top:100px;}
  @media(max-width:860px){.pourquoi-photo{height:260px; position:static;}}

  /* ---------- STEPS ---------- */
  .steps-wrap{background:var(--navy); border-radius:28px; padding:56px 44px; color:#fff;}
  @media(max-width:720px){.steps-wrap{padding:40px 24px;}}
  .steps-wrap .section-head h2{color:#fff;}
  .steps-wrap .section-head p{color:#C7D3DF;}
  .steps3{display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:10px;}
  @media(max-width:880px){.steps3{grid-template-columns:1fr;}}
  .step{position:relative; padding-left:44px;}
  .step .num{
    position:absolute; left:0; top:0; width:32px; height:32px; border-radius:50%;
    background:var(--gold); color:var(--navy); font-weight:700; font-size:14px;
    display:flex; align-items:center; justify-content:center;
  }
  .step h4{font-size:16px; font-weight:700;}
  .step p{font-size:14px; color:#C7D3DF; margin-top:8px;}

  /* ---------- QUOTE ---------- */
  .quote-band{
    border-left:4px solid var(--gold); background:#fff; border-radius:0 var(--radius) var(--radius) 0;
    padding:40px 44px; max-width:820px; margin:0 auto;
  }
  .quote-band p{font-size:20px; font-style:italic; color:var(--navy); line-height:1.7; font-family:'Space Grotesk',sans-serif; font-weight:500;}

  /* ---------- FAQ ---------- */
  .faq-list{max-width:760px; margin:0 auto;}
  .faq-item{border-bottom:1px solid var(--line); padding:22px 0;}
  .faq-q{
    display:flex; justify-content:space-between; align-items:center; cursor:pointer;
    font-weight:600; font-size:16px; color:var(--navy);
  }
  .faq-q .chev{transition:transform .25s ease; color:var(--gold); font-size:18px;}
  .faq-item.open .chev{transform:rotate(45deg);}
  .faq-a{max-height:0; overflow:hidden; transition:max-height .3s ease;}
  .faq-a p{padding-top:12px; font-size:14.5px; color:var(--muted); max-width:60ch;}

  /* ---------- HUMAN TOUCH ---------- */
  .human-grid{display:grid; grid-template-columns:340px 1fr; gap:48px; align-items:center;}
  @media(max-width:780px){.human-grid{grid-template-columns:1fr;}}
  .human-photo{width:100%; height:340px; object-fit:cover; border-radius:var(--radius); box-shadow:0 20px 44px rgba(15,39,71,0.18);}
  @media(max-width:780px){.human-photo{height:280px;}}

  /* ---------- CONTACT ---------- */
  .contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px;}
  @media(max-width:880px){.contact-grid{grid-template-columns:1fr; gap:36px;}}
  .contact-info h2{font-size:clamp(24px,3vw,32px); color:var(--navy); font-weight:700;}
  .contact-info p{color:var(--muted); margin-top:14px; font-size:15.5px; max-width:44ch;}
  .contact-line{display:flex; align-items:center; gap:12px; margin-top:22px; font-size:15px;}
  .contact-line .dot{width:34px; height:34px; border-radius:50%; background:var(--line); display:flex; align-items:center; justify-content:center; font-size:15px; color:var(--navy); flex-shrink:0;}

  form.contact-form{display:flex; flex-direction:column; gap:14px;}
  .form-row{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  @media(max-width:520px){.form-row{grid-template-columns:1fr;}}
  label{font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px; display:block;}
  input,textarea,select{
    width:100%; padding:13px 14px; border-radius:12px; border:1px solid var(--line);
    background:#fff; font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink);
  }
  textarea{resize:vertical; min-height:110px;}
  .form-status{font-size:14px; margin-top:6px; display:none;}
  .form-status.show{display:block;}

  /* ---------- NEWSLETTER & REFERRAL ---------- */
  .newsletter-section{padding-top:0;}
  .newsletter-inner{
    background:#fff; border:1px solid var(--line); border-radius:var(--radius);
    padding:36px 40px; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  }
  .newsletter-inner h3{font-size:19px; color:var(--navy); font-weight:700;}
  .newsletter-inner p{font-size:14px; color:var(--muted); margin-top:6px; max-width:38ch;}
  .newsletter-form{display:flex; gap:10px; flex-wrap:wrap;}
  .newsletter-form input{
    padding:13px 16px; border-radius:999px; border:1px solid var(--line); font-family:'Inter',sans-serif;
    font-size:14px; min-width:220px;
  }
  .newsletter-form .btn{padding:13px 24px; white-space:nowrap;}

  .referral-section{padding-top:24px;}
  .referral-card{
    background:linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius:var(--radius); padding:40px 44px; color:#fff; text-align:center;
    max-width:760px; margin:0 auto;
  }
  .referral-card .eyebrow{justify-content:center; color:var(--gold);}
  .referral-card h3{font-size:23px; font-weight:700; margin-top:10px; font-family:'Space Grotesk',sans-serif;}
  .referral-card p{font-size:14.5px; color:#C7D3DF; margin-top:12px; max-width:52ch; margin-left:auto; margin-right:auto;}

  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .testi-card{background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px;}
  .testi-quote{font-size:14.5px; color:#333; font-style:italic; line-height:1.6;}
  .testi-author{margin-top:16px;}
  .testi-name{font-weight:700; color:var(--navy); font-size:14px;}
  .testi-role{font-size:12.5px; color:var(--muted);}

  /* ---------- FOOTER ---------- */
  footer{background:var(--navy); color:#C7D3DF; padding:44px 0 28px 0;}
  .footer-row{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
  .footer-row .brand img{height:26px;}
  .footer-note{font-size:12.5px; color:#7E8FA5; margin-top:26px; border-top:1px solid rgba(255,255,255,.1); padding-top:20px;}
