/* ==========================================================================
   SPECTECH PROMOTIONS LLC — Site Stylesheet
   Design language: "The Reconciled Ledger" — warm paper tones, deep ledger
   green + copper stamp accent, hairline rules like ruled ledger paper,
   tabular mono figures for every number so columns of dollars always align.
   ========================================================================== */

:root{
  --ink-navy:#1B2A4A;
  --ink-navy-dark:#121D33;
  --paper:#FAF7EF;
  --paper-alt:#F1EAD9;
  --ledger-green:#1F6F54;
  --ledger-green-dark:#154F3C;
  --ledger-green-tint:#E7F1EB;
  --stamp-copper:#B8763E;
  --stamp-copper-dark:#8F5A2C;
  --rule:#DCD3BE;
  --rule-strong:#C3B79C;
  --charcoal:#292722;
  --charcoal-soft:#5B564B;
  --white:#FFFFFF;
  --shadow: 0 12px 32px -18px rgba(27,42,74,0.35);
  --radius-sm: 4px;
  --radius-md: 10px;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink-navy);
  margin:0 0 .5em;
  line-height:1.15;
  font-weight:600;
}
p{ margin:0 0 1em; color:var(--charcoal-soft); }
.container{ width:100%; max-width:1160px; margin:0 auto; padding:0 24px; }
section{ padding:88px 0; }
.section-tight{ padding:56px 0; }
:focus-visible{ outline:3px solid var(--stamp-copper); outline-offset:3px; }

.mono{ font-family:var(--font-mono); font-variant-numeric:tabular-nums; }

/* ---------- Eyebrow / Kicker ---------- */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ledger-green-dark);
  margin-bottom:14px;
}
.kicker::before{
  content:"";
  width:22px; height:1px;
  background:var(--stamp-copper);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-sm);
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  letter-spacing:.01em;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--ledger-green); color:var(--white); }
.btn-primary:hover{ background:var(--ledger-green-dark); }
.btn-copper{ background:var(--stamp-copper); color:var(--white); }
.btn-copper:hover{ background:var(--stamp-copper-dark); }
.btn-outline{ background:transparent; border-color:var(--ink-navy); color:var(--ink-navy); }
.btn-outline:hover{ background:var(--ink-navy); color:var(--white); }
.btn-outline-light{ background:transparent; border-color:rgba(255,255,255,.55); color:var(--white); }
.btn-outline-light:hover{ background:var(--white); color:var(--ink-navy); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:13.5px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar{
  background:var(--ink-navy);
  color:#CBD4E3;
  font-family:var(--font-mono);
  font-size:12.5px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:8px;
  padding-bottom:8px;
  flex-wrap:wrap;
  gap:6px;
}
.topbar a{ color:#E9EEF6; }
.topbar a:hover{ color:var(--stamp-copper); }
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar-item{ display:inline-flex; align-items:center; gap:6px; }
.topbar-item svg{ width:13px; height:13px; flex:none; }

.site-header{
  background:var(--paper);
  border-bottom:1px solid var(--rule);
  position:sticky; top:0; z-index:50;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ width:42px; height:42px; flex:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .b1{
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  color:var(--ink-navy);
  letter-spacing:.01em;
}
.brand-text .b2{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.16em;
  color:var(--ledger-green-dark);
  text-transform:uppercase;
}

.main-nav{ display:flex; align-items:center; gap:36px; }
.nav-links{ display:flex; gap:30px; }
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--charcoal);
  position:relative; padding:4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-4px; width:0; height:2px;
  background:var(--stamp-copper); transition:width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--ledger-green-dark); }

.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-toggle{
  display:none; background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--ink-navy); margin:5px 0; transition:.2s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 60%, var(--paper-alt) 100%);
  padding:76px 0 40px;
  position:relative;
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.hero h1{ font-size:46px; letter-spacing:-.01em; }
.hero-lede{ font-size:17.5px; max-width:520px; }
.hero-actions{ display:flex; gap:16px; margin-top:28px; flex-wrap:wrap; }
.hero-flags{
  display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:36px;
  padding-top:24px; border-top:1px solid var(--rule);
}
.hero-flag{
  display:flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:600; color:var(--ink-navy);
}
.hero-flag svg{ width:18px; height:18px; color:var(--ledger-green); flex:none; }

.hero-art{ position:relative; }
.ledger-card{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow);
  padding:26px 26px 20px;
  position:relative;
}
.ledger-card .lc-head{
  display:flex; justify-content:space-between; align-items:baseline;
  border-bottom:2px solid var(--ink-navy); padding-bottom:10px; margin-bottom:12px;
}
.ledger-card .lc-head h4{ margin:0; font-size:15px; }
.ledger-card .lc-head span{ font-family:var(--font-mono); font-size:11px; color:var(--charcoal-soft); }
.lc-row{
  display:flex; justify-content:space-between; padding:9px 0;
  border-bottom:1px dashed var(--rule); font-size:13.5px;
}
.lc-row span:first-child{ color:var(--charcoal-soft); }
.lc-row span:last-child{ font-family:var(--font-mono); }
.lc-total{
  display:flex; justify-content:space-between; padding-top:14px; margin-top:6px;
  font-weight:700; color:var(--ink-navy); font-size:15px;
}
.lc-total span:last-child{ font-family:var(--font-mono); color:var(--ledger-green-dark); }
.stamp{
  position:absolute; right:-18px; bottom:-26px; width:132px; height:132px;
  transform:rotate(-9deg);
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:33px; }

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }

.svc-card{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--radius-md);
  padding:30px 26px;
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover{ border-color:var(--ledger-green); transform:translateY(-4px); box-shadow:var(--shadow); }
.svc-icon{
  width:46px; height:46px; border-radius:var(--radius-sm);
  background:var(--ledger-green-tint); color:var(--ledger-green-dark);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.svc-icon svg{ width:24px; height:24px; }
.svc-code{ font-family:var(--font-mono); font-size:11px; color:var(--stamp-copper-dark); letter-spacing:.06em; }
.svc-card h3{ font-size:19px; margin:6px 0 10px; }
.svc-card p{ font-size:14.5px; margin-bottom:14px; }
.svc-link{ font-size:13.5px; font-weight:600; color:var(--ledger-green-dark); display:inline-flex; gap:6px; align-items:center; }
.svc-link svg{ width:14px; height:14px; transition:transform .15s; }
.svc-card:hover .svc-link svg{ transform:translateX(3px); }

/* ---------- Process / How it works ---------- */
.process{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
.process::before{
  content:""; position:absolute; top:26px; left:6%; right:6%; height:1px;
  background:repeating-linear-gradient(90deg, var(--rule-strong) 0 8px, transparent 8px 14px);
}
.p-step{ padding:0 18px; position:relative; text-align:left; }
.p-num{
  width:52px; height:52px; border-radius:50%;
  background:var(--white); border:1.5px solid var(--ink-navy);
  color:var(--ink-navy); font-family:var(--font-mono); font-weight:600; font-size:15px;
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; position:relative; z-index:2;
}
.p-step h4{ font-size:16.5px; margin-bottom:8px; }
.p-step p{ font-size:13.8px; }

/* ---------- Why / value props ---------- */
.value-row{ display:flex; gap:20px; padding:22px 0; border-bottom:1px solid var(--rule); }
.value-row:first-child{ border-top:1px solid var(--rule); }
.value-num{ font-family:var(--font-mono); color:var(--stamp-copper-dark); font-size:13px; padding-top:3px; }
.value-row h4{ font-size:16.5px; margin-bottom:4px; }
.value-row p{ font-size:14px; margin:0; }

/* ==========================================================================
   SERVICE DETAIL BLOCKS (services.html)
   ========================================================================== */
.svc-detail{
  display:grid; grid-template-columns:280px 1fr; gap:44px;
  padding:44px 0; border-top:1px solid var(--rule);
}
.svc-detail:last-child{ border-bottom:1px solid var(--rule); }
.svc-detail-meta{ position:sticky; top:100px; align-self:start; }
.svc-detail-meta .svc-icon{ margin-bottom:16px; }
.svc-detail-meta h3{ font-size:22px; margin-bottom:8px; }
.svc-fit{
  margin-top:16px; font-size:12.8px; padding:10px 14px; background:var(--ledger-green-tint);
  border-radius:var(--radius-sm); color:var(--ledger-green-dark); font-weight:600;
}
.svc-detail-body p{ font-size:15px; }
.svc-includes{ margin-top:18px; }
.svc-includes h5{
  font-family:var(--font-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em;
  color:var(--charcoal-soft); margin-bottom:12px;
}
.svc-includes ul{ display:grid; grid-template-columns:1fr 1fr; gap:10px 24px; }
.svc-includes li{ display:flex; gap:9px; align-items:flex-start; font-size:14px; }
.svc-includes svg{ width:15px; height:15px; color:var(--ledger-green); flex:none; margin-top:3px; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-note{
  background:var(--ledger-green-tint);
  border:1px solid #C9DED3;
  border-radius:var(--radius-md);
  padding:20px 24px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:52px;
}
.pricing-note svg{ width:22px; height:22px; color:var(--ledger-green-dark); flex:none; margin-top:2px; }
.pricing-note strong{ color:var(--ink-navy); }
.pricing-note p{ margin:0; font-size:14.5px; color:var(--charcoal); }

.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.plan-card{
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--radius-md);
  padding:30px 26px 28px;
  display:flex; flex-direction:column;
  position:relative;
}
.plan-card.featured{ border:2px solid var(--stamp-copper); box-shadow:var(--shadow); }
.plan-tag{
  position:absolute; top:-13px; right:24px;
  background:var(--stamp-copper); color:var(--white);
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.08em;
  text-transform:uppercase; padding:5px 12px; border-radius:20px;
}
.plan-index{ font-family:var(--font-mono); font-size:12px; color:var(--charcoal-soft); letter-spacing:.06em; }
.plan-card h3{ font-size:20px; margin:6px 0 10px; }
.plan-desc{ font-size:13.8px; min-height:56px; }
.plan-price{
  display:flex; align-items:baseline; gap:8px; margin:14px 0 6px;
  border-top:1px dashed var(--rule); border-bottom:1px dashed var(--rule); padding:14px 0;
}
.plan-price .amt{ font-family:var(--font-mono); font-size:27px; font-weight:600; color:var(--ink-navy); }
.plan-price .unit{ font-size:12.5px; color:var(--charcoal-soft); }
.plan-list{ margin:18px 0 24px; flex-grow:1; }
.plan-list li{
  display:flex; gap:10px; align-items:flex-start;
  font-size:13.6px; padding:7px 0; color:var(--charcoal);
}
.plan-list svg{ width:15px; height:15px; color:var(--ledger-green); flex:none; margin-top:3px; }
.plan-for{ font-size:12.5px; color:var(--stamp-copper-dark); font-weight:600; margin-bottom:2px; }

.custom-quote{
  margin-top:56px; background:var(--ink-navy); border-radius:var(--radius-md);
  padding:44px 46px; display:flex; align-items:center; justify-content:space-between; gap:30px;
  color:#E9EEF6;
}
.custom-quote h3{ color:var(--white); font-size:24px; margin-bottom:8px; }
.custom-quote p{ color:#C7D0DF; margin:0; max-width:480px; font-size:14.5px; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-hero{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.about-hero .kicker{ margin-bottom:14px; }
.credo{
  background:var(--paper-alt); border-radius:var(--radius-md); padding:34px;
  border-left:3px solid var(--stamp-copper);
}
.credo p{ font-family:var(--font-display); font-size:19px; color:var(--ink-navy); font-style:italic; margin:0; }

.values-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.value-card{ padding:24px; border:1px solid var(--rule); border-radius:var(--radius-md); background:var(--white); }
.value-card h4{ font-size:17px; margin-bottom:8px; }
.value-card p{ font-size:14px; margin:0; }

.scope-table{ width:100%; border-collapse:collapse; margin-top:10px; }
.scope-table th, .scope-table td{
  text-align:left; padding:14px 16px; border-bottom:1px solid var(--rule); font-size:14px;
}
.scope-table th{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--charcoal-soft); }
.scope-table td.yes{ color:var(--ledger-green-dark); font-weight:600; }
.scope-table td.no{ color:var(--charcoal-soft); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-wrap{ display:flex; justify-content: center; }

.contact-info-card{
  background:var(--ink-navy); color:#E9EEF6; border-radius:var(--radius-md);
  padding:36px 32px; max-width: 700px; width: 100%;
}
.contact-info-card h3{ color:var(--white); font-size:20px; }
.info-line{ display:flex; gap:14px; padding:16px 0; border-top:1px solid rgba(255,255,255,.14); }
.info-line:first-of-type{ border-top:none; }
.info-line svg{ width:19px; height:19px; color:var(--stamp-copper); flex:none; margin-top:2px; }
.info-line span{ font-size:14px; color:#D6DDE9; }
.info-line strong{ display:block; color:var(--white); font-size:13.5px; margin-bottom:2px; }

.form-card{ background:var(--white); border:1px solid var(--rule); border-radius:var(--radius-md); padding:36px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13px; font-weight:600; color:var(--ink-navy); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--rule-strong); border-radius:var(--radius-sm);
  font-family:var(--font-body); font-size:14.5px; background:var(--paper); color:var(--charcoal);
}
.field textarea{ min-height:130px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:2px solid var(--ledger-green); border-color:var(--ledger-green); }
.form-note{ font-size:12.5px; color:var(--charcoal-soft); margin-top:10px; }

.map-embed{ border-radius:var(--radius-md); overflow:hidden; border:1px solid var(--rule); margin-top:26px; }
.map-embed iframe{ width:100%; height:280px; border:0; display:block; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band{
  background:var(--ledger-green-dark);
  color:var(--white);
  border-radius:var(--radius-md);
  padding:52px 54px;
  display:flex; align-items:center; justify-content:space-between; gap:30px;
}
.cta-band h3{ color:var(--white); font-size:27px; margin-bottom:6px; }
.cta-band p{ color:#CFE6DB; margin:0; }
.cta-actions{ display:flex; gap:14px; flex-none; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-hero{ padding:60px 0 20px; border-bottom:1px solid var(--rule); }
.legal-hero .kicker{ margin-bottom:10px; }
.legal-body{ max-width:820px; }
.legal-body h2{ font-size:22px; margin-top:44px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ font-size:15px; color:var(--charcoal-soft); }
.legal-body ul{ margin:0 0 18px; }
.legal-body li{ position:relative; padding-left:20px; margin-bottom:8px; }
.legal-body li::before{ content:"—"; position:absolute; left:0; color:var(--stamp-copper); }
.legal-updated{ font-family:var(--font-mono); font-size:12.5px; color:var(--charcoal-soft); margin-bottom:30px; }
.legal-toc{ background:var(--paper-alt); border-radius:var(--radius-md); padding:22px 26px; margin-bottom:40px; }
.legal-toc h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; font-family:var(--font-mono); color:var(--charcoal-soft); margin-bottom:12px; }
.legal-toc ol{ margin:0; padding-left:20px; columns:2; gap:24px; }
.legal-toc li{ font-size:13.8px; margin-bottom:6px; color:var(--ledger-green-dark); }
.legal-toc a:hover{ text-decoration:underline; }

/* ==========================================================================
   BREADCRUMB / PAGE HERO (inner pages)
   ========================================================================== */
.page-hero{
  background:var(--paper-alt);
  padding:52px 0;
  border-bottom:1px solid var(--rule);
}
.page-hero .kicker{ margin-bottom:10px; }
.page-hero h1{ font-size:36px; margin-bottom:10px; }
.page-hero p{ max-width:600px; font-size:15.5px; margin:0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--ink-navy-dark); color:#B9C3D6; padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:44px; }
.footer-brand .brand-text .b1{ color:var(--white); }
.footer-about{ margin-top:16px; font-size:13.8px; color:#9FAAC1; max-width:280px; }
.foot-social{ display:flex; gap:10px; margin-top:20px; }
.foot-social a{
  width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center; transition:.2s;
}
.foot-social a:hover{ background:var(--stamp-copper); border-color:var(--stamp-copper); }
.foot-social svg{ width:15px; height:15px; }
.footer h5{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase;
  color:#7E8AA3; margin-bottom:18px;
}
.footer-links li{ margin-bottom:11px; font-size:13.8px; }
.footer-links a:hover{ color:var(--white); }
.footer-contact li{ display:flex; gap:10px; font-size:13.6px; margin-bottom:14px; align-items:flex-start; }
.footer-contact svg{ width:16px; height:16px; color:var(--stamp-copper); flex:none; margin-top:2px; }
.footer-disclaimer{
  border-top:1px solid rgba(255,255,255,.1); padding:22px 0; font-size:12px; color:#7E8AA3; line-height:1.7;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1); padding:20px 0 26px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  font-size:12.8px; color:#7E8AA3;
}
.footer-bottom-links{ display:flex; gap:20px; }
.footer-bottom-links a:hover{ color:var(--white); }

/* ==========================================================================
   MISC UTILITIES
   ========================================================================== */
.badge-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.badge{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:.04em;
  border:1px solid var(--rule-strong); border-radius:20px; padding:6px 14px; color:var(--charcoal-soft);
}
.divider{ height:1px; background:var(--rule); border:none; margin:0; }
.text-center{ text-align:center; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-art{ order:-1; max-width:440px; margin:0 auto; }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .plans-grid{ grid-template-columns:repeat(2,1fr); }
  .process{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
  .process::before{ display:none; }
  .about-hero{ grid-template-columns:1fr; }
  .values-grid{ grid-template-columns:1fr; }
  .contact-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .custom-quote{ flex-direction:column; align-items:flex-start; }
  .cta-band{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .topbar .container{ justify-content:center; text-align:center; }
  .nav-links{
    position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
    background:var(--white); flex-direction:column; padding:100px 32px 32px; gap:26px;
    transform:translateX(100%); transition:transform .28s ease; box-shadow:-10px 0 30px rgba(0,0,0,.12);
    z-index:60;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:block; z-index:70; }
  .nav-actions .btn-sm{ display:none; }
  body.nav-open{ overflow:hidden; }
  .nav-scrim{ display:none; position:fixed; inset:0; background:rgba(18,29,51,.4); z-index:55; }
  .nav-scrim.open{ display:block; }

  .hero{ padding:44px 0 20px; }
  .hero h1{ font-size:32px; }
  .hero-lede{ font-size:16px; }
  section{ padding:56px 0; }
  .section-head h2{ font-size:26px; }
  .grid-3, .grid-2{ grid-template-columns:1fr; }
  .plans-grid{ grid-template-columns:1fr; }
  .process{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .custom-quote, .cta-band{ padding:32px 24px; }
  .legal-toc ol{ columns:1; }
  .page-hero h1{ font-size:28px; }
  .stamp{ width:100px; height:100px; right:-8px; bottom:-16px; }
  .svc-detail{ grid-template-columns:1fr; gap:20px; }
  .svc-detail-meta{ position:static; }
  .svc-includes ul{ grid-template-columns:1fr; }
}
