:root{
    --navy:#241C15;
    --navy-2:#33271A;
    --gold:#D4AF37;
    --gold-soft:#e6cd7a;
    --white:#F3ECD9;
    --charcoal:#1F2933;
    --gray:#E4D9BE;
    --gray-text:#75705f;
    --shadow: 0 20px 50px -20px rgba(36,28,21,0.25);
    --shadow-sm: 0 8px 24px -12px rgba(36,28,21,0.18);
    --radius: 18px;
    --maxw: 1180px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',sans-serif;
    color:var(--charcoal);
    background:var(--white);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
    font-weight:600;
    letter-spacing:0.01em;
    color:var(--navy);
  }
  a{text-decoration:none;color:inherit;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}
  button{font-family:inherit;cursor:pointer;border:none;background:none;}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
  section{position:relative;}

  ::selection{background:var(--gold);color:var(--navy);}

  /* focus visibility */
  a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:3px;
  }

  /* ---------- Eyebrow / divider signature ---------- */
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-family:'Inter',sans-serif;
    font-size:12.5px;
    font-weight:600;
    letter-spacing:0.22em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:28px;
    height:1px;
    background:var(--gold);
    display:inline-block;
  }
  .eyebrow.on-light{color:#a9852e;}

  .section-head{
    max-width:640px;
    margin-bottom:56px;
  }
  .section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
  .section-head h2{font-size:clamp(30px,4vw,44px);line-height:1.15;}
  .section-head p{margin-top:16px;color:var(--gray-text);font-size:17px;}

  /* ---------- Nav ---------- */
  header{
    position:fixed;top:0;left:0;right:0;
    z-index:1000;
    background:rgba(243,236,217,0.0);
    padding:22px 0;
    transition:background .35s ease, padding .35s ease, box-shadow .35s ease, border-color .35s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    background:rgba(243,236,217,0.94);
    backdrop-filter:blur(10px);
    padding:14px 0;
    border-bottom:1px solid var(--gray);
    box-shadow:0 10px 30px -22px rgba(36,28,21,0.25);
  }
  nav.wrap{display:flex;align-items:center;justify-content:space-between;gap:20px;}
  .logo{
    font-family:'Cormorant Garamond',serif;
    font-size:24px;
    font-weight:600;
    color:var(--navy);
    letter-spacing:0.02em;
    display:flex;
    align-items:center;
    gap:9px;
    flex-shrink:0;
    white-space:nowrap;
  }
  .logo .logo-mark{
    height:26px;
    width:auto;
    flex-shrink:0;
    display:block;
  }
  .logo .word{display:flex;align-items:baseline;gap:7px;white-space:nowrap;}
  .logo span{color:#a9852e;}
  .logo small{
    font-family:'Inter',sans-serif;
    font-size:10px;
    letter-spacing:0.28em;
    color:var(--gray-text);
    text-transform:uppercase;
    font-weight:500;
  }
  .nav-links{display:flex;gap:22px;align-items:center;}
  .nav-links a{
    color:var(--charcoal);
    font-size:14px;
    font-weight:500;
    letter-spacing:0.01em;
    position:relative;
    padding:4px 0;
    white-space:nowrap;
    transition:color .25s;
  }
  .nav-links a::after{
    content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--gold);
    transition:width .25s ease;
  }
  .nav-links a:hover{color:#a9852e;}
  .nav-links a:hover::after{width:100%;}
  .nav-cta{
    background:transparent;
    color:#a9852e !important;
    border:1px solid rgba(169,133,46,0.55);
    padding:10px 22px;
    border-radius:999px;
    font-weight:600 !important;
    font-size:13px !important;
    white-space:nowrap;
    letter-spacing:0.02em;
    transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  }
  .nav-cta::after{display:none;}
  .nav-cta:hover{background:var(--gold);border-color:var(--gold);color:var(--navy) !important;transform:translateY(-1px);}

  .menu-btn{display:none;flex-direction:column;gap:5px;padding:6px;flex-shrink:0;}
  .menu-btn span{width:24px;height:1.5px;background:var(--navy);display:block;transition:.3s;}

  /* ---------- Hero ---------- */
  .hero{
    background:
      radial-gradient(ellipse 900px 600px at 82% -10%, rgba(212,175,55,0.16), transparent 60%),
      radial-gradient(ellipse 700px 500px at 8% 110%, rgba(212,175,55,0.1), transparent 60%),
      var(--white);
    color:var(--charcoal);
    padding:172px 0 120px;
    overflow:hidden;
  }
  .hero .wrap{
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:60px;
    align-items:center;
  }
  .hero-eyebrow{
    display:inline-flex;align-items:center;gap:10px;
    border:1px solid rgba(169,133,46,0.4);
    background:rgba(212,175,55,0.08);
    padding:8px 16px;border-radius:999px;
    font-size:12px;font-weight:600;letter-spacing:0.16em;text-transform:uppercase;
    color:#a9852e;
    margin-bottom:26px;
  }
  .hero-eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--gold);}
  .hero h1{
    font-size:clamp(38px,5.4vw,64px);
    line-height:1.08;
    color:var(--navy);
    font-weight:600;
  }
  .hero h1 em{
    font-style:italic;
    color:#a9852e;
  }
  .hero p.sub{
    margin-top:26px;
    font-size:18px;
    color:var(--gray-text);
    max-width:520px;
    font-weight:300;
  }
  .hero-ctas{display:flex;gap:16px;margin-top:40px;flex-wrap:wrap;}
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:16px 30px;
    border-radius:999px;
    font-weight:600;
    font-size:14.5px;
    letter-spacing:0.02em;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space:nowrap;
  }
  .btn-gold{
    background:var(--gold);color:var(--navy);
  }
  .btn-gold:hover{background:var(--gold-soft);transform:translateY(-2px);}
  .btn-outline{
    border:1px solid rgba(36,28,21,0.22);
    color:var(--navy);
  }
  .btn-outline:hover{border-color:var(--navy);background:rgba(36,28,21,0.03);transform:translateY(-2px);}
  .btn-outline.dark{border:1px solid rgba(36,28,21,0.25);color:var(--navy);}
  .btn-outline.dark:hover{border-color:var(--navy);}

  .trust-row{
    display:flex;flex-wrap:wrap;gap:14px;margin-top:52px;
  }
  .trust-pill{
    display:flex;align-items:center;gap:9px;
    padding:10px 18px;
    border:1px solid rgba(36,28,21,0.14);
    border-radius:999px;
    font-size:13px;font-weight:500;
    color:var(--charcoal);
    background:#fff;
  }
  .trust-pill svg{width:15px;height:15px;flex-shrink:0;stroke:#a9852e;}

  /* hero visual */
  .hero-visual{position:relative;height:460px;}
  .hero-card{
    position:absolute;
    border-radius:20px;
    background:#fff;
    border:1px solid var(--gray);
    box-shadow:0 30px 60px -30px rgba(36,28,21,0.25);
  }
  .hero-card.c1{width:78%;height:78%;top:0;right:0;padding:28px;}
  .hero-card.c2{
    width:62%;height:38%;left:0;bottom:0;
    background:linear-gradient(135deg, var(--gold), #b9932c);
    border:none;padding:24px;color:var(--navy);
    display:flex;flex-direction:column;justify-content:space-between;
  }
  .hero-card.c1 .tag{font-size:11px;letter-spacing:0.18em;text-transform:uppercase;color:#a9852e;font-weight:600;}
  .hero-card.c1 .stat{font-family:'Cormorant Garamond',serif;font-size:56px;color:var(--navy);margin-top:14px;}
  .hero-card.c1 .stat-label{color:var(--gray-text);font-size:14px;margin-top:4px;}
  .hero-card.c1 .divider{height:1px;background:var(--gray);margin:24px 0;}
  .hero-card.c1 .mini-row{display:flex;justify-content:space-between;font-size:13px;color:var(--gray-text);margin-bottom:10px;}
  .hero-card.c1 .mini-row b{color:var(--navy);font-weight:600;}
  .hero-card.c2 .quote{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:20px;line-height:1.3;}
  .hero-card.c2 .who{font-size:12px;font-weight:600;letter-spacing:0.05em;}

  /* ---------- Problem section ---------- */
  .problem{
    background:var(--white);
    padding:120px 0;
  }
  .problem-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:70px;align-items:start;}
  .pain-list{display:flex;flex-direction:column;gap:2px;}
  .pain-item{
    display:flex;gap:20px;align-items:flex-start;
    padding:26px 4px;
    border-bottom:1px solid var(--gray);
  }
  .pain-item:first-child{border-top:1px solid var(--gray);}
  .pain-num{
    font-family:'Cormorant Garamond',serif;
    font-size:20px;color:var(--gold);font-style:italic;
    flex-shrink:0;width:28px;
  }
  .pain-item h4{font-size:18px;color:var(--navy);margin-bottom:4px;font-weight:600;}
  .pain-item p{color:var(--gray-text);font-size:15px;}

  /* ---------- Services ---------- */
  .services{background:var(--white);padding:120px 0;color:var(--charcoal);position:relative;}
  .services::before{
    content:"";position:absolute;inset:0;
    background:radial-gradient(ellipse 800px 400px at 50% 0%, rgba(212,175,55,0.06), transparent 60%);
    pointer-events:none;
  }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2px;
    background:var(--gray);
    border:1px solid var(--gray);
    border-radius:20px;
    overflow:hidden;
    position:relative;
  }
  .service-card{
    background:var(--white);
    padding:38px 28px;
    transition:background .3s ease;
    min-height:190px;
    display:flex;flex-direction:column;justify-content:space-between;
  }
  .service-card:hover{background:#ece1c4;}
  .service-card .icon{width:30px;height:30px;stroke:#a9852e;margin-bottom:20px;}
  .service-card h4{color:var(--navy);font-size:19px;font-weight:600;}
  .service-card p{font-size:13.5px;color:var(--gray-text);margin-top:8px;}

  /* ---------- Why choose ---------- */
  .why{background:var(--white);padding:120px 0;}
  .why-grid{display:grid;grid-template-columns:0.95fr 1.05fr;gap:70px;align-items:center;}
  .why-visual{
    background:linear-gradient(160deg, var(--navy), var(--navy-2));
    border-radius:24px;
    padding:48px;
    position:relative;
    overflow:hidden;
  }
  .why-visual::after{
    content:"";position:absolute;width:260px;height:260px;border-radius:50%;
    background:radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
    top:-80px;right:-80px;
  }
  .why-visual .big-quote{
    font-family:'Cormorant Garamond',serif;
    font-style:italic;
    font-size:28px;
    color:var(--white);
    line-height:1.4;
    position:relative;
    z-index:2;
  }
  .why-visual .big-quote .mark{color:var(--gold);font-size:48px;line-height:0;vertical-align:-14px;margin-right:4px;}
  .why-visual .signature{
    margin-top:36px;padding-top:24px;border-top:1px solid rgba(248,247,242,0.14);
    display:flex;align-items:center;gap:14px;position:relative;z-index:2;
  }
  .why-visual .signature .avatar{
    width:44px;height:44px;border-radius:50%;
    background:linear-gradient(135deg, var(--gold), #b9932c);
    display:flex;align-items:center;justify-content:center;
    font-family:'Cormorant Garamond',serif;color:var(--navy);font-weight:700;font-size:18px;
  }
  .why-visual .signature .name{color:var(--white);font-size:14px;font-weight:600;}
  .why-visual .signature .role{color:rgba(248,247,242,0.55);font-size:12.5px;}

  .why-list{display:flex;flex-direction:column;gap:0;}
  .why-item{
    display:flex;gap:18px;padding:20px 0;
    border-bottom:1px solid var(--gray);
  }
  .why-item:last-child{border-bottom:none;}
  .why-item .check{
    width:26px;height:26px;border-radius:50%;
    background:rgba(212,175,55,0.12);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;
  }
  .why-item .check svg{width:13px;height:13px;stroke:#a9852e;}
  .why-item p{font-size:16px;color:var(--charcoal);font-weight:500;}

  /* ---------- Process ---------- */
  .process{background:var(--white);padding:120px 0 130px;position:relative;}
  .process-track{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:32px;
  }
  .process-track::before{
    content:"";
    position:absolute;top:29px;left:6%;right:6%;height:1px;
    background:repeating-linear-gradient(90deg, var(--gray) 0 8px, transparent 8px 16px);
    z-index:0;
  }
  .process-step{position:relative;z-index:1;}
  .step-num{
    width:58px;height:58px;border-radius:50%;
    background:var(--navy);
    color:var(--gold);
    display:flex;align-items:center;justify-content:center;
    font-family:'Cormorant Garamond',serif;font-size:24px;font-style:italic;
    margin-bottom:26px;
    box-shadow:var(--shadow-sm);
  }
  .process-step h4{font-size:20px;margin-bottom:10px;}
  .process-step p{color:var(--gray-text);font-size:15px;}

  /* ---------- Industries ---------- */
  .industries{background:var(--white);padding:100px 0;color:var(--charcoal);}
  .industries-head{display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:24px;margin-bottom:56px;}
  .industries-head h2{color:var(--navy);}
  .industries-head p{color:var(--gray-text);max-width:400px;font-size:15px;}
  .industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--gray);
    border:1px solid var(--gray);
  }
  .industry-tile{
    background:var(--white);
    color:var(--navy);
    padding:34px 26px;
    font-size:16px;font-weight:500;
    display:flex;align-items:center;justify-content:space-between;
    transition:background .3s;
  }
  .industry-tile:hover{background:#ece1c4;}
  .industry-tile svg{width:16px;height:16px;stroke:#a9852e;opacity:0;transform:translateX(-4px);transition:.25s;}
  .industry-tile:hover svg{opacity:1;transform:translateX(0);}

  /* ---------- Pricing ---------- */
  .pricing{background:var(--white);padding:120px 0;}
  .price-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
  .price-card{
    border:1px solid var(--gray);
    border-radius:var(--radius);
    padding:36px 26px;
    background:var(--white);
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position:relative;
  }
  .price-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:transparent;}
  .price-card.featured{
    background:linear-gradient(160deg, var(--navy), var(--navy-2));
    color:var(--white);
    border:none;
  }
  .price-card .badge{
    position:absolute;top:-13px;right:26px;
    background:var(--gold);color:var(--navy);
    font-size:10.5px;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
    padding:6px 13px;border-radius:999px;
    white-space:nowrap;
  }
  .price-card .plan-name{font-size:13px;font-weight:600;letter-spacing:0.03em;text-transform:uppercase;color:var(--gray-text);margin-bottom:18px;min-height:34px;}
  .price-card.featured .plan-name{color:var(--gold-soft);}
  .price-card .price{display:flex;align-items:baseline;gap:8px;margin-bottom:6px;}
  .price-card .price .amt{font-family:'Cormorant Garamond',serif;font-size:40px;color:var(--navy);}
  .price-card.featured .price .amt{color:var(--white);}
  .price-card .price .per{font-size:13.5px;color:var(--gray-text);}
  .price-card.featured .price .per{color:rgba(248,247,242,0.55);}
  .price-card .starting{font-size:12px;color:var(--gray-text);letter-spacing:0.03em;text-transform:uppercase;margin-bottom:26px;}
  .price-card.featured .starting{color:rgba(248,247,242,0.45);}
  .price-card .includes{font-size:13.5px;color:var(--gray-text);line-height:1.55;padding-top:20px;border-top:1px solid var(--gray);margin-bottom:26px;min-height:84px;}
  .price-card.featured .includes{color:rgba(248,247,242,0.65);border-top:1px solid rgba(248,247,242,0.14);}
  .price-card .btn{width:100%;justify-content:center;padding:14px 20px;font-size:13.5px;}

  /* ---------- CTA ---------- */
  .cta-section{
    background:
      radial-gradient(ellipse 700px 400px at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
      #EBE0C3;
    color:var(--charcoal);
    padding:130px 0;
    text-align:center;
    border-top:1px solid var(--gray);
    border-bottom:1px solid var(--gray);
  }
  .cta-section h2{color:var(--navy);font-size:clamp(32px,4.6vw,50px);max-width:700px;margin:0 auto;}
  .cta-section p{max-width:520px;margin:22px auto 42px;color:var(--gray-text);font-size:17px;}

  /* ---------- Contact ---------- */
  .contact{background:var(--white);padding:120px 0;}
  .contact-grid{display:grid;grid-template-columns:0.85fr 1.15fr;gap:70px;}
  .contact-info h2{font-size:clamp(30px,4vw,42px);margin-bottom:18px;}
  .contact-info p{color:var(--gray-text);font-size:16px;margin-bottom:36px;max-width:400px;}
  .contact-point{display:flex;gap:16px;align-items:flex-start;margin-bottom:26px;}
  .contact-point .ic{
    width:42px;height:42px;border-radius:50%;
    background:rgba(212,175,55,0.1);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .contact-point .ic svg{width:18px;height:18px;stroke:#a9852e;}
  .contact-point .label{font-size:12px;text-transform:uppercase;letter-spacing:0.08em;color:var(--gray-text);font-weight:600;}
  .contact-point .val{font-size:15.5px;color:var(--navy);font-weight:500;margin-top:2px;}

  .contact-form{
    background:var(--white);
    border:1px solid var(--gray);
    border-radius:var(--radius);
    padding:44px;
    box-shadow:var(--shadow-sm);
  }
  .form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px;}
  .field{display:flex;flex-direction:column;gap:8px;margin-bottom:20px;}
  .field label{font-size:12.5px;font-weight:600;letter-spacing:0.03em;color:var(--charcoal);text-transform:uppercase;}
  .field input, .field select, .field textarea{
    border:1px solid var(--gray);
    border-radius:10px;
    padding:14px 16px;
    font-family:'Inter',sans-serif;
    font-size:14.5px;
    color:var(--charcoal);
    background:var(--white);
    transition:border-color .25s;
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    border-color:var(--gold);
  }
  .field textarea{resize:vertical;min-height:100px;}
  .contact-form .btn{width:100%;justify-content:center;margin-top:6px;}
  .form-note{font-size:12.5px;color:var(--gray-text);text-align:center;margin-top:16px;}

  /* ---------- Footer ---------- */
  footer{background:#EBE0C3;color:var(--gray-text);padding:70px 0 30px;border-top:1px solid var(--gray);}
  .footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:50px;padding-bottom:50px;border-bottom:1px solid rgba(36,28,21,0.12);}
  .footer-brand .logo{margin-bottom:14px;}
  .footer-brand p{font-size:14.5px;color:var(--gray-text);max-width:280px;margin-bottom:6px;}
  .footer-brand .tag{font-family:'Cormorant Garamond',serif;font-style:italic;color:#a9852e;font-size:17px;margin-bottom:14px;}
  .footer-col h5{font-size:12.5px;text-transform:uppercase;letter-spacing:0.1em;color:var(--navy);font-weight:600;margin-bottom:18px;}
  .footer-col a{display:block;font-size:14.5px;color:var(--gray-text);margin-bottom:12px;transition:color .2s;}
  .footer-col a:hover{color:#a9852e;}
  .footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:26px;font-size:13px;color:var(--gray-text);flex-wrap:wrap;gap:12px;}
  .footer-bottom .services-line{color:var(--gray-text);}

  /* ---------- reveal on scroll ---------- */
  .reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1;transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1;transform:none;transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ---------- Responsive ---------- */
  @media (max-width:1024px){
    .hero .wrap{grid-template-columns:1fr;}
    .hero-visual{height:360px;margin-top:20px;}
    .problem-grid, .why-grid, .contact-grid{grid-template-columns:1fr;gap:48px;}
    .service-grid{grid-template-columns:repeat(2,1fr);}
    .process-track{grid-template-columns:repeat(2,1fr);row-gap:48px;}
    .process-track::before{display:none;}
    .industry-grid{grid-template-columns:repeat(2,1fr);}
    .price-grid{grid-template-columns:repeat(2,1fr);max-width:640px;margin:0 auto;}
    .footer-top{grid-template-columns:1fr 1fr;row-gap:36px;}
  }
  @media (max-width:1180px){
    .nav-links{
      position:fixed;top:0;right:0;height:100vh;width:78%;max-width:320px;
      background:var(--white);
      flex-direction:column;
      align-items:flex-start;
      padding:100px 32px 40px;
      gap:26px;
      transform:translateX(100%);
      transition:transform .35s ease;
      box-shadow:-20px 0 50px rgba(36,28,21,0.18);
      border-left:1px solid var(--gray);
    }
    .nav-links.open{transform:translateX(0);}
    .nav-links a{font-size:16px;white-space:normal;}
    .nav-cta{margin-top:10px;align-self:flex-start;}
    .menu-btn{display:flex;}
    .menu-btn.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
    .menu-btn.open span:nth-child(2){opacity:0;}
    .menu-btn.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}
    .logo{font-size:22px;}
    .logo .logo-mark{height:24px;}
  }
  @media (max-width:720px){
    .hero{padding:140px 0 80px;}
    .hero-ctas{flex-direction:column;}
    .hero-ctas .btn{width:100%;justify-content:center;}
    .trust-row{gap:10px;}
    .service-grid{grid-template-columns:1fr;}
    .industry-grid{grid-template-columns:1fr;}
    .form-row{grid-template-columns:1fr;gap:0;}
    .footer-top{grid-template-columns:1fr;}
    .footer-bottom{flex-direction:column;align-items:flex-start;}
    .industries-head{flex-direction:column;align-items:flex-start;}
    .price-grid{grid-template-columns:1fr;max-width:400px;}
  }

/* ===== Mobile usability pass ===== */
html,body{max-width:100%;overflow-x:hidden;}
button,input,select,textarea{font:inherit;}
@media (max-width:720px){
  .wrap{padding-left:18px;padding-right:18px;}
  header{height:72px;}
  nav{height:72px;}
  .logo{max-width:calc(100vw - 78px);font-size:19px;gap:7px;}
  .logo .logo-mark{height:22px;flex:0 0 auto;}
  .nav-links{width:min(88vw,340px);padding:88px 24px 30px;overflow-y:auto;}
  .nav-links a{display:block;width:100%;padding:6px 0;}
  .menu-btn{width:44px;height:44px;align-items:center;justify-content:center;flex-direction:column;gap:5px;}
  .hero{padding:112px 0 58px;}
  .hero h1{font-size:clamp(38px,12vw,52px);line-height:1.02;}
  .hero-text .sub{font-size:16px;line-height:1.65;}
  .hero-visual{height:auto;min-height:390px;margin-top:10px;}
  .hero-card.c1{width:92%;height:auto;min-height:285px;padding:22px;}
  .hero-card.c2{width:78%;height:auto;min-height:150px;padding:20px;}
  section{padding-top:68px;padding-bottom:68px;}
  .section-head h2,.section-head{overflow-wrap:anywhere;}
  .problem-grid,.why-grid,.contact-grid{gap:34px;}
  .service-card,.price-card,.contact-form{padding:24px 20px;}
  .process-track{grid-template-columns:1fr;row-gap:28px;}
  .trust-row{align-items:stretch;}
  .trust-pill{flex:1 1 145px;justify-content:center;text-align:center;}
  .cta-section{padding:70px 0;}
  .cta-section p{font-size:16px;margin:18px auto 30px;}
  footer{padding:52px 0 24px;}
}
@media (max-width:420px){
  .wrap{padding-left:15px;padding-right:15px;}
  .logo{font-size:17px;letter-spacing:.02em;}
  .hero h1{font-size:38px;}
  .hero-eyebrow{font-size:10px;letter-spacing:.12em;}
  .hero-visual{min-height:365px;}
  .hero-card.c1{width:96%;right:0;}
  .hero-card.c2{width:86%;}
  .btn{min-height:46px;padding-left:18px;padding-right:18px;white-space:normal;text-align:center;}
  .trust-pill{flex-basis:100%;}
}
