:root{
    --white:#FFFFFF;
    --offwhite:#F7F5F0;
    --navy:#0F2A47;
    --navy-2:#12345A;
    --navy-dark:#081A2C;
    --gold:#B98634;
    --gold-dark:#96702A;
    --gold-light:#F6EEDD;
    --text:#1B2A3A;
    --text-muted:#5A6B7B;
    --border:#E4E1DA;
    --shadow: 0 4px 24px rgba(15,42,71,0.08);
    --radius: 14px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--white);
    color:var(--text);
    font-family:'Inter', sans-serif;
    -webkit-font-smoothing:antialiased;
    line-height:1.6;
  }
  h1,h2,h3,h4{
    font-family:'Sora', sans-serif;
    color:var(--navy);
    margin:0;
    letter-spacing:-0.01em;
  }
  p{margin:0;}
  a{color:inherit; text-decoration:none;}
  ul{margin:0; padding:0; list-style:none;}
  img,svg{display:block; max-width:100%;}
  .mono{font-family:'IBM Plex Mono', monospace;}

  .container{max-width:1180px; margin:0 auto; padding:0 28px;}
  @media (max-width:640px){ .container{padding:0 20px;} }

  section{padding:88px 0;}
  .section-alt{background:var(--offwhite);}
  @media (max-width:640px){ section{padding:56px 0;} }

  a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:3px;
  }
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--gold-dark);
    display:block;
    margin-bottom:14px;
  }
  .section-head{max-width:640px; margin:0 0 44px;}
  .section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
  .section-head h2{font-size:clamp(1.7rem, 3vw, 2.3rem); margin-bottom:14px;}
  .section-head p{color:var(--text-muted); font-size:1.02rem;}

  /* Buttons */
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:'Inter', sans-serif; font-weight:600; font-size:0.95rem;
    padding:14px 24px; border-radius:10px; border:1.5px solid transparent;
    cursor:pointer;
    transition:transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  }
  .btn:hover{transform:translateY(-1px);}
  .btn-primary{background:var(--navy); color:var(--white); border-color:var(--navy);}
  .btn-primary:hover{background:var(--navy-2);}
  .btn-secondary{background:var(--white); color:var(--navy); border-color:var(--navy);}
  .btn-secondary:hover{background:var(--gold-light); border-color:var(--gold);}
  .btn-gold{background:var(--gold); color:var(--white); border-color:var(--gold);}
  .btn-gold:hover{background:var(--gold-dark);}
  .btn-block{width:100%; justify-content:center;}
  .btn:disabled{opacity:0.65; cursor:not-allowed; transform:none;}

  /* Nav */
  .nav{
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .nav-inner{
    max-width:1180px; margin:0 auto; padding:12px 28px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .brand-logo{height:40px; width:auto;}
  .nav-links{display:flex; align-items:center; font-size:0.9rem; font-weight:500;}
  .nav-links li{margin-right:24px;}
  .nav-links li:last-child{margin-right:0;}
  .nav-links a{color:var(--text); position:relative; padding-bottom:2px; transition:color .15s ease;}
  .nav-links a:hover{color:var(--gold-dark);}
  .nav-links .nav-cta a{color:var(--white);}
  .nav-links .nav-cta a:hover{color:var(--white);}
  .nav-toggle{
    display:none; background:none; border:1.5px solid var(--border); border-radius:8px;
    padding:8px 10px; cursor:pointer;
  }
  .nav-toggle svg{width:20px; height:20px; color:var(--navy);}
  @media (max-width:980px){
    .nav-links{
      position:absolute; top:100%; left:0; right:0;
      background:var(--white);
      flex-direction:column; align-items:flex-start;
      padding:18px 28px 24px;
      border-bottom:1px solid var(--border);
      display:none;
    }
    .nav-links.open{display:flex;}
    .nav-links li{margin-right:0; margin-bottom:16px; width:100%;}
    .nav-toggle{display:inline-flex; align-items:center; justify-content:center;}
    .nav-links .nav-cta{width:100%;}
  }

  /* Hero */
  .hero{background:linear-gradient(180deg, var(--offwhite) 0%, var(--white) 100%); padding:88px 0 64px;}
  .hero-inner{max-width:760px; margin:0 auto; text-align:center;}
  .hero h1{font-size:clamp(2.2rem, 5vw, 3.1rem); line-height:1.12;}
  .hero .lede{margin-top:20px; font-size:1.1rem; color:var(--text-muted); max-width:600px; margin-left:auto; margin-right:auto;}
  .hero-actions{margin-top:32px; display:flex; justify-content:center; gap:14px; flex-wrap:wrap;}
  .trust-line{margin-top:48px; display:flex; flex-wrap:wrap; justify-content:center; gap:14px;}
  .trust-pill{
    display:flex; align-items:center; gap:8px;
    background:var(--white); border:1px solid var(--border); border-radius:999px;
    padding:9px 16px; font-size:0.85rem; font-weight:500; color:var(--navy);
    box-shadow:var(--shadow);
  }
  .trust-pill svg{width:16px; height:16px; color:var(--gold); flex-shrink:0;}

  .icon-circle{
    width:52px; height:52px; border-radius:12px;
    background:var(--gold-light);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:18px; flex-shrink:0;
  }
  .icon-circle svg{width:26px; height:26px; color:var(--gold-dark);}

  .grid{display:grid; gap:24px;}
  .grid-3{grid-template-columns:repeat(3, 1fr);}
  .grid-4{grid-template-columns:repeat(4, 1fr);}
  .grid-5{grid-template-columns:repeat(5, 1fr);}
  @media (max-width:980px){ .grid-3, .grid-4, .grid-5{grid-template-columns:repeat(2, 1fr);} }
  @media (max-width:620px){ .grid-3, .grid-4, .grid-5{grid-template-columns:1fr;} }

  .card{
    background:var(--white); border:1px solid var(--border); border-radius:var(--radius);
    padding:28px; transition:box-shadow .2s ease, transform .2s ease;
  }
  .card:hover{box-shadow:var(--shadow); transform:translateY(-2px);}
  .card h3{font-size:1.06rem; margin-bottom:10px;}
  .card p{color:var(--text-muted); font-size:0.93rem; line-height:1.6;}
  .card.emphasis{border-color:#E7D5AE; background:linear-gradient(180deg,#FFFDF9 0%,#FFFFFF 100%);}

  .note-box{
    margin-top:32px; background:var(--gold-light); border:1px solid #E7D5AE;
    border-radius:var(--radius); padding:20px 24px; font-size:0.92rem; color:var(--navy);
  }

  /* About */
  .about-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:56px; align-items:start;}
  @media (max-width:860px){ .about-grid{grid-template-columns:1fr; gap:32px;} }
  .about-grid p{color:var(--text-muted); margin-bottom:16px; line-height:1.7;}
  .about-card{background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow);}
  .about-card h3{font-size:1.05rem; margin-bottom:18px;}
  .about-list li{display:flex; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); font-size:0.94rem; color:var(--text);}
  .about-list li:last-child{border-bottom:none;}
  .about-list svg{width:18px; height:18px; color:var(--gold-dark); flex-shrink:0; margin-top:2px;}

  /* Steps */
  .steps{display:grid; grid-template-columns:repeat(4, 1fr); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;}
  @media (max-width:860px){ .steps{grid-template-columns:1fr 1fr;} }
  @media (max-width:520px){ .steps{grid-template-columns:1fr;} }
  .step{padding:30px 24px; border-right:1px solid var(--border);}
  .steps .step:last-child{border-right:none;}
  @media (max-width:860px){ .step:nth-child(2n){border-right:none;} .step{border-bottom:1px solid var(--border);} }
  .step .step-num{font-family:'IBM Plex Mono', monospace; font-size:0.8rem; color:var(--gold-dark); margin-bottom:14px; display:block;}
  .step h3{font-size:1rem; margin-bottom:8px;}
  .step p{color:var(--text-muted); font-size:0.9rem;}
  .steps-note{margin-top:20px; text-align:center; font-size:0.87rem; color:var(--text-muted); font-style:italic;}

  /* Pricing */
  .pricing-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;}
  @media (max-width:900px){ .pricing-grid{grid-template-columns:1fr; max-width:460px; margin:0 auto;} }
  .price-card{background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius); padding:30px 26px; display:flex; flex-direction:column;}
  .price-card.featured{border-color:var(--gold); box-shadow:0 8px 32px rgba(185,134,52,0.14); position:relative;}
  .price-card.featured::before{
    content:"Most popular"; position:absolute; top:-13px; left:26px;
    background:var(--gold); color:var(--white); font-size:0.7rem; font-weight:600;
    letter-spacing:0.04em; padding:5px 12px; border-radius:999px;
  }
  .price-card .plan-name{font-family:'Sora', sans-serif; font-size:1.15rem; color:var(--navy); margin-bottom:6px;}
  .price-card .plan-price{font-family:'Sora', sans-serif; font-size:1.9rem; font-weight:700; color:var(--navy); margin-bottom:2px;}
  .price-card .plan-price span{font-size:0.92rem; font-weight:500; color:var(--text-muted);}
  .price-card .plan-from{font-size:0.8rem; color:var(--text-muted); margin-bottom:20px;}
  .price-card .plan-label{font-family:'IBM Plex Mono', monospace; font-size:0.7rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--gold-dark); margin:16px 0 8px;}
  .price-card ul li{display:flex; gap:10px; align-items:flex-start; font-size:0.86rem; padding:5px 0; color:var(--text);}
  .price-card ul li svg{width:15px; height:15px; color:var(--gold-dark); margin-top:3px; flex-shrink:0;}
  .price-card .btn{margin-top:22px;}

  .highlight-box{
    margin-top:52px; background:var(--navy); color:var(--white); border-radius:var(--radius); padding:36px;
  }
  .highlight-box h3{color:var(--white); font-size:1.2rem; margin-bottom:10px;}
  .highlight-box p{color:#C7D3DE; font-size:0.95rem; line-height:1.65;}
  .highlight-box p + p{margin-top:10px;}
  .pricing-cta{text-align:center; margin-top:40px;}

  /* FAQ */
  .faq-list{max-width:820px; margin:0 auto;}
  details.faq-item{border-bottom:1px solid var(--border); padding:18px 0;}
  details.faq-item summary{
    cursor:pointer; font-family:'Sora', sans-serif; font-weight:600; font-size:0.98rem; color:var(--navy);
    list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px;
  }
  details.faq-item summary::-webkit-details-marker{display:none;}
  details.faq-item summary .plus{
    flex-shrink:0; width:22px; height:22px; border-radius:50%;
    border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center;
    position:relative; transition:transform .2s ease, border-color .2s ease;
  }
  details.faq-item summary .plus::before, details.faq-item summary .plus::after{content:""; position:absolute; background:var(--navy);}
  details.faq-item summary .plus::before{width:9px; height:1.5px;}
  details.faq-item summary .plus::after{width:1.5px; height:9px;}
  details.faq-item[open] summary .plus{transform:rotate(45deg); border-color:var(--gold);}
  details.faq-item p{margin-top:12px; color:var(--text-muted); font-size:0.92rem; line-height:1.6; max-width:680px;}

  /* Contact */
  .contact-grid{display:grid; grid-template-columns:1fr 1.3fr; gap:56px;}
  @media (max-width:900px){ .contact-grid{grid-template-columns:1fr; gap:32px;} }
  .contact-info h3{font-size:1.1rem; margin-bottom:6px;}
  .contact-info .biz{color:var(--text-muted); margin-bottom:22px; font-size:0.94rem;}
  .contact-detail{display:flex; align-items:center; gap:12px; padding:12px 0; border-top:1px solid var(--border); font-size:0.94rem;}
  .contact-detail svg{width:18px; height:18px; color:var(--gold-dark); flex-shrink:0;}
  .contact-form{background:var(--offwhite); border-radius:var(--radius); padding:34px;}
  @media (max-width:640px){ .contact-form{padding:22px;} }
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  @media (max-width:560px){ .form-grid{grid-template-columns:1fr;} }
  .field{display:flex; flex-direction:column; gap:6px; margin-bottom:16px;}
  .field.full{grid-column:1 / -1;}
  .field label{font-size:0.82rem; font-weight:600; color:var(--navy);}
  .field label .req{color:var(--gold-dark); margin-left:2px;}
  .field input, .field select, .field textarea{
    border:1px solid var(--border); border-radius:8px; padding:11px 13px;
    font-family:'Inter', sans-serif; font-size:0.94rem; background:var(--white); color:var(--text);
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(185,134,52,0.14);
  }
  .consent-row{display:flex; gap:10px; align-items:flex-start; margin:4px 0 20px; font-size:0.86rem; color:var(--text-muted);}
  .consent-row input{margin-top:3px;}
  .form-error{display:none; background:#FBF2F2; border:1px solid #EAD8D8; color:#9B3B3B; border-radius:8px; padding:12px 14px; font-size:0.86rem; margin-bottom:16px;}
  .form-error.show{display:block;}
  .thank-you{display:none; text-align:center; padding:40px 10px;}
  .thank-you.show{display:block;}
  .thank-you .icon-circle{margin:0 auto 18px;}
  .thank-you h3{font-size:1.2rem; margin-bottom:10px;}
  .thank-you p{color:var(--text-muted); font-size:0.95rem;}
  .endpoint-note{font-size:0.78rem; color:var(--text-muted); margin-top:10px;}

  /* Footer */
  footer{background:var(--navy-dark); color:#B9C6D2; padding:52px 0 26px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:36px;}
  @media (max-width:760px){ .footer-grid{grid-template-columns:1fr; gap:28px;} }
  .footer-brand h3{color:var(--white); font-size:1.15rem; margin-bottom:12px;}
  .footer-brand p{font-size:0.9rem; color:#9AACBB; margin-bottom:10px; max-width:320px;}
  .footer-col h4{color:var(--white); font-size:0.82rem; letter-spacing:0.04em; text-transform:uppercase; margin-bottom:16px;}
  .footer-col ul li{margin-bottom:10px;}
  .footer-col a, .footer-col button.linklike{
    font-size:0.9rem; color:#B9C6D2; transition:color .15s ease;
    background:none; border:none; padding:0; cursor:pointer; font-family:'Inter',sans-serif; text-align:left;
  }
  .footer-col a:hover, .footer-col button.linklike:hover{color:var(--white);}
  .footer-social{display:flex; gap:12px; margin-top:6px;}
  .footer-social a{width:36px; height:36px; border-radius:50%; border:1px solid #2A3F52; display:flex; align-items:center; justify-content:center;}
  .footer-social a:hover{border-color:var(--gold);}
  .footer-social svg{width:16px; height:16px; color:#B9C6D2;}
  .footer-bottom{border-top:1px solid #223649; padding-top:22px; font-size:0.82rem; color:#7E92A3; display:flex; flex-direction:column; gap:8px;}

  /* Privacy dialog */
  dialog#privacyDialog{
    border:none; border-radius:var(--radius); padding:0; max-width:680px; width:92%;
    box-shadow:0 20px 60px rgba(8,26,44,0.35);
  }
  dialog#privacyDialog::backdrop{background:rgba(8,26,44,0.55);}
  .dialog-inner{padding:32px; max-height:80vh; overflow-y:auto;}
  .dialog-inner h2{font-size:1.4rem; margin-bottom:6px;}
  .dialog-inner h3{font-size:1rem; margin:20px 0 8px;}
  .dialog-inner p, .dialog-inner li{color:var(--text-muted); font-size:0.92rem; line-height:1.6;}
  .dialog-inner ul{list-style:disc; padding-left:20px; margin-top:6px;}
  .dialog-inner ul li{margin-bottom:6px;}
  .dialog-close{
    position:sticky; top:0; float:right; background:var(--offwhite); border:1px solid var(--border);
    border-radius:8px; padding:8px 14px; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif; font-size:0.85rem;
  }

/* Version 2 shared page styles */
.page-hero{background:linear-gradient(180deg,var(--offwhite) 0%,var(--white) 100%);padding:72px 0 54px;border-bottom:1px solid var(--border)}
.page-hero-inner{max-width:820px;margin:0 auto;text-align:center}
.page-hero h1{font-size:clamp(2rem,4.5vw,3rem);line-height:1.15}
.page-hero p{margin:18px auto 0;color:var(--text-muted);font-size:1.08rem;max-width:700px}
.page-actions{margin-top:28px;display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.content-narrow{max-width:820px;margin:0 auto}
.content-narrow p{color:var(--text-muted);margin-bottom:16px}
.content-narrow h2{font-size:clamp(1.45rem,3vw,2rem);margin:38px 0 14px}
.content-narrow h3{font-size:1.12rem;margin:26px 0 10px}
.check-list{display:grid;gap:10px;margin:18px 0 24px}
.check-list li{display:flex;gap:10px;align-items:flex-start;color:var(--text)}
.check-list li::before{content:'✓';color:var(--gold-dark);font-weight:700}
.breadcrumbs{font-size:.82rem;color:var(--text-muted);margin-bottom:18px}
.breadcrumbs a{color:var(--gold-dark)}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:start}
@media(max-width:860px){.split{grid-template-columns:1fr;gap:28px}}
.cta-band{background:var(--navy);color:var(--white);border-radius:var(--radius);padding:38px;margin-top:42px}
.cta-band h2,.cta-band h3{color:var(--white)}
.cta-band p{color:#C7D3DE}
.text-link{color:var(--gold-dark);font-weight:600;text-decoration:underline;text-underline-offset:3px}
.nav-dropdown{position:relative}
.nav-dropdown-menu{display:none;position:absolute;top:100%;left:-18px;min-width:245px;background:var(--white);border:1px solid var(--border);border-radius:10px;box-shadow:var(--shadow);padding:10px;z-index:110}
.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu{display:block}
.nav-dropdown-menu a{display:block;padding:9px 10px;border-radius:7px}
.nav-dropdown-menu a:hover{background:var(--gold-light)}
@media(max-width:980px){.nav-dropdown-menu{position:static;display:block;border:0;box-shadow:none;padding:8px 0 0 14px;min-width:0}.nav-dropdown-menu a{padding:7px 0}.nav-dropdown>a{font-weight:700}}
.industry-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:900px){.industry-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.industry-grid{grid-template-columns:1fr}}
.legal-note{background:var(--offwhite);border:1px solid var(--border);border-radius:10px;padding:18px;margin-top:26px;font-size:.9rem;color:var(--text-muted)}

/* =========================================================
   Small business service page layout
   Keeps inner pages as polished and structured as homepage
========================================================= */
.content-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 330px;
  gap:48px;
  align-items:start;
}

.prose{
  min-width:0;
  max-width:780px;
}

.prose h2{
  font-size:clamp(1.45rem, 2.4vw, 2rem);
  line-height:1.25;
  margin:0 0 14px;
}

.prose h2:not(:first-child){
  margin-top:44px;
}

.prose h3{
  font-size:1.08rem;
  margin:24px 0 8px;
}

.prose p{
  color:var(--text-muted);
  font-size:1rem;
  line-height:1.75;
  margin:0 0 16px;
}

.prose ul,
.prose ol{
  display:grid;
  gap:10px;
  margin:18px 0 26px;
  padding:0;
}

.prose ul li,
.prose ol li{
  position:relative;
  color:var(--text);
  line-height:1.65;
}

.prose ul li{
  padding-left:28px;
}

.prose ul li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  color:var(--gold-dark);
  font-weight:700;
}

.prose ol{
  counter-reset:service-step;
}

.prose ol li{
  counter-increment:service-step;
  padding:16px 18px 16px 58px;
  background:var(--offwhite);
  border:1px solid var(--border);
  border-radius:10px;
}

.prose ol li::before{
  content:counter(service-step, decimal-leading-zero);
  position:absolute;
  left:18px;
  top:16px;
  font-family:'IBM Plex Mono', monospace;
  color:var(--gold-dark);
  font-size:.8rem;
  font-weight:600;
}

.sidebar-card{
  position:sticky;
  top:92px;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.sidebar-card h2{
  font-size:1.25rem;
  margin-bottom:10px;
}

.sidebar-card p{
  color:var(--text-muted);
  font-size:.92rem;
  line-height:1.65;
}

.callout{
  margin-top:46px;
  padding:34px;
  border-radius:var(--radius);
  background:var(--navy);
  color:var(--white);
}

.callout h2{
  color:var(--white);
  margin:0 0 12px;
}

.callout p{
  color:#C7D3DE;
  max-width:650px;
}

.callout .btn{
  margin-top:8px;
}

@media(max-width:940px){
  .content-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .prose{
    max-width:none;
  }

  .sidebar-card{
    position:static;
    max-width:620px;
  }
}

@media(max-width:640px){
  .page-hero{
    padding:54px 0 42px;
  }

  .page-hero h1{
    font-size:clamp(2rem, 10vw, 2.55rem);
  }

  .prose h2:not(:first-child){
    margin-top:34px;
  }

  .callout,
  .sidebar-card{
    padding:24px;
  }
}

/* =========================================================
   Stable site-wide navigation
========================================================= */
.nav{position:sticky;top:0;z-index:1000;min-height:76px}
.nav-inner{min-height:76px;max-width:1280px;width:100%;margin:0 auto;padding:10px 28px;display:flex;align-items:center;gap:30px}
.brand-link{flex:0 0 auto;display:flex;align-items:center}
.brand-logo{width:220px;height:43px;object-fit:contain}
.nav-links{margin-left:auto;display:flex;align-items:center;flex-wrap:nowrap;white-space:nowrap;gap:0}
.nav-links li{flex:0 0 auto;margin-right:22px}
.nav-links li:last-child{margin-right:0}
.nav-links a{white-space:nowrap}
.nav-links .nav-cta a{min-width:172px;min-height:46px;padding:12px 22px;display:inline-flex;align-items:center;justify-content:center;text-align:center;line-height:1.15;white-space:nowrap}
.nav-dropdown{position:relative}
.nav-dropdown-menu{top:calc(100% + 14px);left:-16px}
@media (max-width:1120px){
  .nav-inner{min-height:70px;padding:10px 22px}
  .brand-logo{width:190px;height:auto}
  .nav-toggle{display:inline-flex;align-items:center;justify-content:center;margin-left:auto}
  .nav-links{position:absolute;top:100%;left:0;right:0;margin-left:0;background:var(--white);flex-direction:column;align-items:stretch;padding:18px 22px 24px;border-bottom:1px solid var(--border);box-shadow:0 12px 24px rgba(15,42,71,.08);display:none;white-space:normal}
  .nav-links.open{display:flex}
  .nav-links li{width:100%;margin:0 0 12px}
  .nav-links a{display:block;width:100%;white-space:normal}
  .nav-links .nav-cta a{width:100%;min-width:0}
  .nav-dropdown-menu{position:static;display:block;min-width:0;margin-top:6px;padding:6px 0 0 14px;border:0;box-shadow:none}
}


/* =========================================================
   Stable desktop dropdowns
   Adds an invisible hover bridge between the menu label and
   the dropdown panel so the panel does not close while the
   pointer moves down to a choice.
========================================================= */
@media (min-width:981px){
  .nav-dropdown{
    position:relative;
  }

  .nav-dropdown::after{
    content:"";
    position:absolute;
    top:100%;
    left:-18px;
    width:calc(100% + 36px);
    height:16px;
  }

  .nav-dropdown-menu{
    display:block;
    top:calc(100% + 10px);
    left:-18px;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transform:translateY(-4px);
    transition:
      opacity .16s ease,
      transform .16s ease,
      visibility 0s linear .16s;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
    transition-delay:0s;
  }
}


/* =========================================================
   Small Business Bookkeeping page
========================================================= */
.small-business-intro{padding:76px 0}
.small-business-lead{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start;max-width:1080px;margin:0 auto}
.small-business-lead h2{font-size:clamp(1.75rem,3vw,2.45rem);line-height:1.22}
.small-business-lead p{color:var(--text-muted);font-size:1.03rem;line-height:1.75;margin-bottom:16px}
.small-business-services,.small-business-industries,.small-business-process,.small-business-fit,.small-business-cta{padding:82px 0}
.service-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-feature-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:28px;box-shadow:0 2px 12px rgba(15,42,71,.04);transition:transform .2s ease,box-shadow .2s ease}
.service-feature-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.service-feature-card h3{font-size:1.08rem;margin-bottom:9px}
.service-feature-card p{color:var(--text-muted);font-size:.93rem;line-height:1.65}
.service-feature-card .icon-circle span{font-family:'Sora',sans-serif;font-weight:700;color:var(--gold-dark);font-size:1.15rem}
.business-type-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.business-type-card{border-top:3px solid var(--gold);background:var(--white);border-radius:0 0 var(--radius) var(--radius);padding:26px;border-left:1px solid var(--border);border-right:1px solid var(--border);border-bottom:1px solid var(--border)}
.business-type-card h3{font-size:1.05rem;margin-bottom:9px}
.business-type-card p{color:var(--text-muted);font-size:.92rem;line-height:1.65}
.process-card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.process-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:26px}
.process-card span{display:inline-block;font-family:'IBM Plex Mono',monospace;color:var(--gold-dark);font-size:.8rem;margin-bottom:18px}
.process-card h3{font-size:1.02rem;margin-bottom:8px}
.process-card p{color:var(--text-muted);font-size:.9rem;line-height:1.65}
.fit-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px}
.fit-panel{border:1px solid var(--border);border-radius:var(--radius);padding:36px;background:var(--white)}
.fit-panel h2{font-size:clamp(1.5rem,2.4vw,2rem);margin-bottom:14px}
.fit-panel p{color:var(--text-muted);line-height:1.7;margin-bottom:14px}
.fit-panel-dark{background:var(--navy);border-color:var(--navy);color:var(--white)}
.fit-panel-dark h2{color:var(--white)}
.fit-panel-dark p{color:#C7D3DE}
.fit-panel-dark .eyebrow{color:#D8B36E}
.polished-cta{display:flex;align-items:center;justify-content:space-between;gap:38px;margin-top:0}
.polished-cta .eyebrow{color:#D8B36E}
.polished-cta h2{font-size:clamp(1.65rem,2.8vw,2.25rem);margin-bottom:10px}
.polished-cta p{max-width:670px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;flex:0 0 auto}
@media(max-width:980px){.service-feature-grid,.business-type-grid{grid-template-columns:repeat(2,1fr)}.process-card-grid{grid-template-columns:repeat(2,1fr)}.small-business-lead,.fit-grid{grid-template-columns:1fr;gap:34px}.polished-cta{align-items:flex-start;flex-direction:column}.cta-actions{width:100%}}
@media(max-width:620px){.small-business-intro,.small-business-services,.small-business-industries,.small-business-process,.small-business-fit,.small-business-cta{padding:58px 0}.service-feature-grid,.business-type-grid,.process-card-grid{grid-template-columns:1fr}.fit-panel{padding:26px}.cta-actions{flex-direction:column}.cta-actions .btn{width:100%}}


/* =========================================================
   Landlord Bookkeeping page
========================================================= */
.landlord-intro{padding:76px 0}
.landlord-lead{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:start;max-width:1080px;margin:0 auto}
.landlord-lead h2{font-size:clamp(1.75rem,3vw,2.45rem);line-height:1.22}
.landlord-lead p{color:var(--text-muted);font-size:1.03rem;line-height:1.75;margin-bottom:16px}
.landlord-services,.landlord-records,.landlord-process,.landlord-fit,.landlord-cta,.landlord-faq{padding:82px 0}
.property-record-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.property-record-card{border-top:3px solid var(--gold);background:var(--white);border-radius:0 0 var(--radius) var(--radius);padding:26px;border-left:1px solid var(--border);border-right:1px solid var(--border);border-bottom:1px solid var(--border)}
.property-record-card h3{font-size:1.05rem;margin-bottom:9px}
.property-record-card p{color:var(--text-muted);font-size:.92rem;line-height:1.65}
@media(max-width:980px){.landlord-lead{grid-template-columns:1fr;gap:34px}.property-record-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.landlord-intro,.landlord-services,.landlord-records,.landlord-process,.landlord-fit,.landlord-cta,.landlord-faq{padding:58px 0}.property-record-grid{grid-template-columns:1fr}}

/* =========================================================
   Polished services page
========================================================= */
.services-intro,.services-core,.services-detail,.services-process,.services-fit,.services-faq,.services-cta{padding:82px 0}
.services-lead{display:grid;grid-template-columns:.95fr 1.05fr;gap:72px;align-items:start}
.services-lead h2{font-size:clamp(1.7rem,3vw,2.35rem);line-height:1.2}
.services-lead p{color:var(--text-muted);line-height:1.75;margin-bottom:16px}
.service-route-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-route-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:30px;box-shadow:var(--shadow);display:flex;flex-direction:column}
.service-route-card .route-number{font-family:'IBM Plex Mono',monospace;color:var(--gold-dark);font-size:.8rem;margin-bottom:18px}
.service-route-card h3{font-size:1.15rem;margin-bottom:10px}
.service-route-card>p{color:var(--text-muted);line-height:1.7;margin-bottom:8px}
.service-route-card .check-list{margin-top:14px;flex:1}
.service-route-card .text-link{margin-top:8px}
@media(max-width:980px){.services-lead{grid-template-columns:1fr;gap:34px}.service-route-grid{grid-template-columns:1fr}}
@media(max-width:620px){.services-intro,.services-core,.services-detail,.services-process,.services-fit,.services-faq,.services-cta{padding:58px 0}.service-route-card{padding:25px}}
