
:root {
  --font-display: "Libre Franklin", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --navy: #061a31;
  --navy2: #092744;
  --navy3: #103f6b;
  --ink: #111827;
  --muted: #526173;
  --paper: #f5efe3;
  --paper2: #fbf8f1;
  --white: #ffffff;
  --line: #ded4c3;
  --gold: #d4aa3e;
  --gold2: #f0cf68;
  --silver: #dce4ec;
  --shadow: 0 24px 60px rgba(6, 26, 49, .14);
  --soft: 0 12px 30px rgba(6, 26, 49, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 44px)); margin: 0 auto; }

.site-header {
  background: rgba(6,26,49,.985);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.header-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { width: 300px; max-width: 35vw; display: block; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 800; }
.nav a { color: var(--silver); transition: color .18s ease, transform .18s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: white; }
.nav a:hover { transform: translateY(-1px); }
.nav .cta {
  color: #111827;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  padding: 13px 19px;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(212,170,62,.24);
}
.mobile-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 26px;
  line-height: 1;
}

.hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(212,170,62,.24), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy2) 55%, var(--navy3));
  color: white;
  padding: 98px 0 92px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  color: var(--gold2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .095em;
  text-transform: uppercase;
}
h1 {
  margin: 16px 0 24px;
  font-size: clamp(48px, 6.4vw, 80px);
  line-height: .97;
  letter-spacing: -.055em;
}
.hero p {
  font-size: 21px;
  color: #edf3f8;
  margin: 0 0 32px;
  max-width: 760px;
}
.button-row { display: flex; flex-wrap: wrap; gap: 15px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 21px;
  border-radius: 13px;
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #111827; box-shadow: 0 14px 26px rgba(212,170,62,.23); }
.btn-secondary { border-color: rgba(255,255,255,.48); color: white; }
.hero-card {
  background: rgba(255,255,255,.085);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 34px 74px rgba(0,0,0,.22);
}
.hero-card h2 { margin: 0 0 18px; font-size: 28px; line-height: 1.1; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 13px 0 13px 37px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #edf3f9;
}
.check-list li:first-child { border-top: 0; }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--gold2); font-weight: 900; font-size: 18px; }

.trust-strip { background: var(--paper2); border-bottom: 1px solid var(--line); }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.trust-item { padding: 24px; border-right: 1px solid var(--line); background: rgba(255,255,255,.62); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 18px; }
.trust-item span { color: var(--muted); font-size: 14px; }

.section { padding: 88px 0; }
.section.white { background: var(--paper2); }
.section-title { max-width: 850px; margin-bottom: 40px; }
.section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(35px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.038em;
}
.section-title p { margin: 0; color: var(--muted); font-size: 19px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(212,170,62,.56); }
.icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(212,170,62,.16);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.icon svg { width: 29px; height: 29px; stroke: currentColor; fill: none; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.15; }
.card p { margin: 0 0 18px; color: var(--muted); }
.card a { color: var(--navy); font-weight: 900; }

.consulting {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}
.consulting-panel {
  background: linear-gradient(135deg, var(--navy), #102f50);
  color: white;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.consulting-panel h2 { margin: 0 0 14px; font-size: 42px; line-height: 1.04; letter-spacing: -.035em; }
.consulting-panel p { color: #e6edf4; margin: 0; }
.compare-grid { display: grid; gap: 18px; }
.compare-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--soft);
}
.compare-card strong { display: block; font-size: 20px; margin-bottom: 6px; }
.compare-card span { color: var(--muted); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: start; }
.panel {
  background: radial-gradient(circle at 86% 12%, rgba(212,170,62,.19), transparent 26%), var(--navy);
  color: white;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.panel h2 { margin: 0 0 16px; font-size: 40px; line-height: 1.04; letter-spacing: -.035em; }
.panel p { color: #e3eaf2; margin: 0 0 24px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.stat {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  padding: 16px;
  background: rgba(255,255,255,.07);
}
.stat strong { display: block; font-size: 25px; line-height: 1; color: var(--gold2); }
.stat span { color: #dce6ef; font-size: 13px; }
.feature-list { display: grid; gap: 17px; }
.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 21px;
  padding: 23px;
  box-shadow: 0 8px 22px rgba(6,26,49,.06);
}
.feature strong { display: block; font-size: 19px; margin-bottom: 5px; }
.feature span { color: var(--muted); }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 29px;
  box-shadow: var(--soft);
}
.step-number {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--navy);
  color: var(--gold2);
  display: grid; place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}
.step h3 { margin: 0 0 9px; font-size: 22px; }
.step p { margin: 0; color: var(--muted); }

.cta-band {
  background: radial-gradient(circle at 88% 24%, rgba(212,170,62,.23), transparent 30%), linear-gradient(135deg, var(--navy), #123f70);
  color: white;
  border-radius: 30px;
  padding: 50px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}
.cta-band h2 { margin: 0 0 9px; font-size: 40px; line-height: 1.04; letter-spacing: -.035em; }
.cta-band p { margin: 0; color: #e7edf4; }

.page-hero {
  background: radial-gradient(circle at 86% 20%, rgba(212,170,62,.22), transparent 26%), linear-gradient(135deg, var(--navy), #123f70);
  color: white;
  padding: 90px 0;
}
.page-hero h1 { font-size: clamp(42px, 5vw, 66px); }
.page-hero p { color: #e7edf4; font-size: 20px; max-width: 780px; }

.content {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px;
  box-shadow: var(--soft);
}
.content h2 { margin-top: 0; font-size: 32px; letter-spacing: -.02em; }
.content p { color: var(--muted); }

.contact-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.form { display: grid; gap: 14px; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  background: #fffdfa;
}
.form textarea { min-height: 150px; resize: vertical; }
.form button { cursor: pointer; border: 0; }

.site-footer { background: #04172b; color: #dbe3ec; padding: 42px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; font-size: 14px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: white; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header-inner { min-height: 94px; }
  .logo { width: 235px; max-width: 58vw; }
  .mobile-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 94px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 22px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav .cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .hero { padding: 74px 0; }
  .hero-grid, .split, .contact-box, .consulting { grid-template-columns: 1fr; }
  .cards, .process, .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .cta-band, .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 30px, 1160px); }
  .header-inner { min-height: 88px; }
  .logo { width: 205px; max-width: 62vw; }
  .nav { top: 88px; }
  h1 { font-size: 43px; }
  .hero p { font-size: 18px; }
  .hero-card, .panel, .content, .cta-band, .consulting-panel { padding: 25px; border-radius: 21px; }
  .section { padding: 64px 0; }
  .stat-row { grid-template-columns: 1fr; }
}


/* ===== Version 5 enhancements ===== */
.sample-grid,.industry-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:24px;margin-top:30px}
.sample-card,.industry-card{
background:#fff;border:1px solid #ded4c3;border-radius:22px;
padding:28px;box-shadow:0 12px 28px rgba(6,26,49,.08);
transition:.2s}
.sample-card:hover,.industry-card:hover{
transform:translateY(-4px)}
.badge{
display:inline-block;padding:6px 10px;border-radius:999px;
background:#d4aa3e22;color:#061a31;font-weight:700;font-size:12px}

.logo{width:340px!important;max-width:42vw;height:auto;}
@media(max-width:560px){.logo{width:230px!important;max-width:68vw;}}


/* ===== Version 9 polish ===== */
.credential-placeholder{
  height:150px;
  border:2px dashed #d4aa3e;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:18px 0;
  background:#faf8f3;
  color:#061a31;
  font-weight:800;
  text-align:center;
  padding:20px;
}
.nav a[aria-current="page"]{ color:#ffffff; }
.footer-links a{ white-space:nowrap; }
.content a{
  color:#061a31;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}
.logo{
  width:320px!important;
  max-width:38vw!important;
}
.header-inner{ gap:42px; }
@media(max-width:980px){
  .logo{width:230px!important;max-width:62vw!important;}
}
@media(max-width:560px){
  .logo{width:210px!important;max-width:68vw!important;}
}

/* ===== Version 10 messaging polish ===== */
.discount-section{
  background: var(--paper);
}
.discount-card{
  background: radial-gradient(circle at 88% 18%, rgba(240,207,104,.28), transparent 32%), linear-gradient(135deg, var(--navy), #123f70);
  color:#fff;
  border-radius:30px;
  padding:46px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.discount-card h2{
  margin:12px 0 12px;
  font-size:clamp(34px,4vw,52px);
  line-height:1.05;
  letter-spacing:-.038em;
}
.discount-card p{
  color:#e7edf4;
  max-width:820px;
  margin:0;
  font-size:19px;
}
.placeholder-box{
  height:220px;
  border:2px dashed var(--gold);
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:18px 0;
  background:#faf8f3;
  color:var(--navy);
  font-weight:900;
  text-align:center;
  padding:18px;
}
.form-panel{
  background:linear-gradient(135deg,#ffffff,#fbf8f1);
}
.light-list li{
  color:var(--ink);
  border-top:1px solid var(--line);
}
.light-list li:before{
  color:var(--navy);
}
.form-note{
  font-size:14px;
  margin-top:18px;
}
@media(max-width:980px){
  .discount-card{flex-direction:column;align-items:flex-start;}
}

/* ===== Version 11 cleanup pass ===== */
.hero{padding:84px 0 78px;}
.hero-grid{gap:48px;}
.hero p{margin-bottom:28px;}
.hero-card{padding:30px 32px;border-radius:26px;align-self:center;}
.hero-card h2{font-size:27px;margin-bottom:14px;}
.check-list li{padding:10px 0 10px 34px;}
.section{padding:76px 0;}
.section-title{margin-bottom:34px;}
.cards{gap:22px;}
.card{padding:28px;}
.icon{margin-bottom:16px;}
.consulting-panel,.panel{padding:36px;}
.compare-card,.feature,.step{padding:21px;}
.cta-band{padding:42px 40px;}
.content{padding:34px;}
.trust-item{padding:21px 24px;}
.next-section{border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.next-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;}
.next-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:24px;box-shadow:var(--soft);}
.next-card span{width:34px;height:34px;border-radius:999px;background:var(--navy);color:var(--gold2);display:grid;place-items:center;font-weight:900;margin-bottom:15px;}
.next-card strong{display:block;font-size:18px;line-height:1.18;margin-bottom:8px;}
.next-card p{margin:0;color:var(--muted);font-size:15px;}
.process-four{grid-template-columns:repeat(4,1fr);}
.discount-card{padding:38px 42px;}
.discount-highlight{font-size:clamp(56px,8vw,96px);line-height:.9;font-weight:900;letter-spacing:-.06em;color:var(--gold2);margin:14px 0 8px;text-shadow:0 16px 34px rgba(0,0,0,.18);}
.discount-card h2{font-size:clamp(30px,3.2vw,44px);margin:0 0 12px;}
.btn-secondary-priority{box-shadow:none;white-space:nowrap;}
.stat{padding:19px 17px;}
.stat strong{font-size:30px;}
.stat span{font-size:14px;}
.sample-card.preview-card{position:relative;overflow:hidden;}
.dashboard-preview{height:150px;border-radius:16px;margin:16px 0 20px;padding:16px;background:linear-gradient(135deg,rgba(6,26,49,.93),rgba(16,63,107,.88));border:1px solid rgba(212,170,62,.42);filter:saturate(.9);position:relative;display:grid;grid-template-columns:1fr 1fr;grid-template-rows:34px 1fr 1fr;gap:10px;}

.dashboard-preview i{grid-column:1/3;border-radius:10px;background:rgba(240,207,104,.78);}
.dashboard-preview b,.dashboard-preview em{display:block;border-radius:10px;background:rgba(255,255,255,.76);}
.dashboard-preview em{background:rgba(220,228,236,.42);}
.footer-links a[href="contact.html"]{color:#fff;}
@media(max-width:980px){
  .hero{padding:66px 0;}
  .section{padding:62px 0;}
  .next-grid,.process-four{grid-template-columns:1fr 1fr;}
}
@media(max-width:560px){
  .next-grid,.process-four{grid-template-columns:1fr;}
  .hero-card,.panel,.content,.cta-band,.consulting-panel{padding:24px;}
  .discount-card{padding:28px;}
  .discount-highlight{font-size:54px;}
}

/* ===== QuickBooks Cleanup service page ===== */
.service-page-hero{padding:78px 0 82px;}
.service-hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:48px;align-items:center;}
.service-page-hero h1{font-size:clamp(44px,5.5vw,70px);max-width:850px;}
.service-page-hero p{margin:0 0 30px;color:#e7edf4;font-size:20px;max-width:790px;}
.dark-eyebrow{color:var(--navy3);margin-bottom:10px;}
.cleanup-intro{align-items:stretch;}
.cleanup-intro .panel{height:100%;}
.cleanup-scope-grid .card p{margin-bottom:0;}
.scope-note{margin:26px 0 0;padding:20px 22px;border-left:5px solid var(--gold);background:rgba(255,255,255,.72);border-radius:0 16px 16px 0;color:var(--muted);}
.warning-grid{grid-template-columns:1fr 1fr;}
.warning-signs-layout{align-items:start;}
.faq-section{background:var(--paper);}
.faq-list{display:grid;gap:14px;max-width:950px;}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:18px;box-shadow:var(--soft);overflow:hidden;}
.faq-item summary{cursor:pointer;list-style:none;padding:22px 58px 22px 24px;font-weight:900;font-size:19px;position:relative;color:var(--ink);}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary:after{content:"+";position:absolute;right:23px;top:50%;transform:translateY(-50%);width:30px;height:30px;border-radius:999px;background:rgba(212,170,62,.18);display:grid;place-items:center;color:var(--navy);font-size:22px;line-height:1;}
.faq-item[open] summary:after{content:"−";}
.faq-item div{padding:0 24px 22px;border-top:1px solid var(--line);}
.faq-item p{margin:18px 0 0;color:var(--muted);}
@media(max-width:980px){
  .service-page-hero{padding:64px 0;}
  .service-hero-grid{grid-template-columns:1fr;}
  .warning-grid{grid-template-columns:1fr;}
}
@media(max-width:560px){
  .service-page-hero h1{font-size:42px;}
  .service-page-hero p{font-size:18px;}
  .faq-item summary{padding:19px 52px 19px 19px;font-size:17px;}
  .faq-item summary:after{right:17px;}
  .faq-item div{padding:0 19px 19px;}
}


/* ===== Version 12.2 credential section correction ===== */
.credential-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.credential-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:32px;
  box-shadow:var(--soft);
}
.credential-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  background:rgba(212,170,62,.16);
  color:var(--navy);
}
.credential-icon svg{
  width:32px;
  height:32px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.credential-card .badge{margin-bottom:15px;}
.credential-card h3{margin:0 0 12px;font-size:25px;line-height:1.18;}
.credential-card p{margin:0;color:var(--muted);font-size:17px;}
@media(max-width:760px){
  .credential-grid{grid-template-columns:1fr;}
  .credential-card{padding:26px;}
}

/* ===== Contact form (v15) ===== */
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}
.form-row .req { color: #b4472f; font-weight: 900; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #fffdfa;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23526173' d='M1.4 0 7 5.6 12.6 0 14 1.4 7 8.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--navy3);
  box-shadow: 0 0 0 3px rgba(16, 63, 107, .13);
}
.form textarea { min-height: 110px; }
.form button { margin-top: 6px; width: 100%; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ===== Hero card lead + v15 copy pass ===== */
.hero-card-lead {
  color: #e7edf4;
  font-size: 15px;
  margin: 0 0 18px;
}

/* ===== Credibility badge row (v15) ===== */
.badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.badge-item {
  padding: 20px 22px 20px 46px;
  position: relative;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.badge-item:before {
  content: "\2713";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 900;
  font-size: 17px;
}
.badge-item:last-child { border-right: 0; }
@media (max-width: 980px) {
  .badge-row { grid-template-columns: repeat(2, 1fr); }
  .badge-item { border-bottom: 1px solid var(--line); }
  .badge-item:nth-child(2n) { border-right: 0; }
  .badge-item:last-child { border-right: 0; }
}
@media (max-width: 560px) {
  .badge-row { grid-template-columns: 1fr; }
  .badge-item { border-right: 0; padding: 16px 18px 16px 44px; font-size: 14px; }
  .badge-item:last-child { border-bottom: 0; }
}

/* ===== v17 accessibility pass ===== */

/* Prevent horizontal scroll on mobile (clip preserves sticky header) */
html, body { overflow-x: clip; }

/* Visible keyboard focus indicators (>=3:1 contrast).
   Navy ring by default (for light surfaces); gold ring on dark surfaces. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 8px;
}
.site-header a:focus-visible,
.nav a:focus-visible,
.nav .cta:focus-visible,
.hero .btn:focus-visible,
.cta-band .btn:focus-visible,
.discount-card .btn:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Pressed + disabled button states */
.btn:active { transform: translateY(0); }
.btn-primary:active { box-shadow: 0 6px 14px rgba(212, 170, 62, .28); }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Respect reduced-motion: drop hover-lift + scroll reveal, keep a quick fade */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: opacity 150ms linear; transform: none; }
  .btn:hover,
  .card:hover,
  .nav a:hover,
  .sample-card:hover,
  .industry-card:hover { transform: none; }
}
