:root{
    --ink:#F3F1ED;
    --ink-soft:#A6A4A8;
    --parchment:#0B0A0D;
    --parchment-dim:#141317;
    --copper:#C9A227;
    --copper-soft:#E0C466;
    --gold:#C9A227;
    --sage:#232019;
    --on-gold:#14130F;
    --line: rgba(255,255,255,0.14);
    --line-dark: rgba(255,255,255,0.22);
    --shadow: 0 20px 50px rgba(0,0,0,0.55);
    --radius: 4px;
    --dots: none;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; scroll-padding-top:96px;}
  body{
    background-color:var(--parchment);
    background-image: var(--dots);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    line-height:1.6;
    overflow-x:hidden;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }
  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
    color:var(--ink);
    line-height:1.08;
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .mono{font-family:'JetBrains Mono', monospace;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  .eyebrow{
    font-family:'JetBrains Mono', monospace;
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--copper);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
  }
  .eyebrow::before{content:""; width:22px; height:1px; background:var(--copper);}
  button, .btn{
    cursor:pointer;
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:15px;
    border:none;
    border-radius:999px;
    padding:14px 28px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  }
  .btn-primary{
    background:var(--copper);
    color:var(--on-gold);
  }
  .btn-primary:hover{ background:var(--copper-soft); transform:translateY(-2px); box-shadow:0 12px 24px rgba(201,162,39,0.28);}
  .btn-ghost{
    background:transparent;
    color:var(--copper);
    border:1px solid var(--copper);
  }
  .btn-ghost:hover{ background:var(--copper); color:var(--on-gold); }
  .btn-ghost-dark{
    background:transparent;
    color:var(--copper);
    border:1px solid var(--copper);
  }
  .btn-ghost-dark:hover{ background:var(--copper); color:var(--on-gold); }

  /* ---------- Header ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(11,10,13,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    gap:20px;
    padding:20px 32px;
    max-width:1180px; margin:0 auto;
    flex-wrap:nowrap;
    position:relative;
  }
  .logo{
    flex-shrink:0;
    display:flex;
    align-items:center;
    transition:transform .25s ease;
  }
  .logo:hover{ transform:scale(1.03); }
  .logo img{ height:54px; width:auto; display:block; }
  .nav-links ul{ list-style:none; display:flex; gap:34px; flex-wrap:nowrap; }
  .nav-links ul li{ flex-shrink:0; }
  .nav-links ul li a{
    font-size:14.5px; font-weight:500; color:var(--ink-soft);
    position:relative; padding:4px 0;
    white-space:nowrap;
  }
  .nav-links ul li a::after{
    content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
    background:var(--copper); transition:width .25s ease;
  }
  .nav-links ul li a:hover::after{ width:100%; }
  .nav-links{display:flex; align-items:center; gap:36px; flex-wrap:nowrap; min-width:0;}
  .nav-cta{ flex-shrink:0; }
  .menu-toggle{
    display:none; background:none; border:1px solid var(--line); border-radius:4px;
    width:42px; height:38px; padding:0; flex-shrink:0;
    align-items:center; justify-content:center; cursor:pointer;
  }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after{
    content:""; display:block; width:18px; height:1.5px; background:var(--ink);
    position:relative; transition:transform .25s ease, opacity .25s ease;
  }
  .menu-toggle::before{ position:absolute; transform:translateY(-6px); }
  .menu-toggle::after{ position:absolute; transform:translateY(6px); }
  .menu-toggle.open span{ opacity:0; }
  .menu-toggle.open::before{ transform:rotate(45deg); }
  .menu-toggle.open::after{ transform:rotate(-45deg); }

  .mobile-menu{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--parchment-dim);
    border-bottom:1px solid var(--line);
    box-shadow:0 16px 30px rgba(0,0,0,0.4);
    padding:10px 32px 26px;
  }
  .mobile-menu.open{ display:block; }
  .mobile-menu ul{ list-style:none; }
  .mobile-menu ul li a{
    display:block; padding:14px 0; font-size:16px; font-weight:500;
    border-bottom:1px solid var(--line); color:var(--ink-soft);
  }
  .mobile-menu .btn{ margin-top:18px; width:100%; justify-content:center; }

  /* ---------- Hero ---------- */
  .hero{
    padding:96px 0 80px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute; top:-180px; right:-180px;
    width:520px; height:520px; border-radius:50%;
    background:radial-gradient(circle, rgba(201,161,90,0.22), transparent 70%);
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:60px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(38px, 5vw, 60px);
    margin-bottom:22px;
  }
  .hero h1 em{ font-style:italic; color:var(--copper); }
  .hero p.lead{
    font-size:18px;
    color:var(--ink-soft);
    max-width:480px;
    margin-bottom:34px;
  }
  .hero-ctas{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; margin-bottom:38px;}
  .hero-note{ font-size:13.5px; color:var(--ink-soft); }

  /* Signature element: handoff strip */
  .handoff{
    background:var(--parchment-dim);
    color:var(--ink);
    border:1px solid var(--copper);
    border-radius:22px;
    padding:30px 28px 26px;
    box-shadow:var(--shadow);
    position:relative;
  }
  .handoff-label{
    font-family:'JetBrains Mono', monospace;
    font-size:11.5px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:20px;
    display:block;
  }
  .handoff-row{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:14px;
    padding:13px 0;
    border-bottom:1px solid var(--line-dark);
    opacity:0;
    animation:fadeUp .6s ease forwards;
  }
  .handoff-row:last-child{ border-bottom:none; }
  .handoff-row:nth-child(2){ animation-delay:.15s; }
  .handoff-row:nth-child(3){ animation-delay:.5s; }
  .handoff-row:nth-child(4){ animation-delay:.85s; }
  .handoff-row:nth-child(5){ animation-delay:1.2s; }
  @keyframes fadeUp{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }
  .task-in{ font-size:14px; color:rgba(248,244,236,0.75); }
  .task-arrow{ color:var(--gold); font-size:15px; }
  .task-out{ font-size:14px; font-weight:600; text-align:right; display:flex; align-items:center; justify-content:flex-end; gap:8px;}
  .check{
    width:16px; height:16px; border-radius:50%;
    background:var(--sage);
    display:inline-flex; align-items:center; justify-content:center;
    font-size:10px; flex-shrink:0;
  }
  .handoff-counter{
    margin-top:22px; padding-top:20px; border-top:1px solid var(--line-dark);
    display:flex; align-items:baseline; justify-content:space-between;
  }
  .handoff-counter .num{
    font-family:'Fraunces', serif; font-size:34px; color:var(--gold); font-weight:600;
  }
  .handoff-counter .cap{ font-size:12px; color:rgba(248,244,236,0.6); max-width:160px; text-align:right;}

  /* Signature element: executive standards card */
  .standards-wrap{ position:relative; padding:44px 26px 50px; }
  .standards-card{
    background:linear-gradient(135deg, rgba(32,28,22,0.97), rgba(8,7,6,0.97));
    border:1px solid var(--copper);
    border-radius:22px;
    padding:34px 32px 30px;
    box-shadow:var(--shadow);
    position:relative;
  }
  .standards-card h3{
    font-family:'Fraunces', serif;
    font-size:25px;
    font-weight:600;
    color:#fff;
    margin-bottom:24px;
  }
  .standards-list{ display:flex; flex-direction:column; gap:17px; }
  .standards-item{ display:flex; align-items:center; gap:12px; font-size:15px; font-weight:500; color:rgba(248,244,236,0.88); }
  .standards-check{ color:var(--gold); font-size:15px; flex-shrink:0; }
  .standards-badge{
    position:absolute;
    background:var(--parchment-dim);
    border:1px solid var(--line-dark);
    border-radius:999px;
    padding:11px 20px;
    display:flex; align-items:center; gap:10px;
    font-size:13.5px; font-weight:600; color:var(--ink);
    box-shadow:0 16px 34px rgba(0,0,0,0.55);
    white-space:nowrap;
  }
  .standards-badge-onboarding{ top:0; left:0; transform:rotate(-3deg); }
  .standards-badge-onboarding .dot{
    width:9px; height:9px; border-radius:50%; background:#2ecc71;
    box-shadow:0 0 8px rgba(46,204,113,0.75); display:inline-block; flex-shrink:0;
  }
  .standards-badge-nda{ bottom:0; right:8%; transform:rotate(2deg); }
  .standards-badge-nda .lock{ color:var(--gold); font-size:14px; }
  @media (max-width:900px){
    .standards-badge{ display:none; }
    .standards-wrap{ padding:0; }
  }

  /* ---------- Trust bar ---------- */
  .trust{
    padding:34px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .trust .wrap{ display:flex; align-items:center; gap:48px; flex-wrap:wrap; justify-content:space-between; }
  .trust-label{ font-size:13px; color:var(--ink-soft); white-space:nowrap; }
  .trust-stats{ display:flex; gap:52px; flex-wrap:wrap; }
  .trust-stat b{ font-family:'Fraunces', serif; font-size:26px; display:block; color:var(--copper); }
  .trust-stat span{ font-size:12.5px; color:var(--ink-soft); }

  /* ---------- Section basics ---------- */
  section{ padding:100px 0; }
  .section-head{ max-width:640px; margin-bottom:56px; }
  .section-head h2{ font-size:clamp(28px, 3.4vw, 40px); }
  .section-head p{ color:var(--ink-soft); margin-top:14px; font-size:16.5px; }
  .alt{ background-color:var(--parchment-dim); background-image:none; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .dark{ background:var(--parchment); color:var(--ink); background-image:none; }
  .dark h2, .dark h3, .dark h4{ color:var(--ink); }
  .dark .eyebrow{ color:var(--gold); }
  .dark .eyebrow::before{ background:var(--gold); }

  /* ---------- Services ---------- */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
  }
  .service-card{
    background:var(--parchment-dim);
    padding:34px 30px;
    border:1.5px solid var(--line);
    border-radius:20px;
    transition:background .25s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .service-card:hover{ background:var(--parchment-dim); }
  .service-card-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
  .service-icon{
    width:48px; height:48px; flex-shrink:0;
    border-radius:13px;
    background:var(--sage);
    color:var(--gold);
    display:flex; align-items:center; justify-content:center;
  }
  .service-icon svg{ width:24px; height:24px; }
  .service-card:hover .service-icon{ background:var(--copper); color:var(--parchment); transition:background .25s ease, color .25s ease; }
  .service-num{ font-family:'JetBrains Mono', monospace; font-size:12px; color:var(--copper); margin-bottom:0; display:block; }
  .service-card h4{ font-size:19px; margin-bottom:10px; }
  .service-card p{ font-size:14.5px; color:var(--ink-soft); }
  .svc-learn-more{ display:inline-block; margin-top:16px; font-size:13.5px; font-weight:600; color:var(--copper); }
  .svc-learn-more:hover{ text-decoration:underline; }

  /* ---------- Process ---------- */
  .process{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
  }
  .process-step{
    position:relative;
    padding:28px 24px 26px;
    border:1.5px solid var(--line);
    border-radius:20px;
    background:var(--parchment-dim);
    outline:none;
  }
  .process-step .step-num{
    font-family:'Fraunces', serif;
    font-size:17px;
    font-weight:700;
    color:var(--ink);
    background:var(--sage);
    margin-bottom:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    border-radius:10px;
  }
  .process-step h4{ font-size:18px; margin-bottom:0; transition:margin-bottom .35s ease; }
  .process-step p{
    font-size:14px; color:var(--ink-soft);
    max-height:0; opacity:0; overflow:hidden;
    margin-top:0;
    transition:max-height .4s ease, opacity .3s ease .05s, margin-top .4s ease;
  }
  .process-step:hover h4,
  .process-step:focus-within h4{ margin-bottom:10px; }
  .process-step:hover p,
  .process-step:focus-within p{
    max-height:160px; opacity:1; margin-top:0;
  }

  /* ---------- Pricing ---------- */
  .pricing-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
  }
  .price-card{
    background:var(--parchment-dim);
    border:1.5px solid var(--line);
    border-radius:20px;
    padding:30px 24px;
    display:flex; flex-direction:column;
  }
  .price-card.feature{
    background:var(--copper);
    color:var(--on-gold);
    border-color:var(--copper);
    transform:translateY(-14px);
    box-shadow:var(--shadow);
  }
  .price-card.feature h3, .price-card.feature .plan-tag{ color:var(--on-gold); }
  .plan-tag{ font-family:'JetBrains Mono', monospace; font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--copper); margin-bottom:14px; }
  .price-card.feature .plan-tag{ color:var(--on-gold); opacity:0.75; }
  .price-card h3{ font-size:21px; margin-bottom:6px; }
  .price-amt{ display:flex; align-items:baseline; gap:6px; margin:14px 0 6px; }
  .price-amt .num{ font-family:'Fraunces', serif; font-size:34px; font-weight:600; }
  .price-amt .num.text{ font-size:23px; }
  .price-amt .per{ font-size:13px; color:inherit; opacity:0.65; }
  .price-desc{ font-size:13px; opacity:0.75; margin-bottom:22px; }
  .price-list{ list-style:none; margin-bottom:28px; flex-grow:1; }
  .price-list li{ font-size:13px; padding:9px 0; border-top:1px solid rgba(255,255,255,0.1); display:flex; gap:10px; }
  .price-card.feature .price-list li{ border-top:1px solid rgba(20,19,15,0.18); }
  .price-list li:first-child{ border-top:none; }
  .price-list li::before{ content:"—"; color:var(--copper); flex-shrink:0; }
  .price-card.feature .price-list li::before{ color:var(--on-gold); opacity:0.6; }
  .price-card.feature .btn-primary{ background:var(--on-gold); color:var(--copper); }
  .price-card.feature .btn-primary:hover{ background:#000; }

  /* ---------- Comparison ---------- */
  table.compare{ width:100%; border-collapse:collapse; }
  table.compare th, table.compare td{
    padding:18px 20px; text-align:left; font-size:14.5px;
    border-bottom:1px solid var(--line-dark);
  }
  table.compare thead th{
    font-family:'JetBrains Mono', monospace; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase;
    color:rgba(248,244,236,0.55); font-weight:500; border-bottom:1px solid var(--line-dark);
  }
  table.compare td.yes{ color:var(--gold); font-weight:600; }
  table.compare td.no{ color:rgba(248,244,236,0.45); }
  table.compare th.col-avvrs{ color:var(--gold); }

  /* ---------- Testimonials carousel ---------- */
  .testi-carousel{ position:relative; overflow:hidden; padding:4px 4px 8px; }
  .testi-track{ display:flex; gap:28px; transition:transform .6s cubic-bezier(.4,0,.2,1); will-change:transform; }
  .testi-card{
    background:var(--parchment-dim);
    border:1.5px solid var(--line);
    border-radius:20px;
    padding:30px 28px;
    flex:0 0 calc((100% - 2*28px)/3);
    transition:transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }
  .testi-card:hover{ transform:translateY(-6px); box-shadow:0 18px 34px rgba(0,0,0,0.4); }
  .testi-card .quote-mark{ font-family:'Fraunces', serif; font-size:44px; color:var(--copper-soft); line-height:1; margin-bottom:6px; display:block;}
  .testi-card p.quote{ font-size:15px; color:var(--ink-soft); margin-bottom:22px; }
  .testi-person b{ display:block; font-size:14.5px; }
  .testi-person span{ font-size:13px; color:var(--ink-soft); }

  .testi-arrow{
    position:absolute; top:50%; transform:translateY(-50%);
    width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
    background:var(--parchment-dim); color:var(--ink); cursor:pointer; font-size:16px;
    display:flex; align-items:center; justify-content:center; z-index:5;
    transition:background .2s ease, opacity .2s ease;
    opacity:0;
  }
  .testi-carousel:hover .testi-arrow{ opacity:1; }
  .testi-arrow:hover{ background:var(--ink); color:var(--parchment); }
  .testi-arrow.prev{ left:-4px; }
  .testi-arrow.next{ right:-4px; }

  .testi-dots{ display:flex; gap:8px; justify-content:center; margin-top:22px; }
  .testi-dots button{
    width:8px; height:8px; border-radius:50%; background:var(--line); border:none; cursor:pointer; padding:0;
    transition:background .25s ease, transform .25s ease;
  }
  .testi-dots button.active{ background:var(--copper); transform:scale(1.3); }

  @media (max-width: 900px){
    .testi-card{ flex:0 0 calc((100% - 28px)/2); }
  }
  @media (max-width: 600px){
    .testi-card{ flex:0 0 100%; }
    .testi-arrow{ display:none; }
  }

  /* ---------- FAQ ---------- */
  .faq-item{ border-bottom:1px solid var(--line); }
  .faq-q{
    width:100%; background:none; border:none; text-align:left;
    display:flex; justify-content:space-between; align-items:center;
    padding:24px 0; font-family:'Fraunces', serif; font-size:18px; color:var(--ink);
  }
  .faq-q .plus{ font-family:'JetBrains Mono', monospace; font-size:20px; color:var(--copper); transition:transform .25s ease; }
  .faq-item.open .faq-q .plus{ transform:rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
  .faq-a p{ padding-bottom:24px; color:var(--ink-soft); font-size:15px; max-width:680px; }

  /* ---------- CTA band ---------- */
  .cta-band{
    text-align:center;
    padding:100px 0;
  }
  .cta-band h2{ font-size:clamp(30px,4vw,44px); max-width:640px; margin:0 auto 18px; }
  .cta-band p{ color:rgba(248,244,236,0.7); max-width:500px; margin:0 auto 36px; }
  .cta-band .ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

  /* ---------- Footer ---------- */
  footer{ background:var(--parchment); color:var(--ink); padding:70px 0 110px; border-top:1px solid var(--copper); }
  .footer-grid{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
    padding-bottom:50px; border-bottom:1px solid var(--line-dark);
  }
  .footer-grid h5{ font-family:'JetBrains Mono', monospace; font-size:16px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
  .footer-grid ul{ list-style:none; }
  .footer-grid ul li{ margin-bottom:10px; }
  .footer-grid ul li a{ font-size:14px; color:rgba(248,244,236,0.72); }
  .footer-grid ul li a:hover{ color:var(--ink); }
  .footer-logo{ margin-bottom:14px; }
  .footer-logo img{ height:64px; width:auto; display:block; }
  .footer-about{ font-size:14px; color:rgba(248,244,236,0.62); max-width:280px; margin-bottom:20px; }
  .footer-bottom{ padding-top:26px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
  .footer-bottom p{ font-size:13px; color:rgba(248,244,236,0.5); }
  .footer-bottom .flinks{ display:flex; gap:22px; }
  .footer-bottom .flinks a{ font-size:13px; color:rgba(248,244,236,0.5); }
  .footer-bottom .flinks a:hover{ color:var(--ink); }

  /* ---------- Scroll reveal ---------- */
  .reveal{
    opacity:0;
    transform:translateY(26px);
    transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
    will-change:opacity, transform;
  }
  .reveal.in-view{ opacity:1; transform:none; }

  /* ---------- Hero load-in ---------- */
  .hero-anim{
    opacity:0;
    transform:translateY(18px);
    animation:heroIn .8s cubic-bezier(.2,.7,.2,1) forwards;
  }
  @keyframes heroIn{ to{ opacity:1; transform:none; } }

  /* ---------- Ambient blob ---------- */
  .hero::before{
    animation:blobPulse 9s ease-in-out infinite;
  }
  @keyframes blobPulse{
    0%, 100%{ transform:translate(0,0) scale(1); opacity:1; }
    50%{ transform:translate(-24px, 20px) scale(1.08); opacity:0.85; }
  }

  /* ---------- Hover lift for cards ---------- */
  .service-card, .price-card{
    transition:background .25s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  }
  .price-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 34px rgba(0,0,0,0.4);
  }
  .price-card.feature:hover{ transform:translateY(-20px); }
  .service-card:hover{ transform:translateY(-4px); }

  .process-step{
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    transform-origin:center;
    will-change:transform;
  }
  .process-step:hover,
  .process-step:focus-visible{
    transform:scale(1.08);
    z-index:2;
    border-color:var(--copper);
    box-shadow:0 20px 40px rgba(0,0,0,0.35);
  }
  .process-step:hover .step-num{ transform:translateX(3px); }
  .step-num{ display:inline-block; transition:transform .3s ease; }

  .trust-stat{ transition:transform .3s ease; }
  .trust-stat:hover{ transform:translateY(-3px); }

  nav ul li a, .nav-links ul li a{ transition:color .2s ease; }

  /* ---------- Contact button + modal ---------- */
  .contact-row{ display:flex; justify-content:flex-end; margin-top:32px; }
  .contact-overlay{
    display:none; position:fixed; inset:0; z-index:200; background:rgba(0,0,0,0.75);
    align-items:center; justify-content:center; padding:24px;
  }
  .contact-overlay.open{ display:flex; animation:fadeIn .25s ease forwards; }
  @keyframes fadeIn{ from{ opacity:0; } to{ opacity:1; } }
  .contact-modal{
    background:var(--parchment-dim); border-radius:24px; max-width:440px; width:100%;
    padding:34px 32px; position:relative; box-shadow:0 30px 80px rgba(0,0,0,0.45);
    animation:heroPop .3s cubic-bezier(.2,.7,.2,1) forwards;
  }
  @keyframes heroPop{ from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:none; } }
  .contact-close{
    position:absolute; top:18px; right:18px; background:none; border:none; cursor:pointer;
    color:var(--ink-soft); display:flex; align-items:center; justify-content:center; padding:4px; font-size:20px;
  }
  .contact-modal h3{ font-size:23px; margin-bottom:8px; }
  .contact-modal p.sub{ font-size:14px; color:var(--ink-soft); margin-bottom:24px; }
  .contact-field{ margin-bottom:16px; }
  .contact-field label{ display:block; font-size:11px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--copper); margin-bottom:8px; }
  .contact-field input, .contact-field textarea{
    width:100%; border:1.5px solid var(--line); border-radius:18px; padding:12px 18px; font-family:'Inter', sans-serif;
    font-size:14.5px; background:var(--parchment); color:var(--ink); resize:vertical;
  }
  .contact-field input:focus, .contact-field textarea:focus{ outline:none; border-color:var(--copper); }
  .contact-success{ text-align:center; padding:20px 0 6px; display:none; }
  .contact-success.show{ display:block; }
  .contact-success .check-badge{
    width:40px; height:40px; margin:0 auto 16px; border-radius:50%; background:var(--sage);
    display:flex; align-items:center; justify-content:center; color:var(--ink); font-size:18px;
  }

  /* ---------- Chatbot ---------- */
  .chatbot-launcher{
    position:fixed; bottom:24px; right:24px; z-index:150;
    width:72px; height:72px; border-radius:50%;
    background:radial-gradient(circle at 32% 26%, #F5DFA0 0%, var(--copper-soft) 32%, var(--copper) 72%, #9C7A1E 100%);
    color:var(--on-gold);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,0.35), 0 16px 38px rgba(201,162,39,0.5),
               inset 0 1px 1px rgba(255,255,255,0.4), inset 0 -8px 14px rgba(0,0,0,0.18);
    transition:transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
    border:none; overflow:visible;
  }
  .chatbot-launcher::before{
    content:""; position:absolute; inset:-6px; border-radius:50%;
    border:1.5px solid rgba(201,162,39,0.45);
    animation:launcherPulse 2.6s ease-out infinite;
  }
  .chatbot-launcher::after{
    content:""; position:absolute; top:8%; left:16%; width:44%; height:26%; border-radius:50%;
    background:linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0));
    filter:blur(1px); pointer-events:none;
  }
  .chatbot-launcher:hover{ transform:scale(1.08) rotate(-4deg); box-shadow:0 4px 10px rgba(0,0,0,0.4), 0 18px 42px rgba(201,162,39,0.6), inset 0 1px 1px rgba(255,255,255,0.4), inset 0 -8px 14px rgba(0,0,0,0.18); }
  .chatbot-launcher svg{ width:38px; height:38px; position:relative; z-index:1; filter:drop-shadow(0 1px 1px rgba(0,0,0,0.25)); }
  .chatbot-launcher .launcher-spark{
    position:absolute; top:-4px; right:-4px; width:22px; height:22px; border-radius:50%;
    background:linear-gradient(135deg, var(--sage), #14130F); border:2.5px solid var(--parchment);
    display:flex; align-items:center; justify-content:center; box-shadow:0 2px 6px rgba(0,0,0,0.4);
  }
  .chatbot-launcher .launcher-spark svg{ width:11px; height:11px; }
  @keyframes launcherPulse{
    0%{ transform:scale(1); opacity:.7; }
    100%{ transform:scale(1.35); opacity:0; }
  }
  /* Mascot bot icon: gentle idle bob + periodic blink, used in the
     launcher button and the chat panel header avatar. */
  .mascot-icon{ animation:mascotBob 3.2s ease-in-out infinite; }
  .mascot-eye{ transform-box:fill-box; transform-origin:center; animation:mascotBlink 4.6s ease-in-out infinite; }
  @keyframes mascotBob{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-1.5px); }
  }
  @keyframes mascotBlink{
    0%, 90%, 100%{ transform:scaleY(1); }
    94%{ transform:scaleY(0.15); }
  }

  .chatbot-panel{
    position:fixed; bottom:100px; right:24px; z-index:150;
    width:360px; max-width:calc(100vw - 32px); height:500px; max-height:calc(100vh - 140px);
    background:var(--parchment-dim); border-radius:24px;
    box-shadow:0 30px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,162,39,0.08);
    display:none; flex-direction:column; overflow:hidden; border:1px solid var(--line);
  }
  .chatbot-panel.open{ display:flex; animation:panelRise .35s cubic-bezier(.2,.8,.25,1) forwards; }
  @keyframes panelRise{
    0%{ opacity:0; transform:translateY(16px) scale(.96); }
    100%{ opacity:1; transform:translateY(0) scale(1); }
  }

  .chatbot-header{
    background:linear-gradient(120deg, var(--copper-soft) 0%, var(--copper) 100%);
    color:var(--on-gold); padding:16px 18px;
    display:flex; align-items:center; justify-content:space-between; flex-shrink:0;
    position:relative; overflow:hidden;
  }
  .chatbot-header-info{ display:flex; align-items:center; gap:11px; position:relative; z-index:1; }
  .chatbot-avatar{
    width:38px; height:38px; border-radius:50%; background:var(--on-gold); flex-shrink:0;
    display:flex; align-items:center; justify-content:center; box-shadow:0 3px 10px rgba(0,0,0,0.25);
  }
  .chatbot-avatar svg{ width:19px; height:19px; }
  .chatbot-header-text{ display:flex; flex-direction:column; gap:2px; }
  .chatbot-header-text .title-row{ display:flex; align-items:center; gap:7px; }
  .chatbot-header strong{ font-family:'Fraunces', serif; font-size:15.5px; }
  .ai-badge{
    font-family:'JetBrains Mono', monospace; font-size:9.5px; font-weight:600; letter-spacing:.06em;
    background:var(--on-gold); color:var(--copper-soft); padding:2px 6px; border-radius:6px;
  }
  .chatbot-status{ display:flex; align-items:center; gap:5px; font-size:11px; color:rgba(20,19,15,0.7); }
  .chatbot-status .dot{ width:6px; height:6px; border-radius:50%; background:#2f7a4d; box-shadow:0 0 0 rgba(47,122,77,0.5); animation:statusPulse 2s infinite; }
  @keyframes statusPulse{
    0%{ box-shadow:0 0 0 0 rgba(47,122,77,0.5); }
    70%{ box-shadow:0 0 0 5px rgba(47,122,77,0); }
    100%{ box-shadow:0 0 0 0 rgba(47,122,77,0); }
  }
  .chatbot-close{ background:rgba(20,19,15,0.1); border:none; color:var(--on-gold); font-size:18px; width:28px; height:28px; border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .2s ease; position:relative; z-index:1; }
  .chatbot-close:hover{ background:rgba(20,19,15,0.2); }

  .chatbot-messages{ flex:1; overflow-y:auto; padding:18px 16px; display:flex; flex-direction:column; gap:12px; scroll-behavior:smooth; }
  .chatbot-messages::-webkit-scrollbar{ width:5px; }
  .chatbot-messages::-webkit-scrollbar-thumb{ background:var(--line); border-radius:10px; }

  .chatbot-msg{ max-width:84%; padding:10px 14px; border-radius:14px; font-size:13.5px; line-height:1.5; animation:msgIn .25s ease forwards; }
  @keyframes msgIn{ 0%{ opacity:0; transform:translateY(6px); } 100%{ opacity:1; transform:translateY(0); } }
  .chatbot-msg.bot{
    background:var(--parchment); color:var(--ink); align-self:flex-start; border-bottom-left-radius:3px;
    border:1px solid var(--line); box-shadow:0 2px 8px rgba(0,0,0,0.15);
  }
  .chatbot-msg.user{
    background:linear-gradient(135deg, var(--copper-soft), var(--copper)); color:var(--on-gold);
    align-self:flex-end; border-bottom-right-radius:3px; font-weight:500;
  }
  .chatbot-msg.error{ background:rgba(201,110,39,0.12); border-color:rgba(201,110,39,0.3); color:var(--ink); }

  .chatbot-typing{
    align-self:flex-start; display:flex; gap:4px; padding:12px 14px;
    background:var(--parchment); border:1px solid var(--line); border-radius:14px; border-bottom-left-radius:3px;
  }
  .chatbot-typing span{ width:6px; height:6px; border-radius:50%; background:var(--copper); opacity:0.5; animation:typingBounce 1s infinite ease-in-out; }
  .chatbot-typing span:nth-child(2){ animation-delay:.15s; }
  .chatbot-typing span:nth-child(3){ animation-delay:.3s; }
  @keyframes typingBounce{ 0%,60%,100%{ transform:translateY(0); opacity:.4;} 30%{ transform:translateY(-4px); opacity:1;} }

  .chatbot-chips{ display:flex; flex-wrap:wrap; gap:7px; padding:0 16px 14px; flex-shrink:0; }
  .chatbot-chips .chip{
    background:var(--parchment); border:1px solid var(--line); border-radius:20px;
    padding:7px 13px; font-size:12px; cursor:pointer; color:var(--ink-soft); font-family:'Inter', sans-serif;
    transition:background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
  }
  .chatbot-chips .chip:hover{ background:var(--copper); border-color:var(--copper); color:var(--on-gold); transform:translateY(-1px); }

  .chatbot-input-row{ display:flex; gap:8px; padding:13px 16px; border-top:1px solid var(--line); flex-shrink:0; background:var(--parchment-dim); }
  .chatbot-input-row input{
    flex:1; border:1px solid var(--line); border-radius:22px; padding:10px 16px; font-size:13.5px;
    font-family:'Inter', sans-serif; background:var(--parchment); color:var(--ink);
    transition:border-color .2s ease;
  }
  .chatbot-input-row input:focus{ outline:none; border-color:var(--copper); }
  .chatbot-input-row input:disabled{ opacity:.6; }
  .chatbot-input-row button{
    width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg, var(--copper-soft), var(--copper)); color:var(--on-gold);
    border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; padding:0;
    transition:transform .2s ease, opacity .2s ease;
  }
  .chatbot-input-row button:hover{ transform:scale(1.08); }
  .chatbot-input-row button:disabled{ opacity:.45; cursor:default; transform:none; }
  .chatbot-input-row button svg{ width:16px; height:16px; }

  @media (max-width: 600px){
    .chatbot-panel{ right:16px; left:16px; width:auto; bottom:92px; height:min(500px, calc(100vh - 160px)); }
    .chatbot-launcher{ right:16px; bottom:16px; }
  }

  @media (max-width: 1080px){
    .pricing-grid{ grid-template-columns:1fr 1fr; }
    .price-card.feature{ transform:none; }
  }
  @media (max-width: 900px){
    .hero-grid{ grid-template-columns:1fr; }
    .services-grid{ grid-template-columns:1fr 1fr; }
    .process{ grid-template-columns:1fr 1fr; }
    .footer-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width: 640px){
    .pricing-grid{ grid-template-columns:1fr; }
  }
  @media (max-width: 840px){
    .nav-links, .nav > .btn-primary{ display:none; }
    .menu-toggle{ display:flex; }
  }
  @media (max-width: 600px){
    .nav{ padding:16px 20px; }
    .services-grid{ grid-template-columns:1fr; }
    .process{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr; }
    section{ padding:70px 0; }
    .trust .wrap{ flex-direction:column; align-items:flex-start; gap:24px; }
    .mobile-menu{ padding:10px 20px 22px; }
    .contact-row{ justify-content:stretch; }
    .contact-row .btn{ width:100%; justify-content:center; }
  }
