/* =============================================
   KL CPA FIRM — Complete Redesign
   Typeface: DM Sans + DM Serif Display
   Palette: Deep Navy #0B1F3A, Gold #C8922A,
            Warm White #FAF9F7, Ink #1C2B3A
   ============================================= */

:root {
  --navy:    #0B1F3A;
  --navy-2:  #162d52;
  --gold:    #C8922A;
  --gold-lt: #e8b84b;
  --ink:     #1C2B3A;
  --gray:    #5a6a7a;
  --gray-lt: #8a9aaa;
  --warm-bg: #FAF9F7;
  --border:  #E4E2DE;
  --white:   #ffffff;
  --ff-sans: 'DM Sans', system-ui, sans-serif;
  --ff-disp: 'DM Serif Display', Georgia, serif;
  --sh1: 0 1px 4px rgba(0,0,0,.06);
  --sh2: 0 4px 20px rgba(0,0,0,.09);
  --sh3: 0 12px 48px rgba(0,0,0,.12);
  --r:   8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-sans); color: var(--ink); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.overline { font-size: 11.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--r); font-weight: 600; font-size: 14.5px; font-family: var(--ff-sans); transition: all .2s; cursor: pointer; border: 2px solid transparent; line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: #b07e20; border-color: #b07e20; }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid rgba(11,31,58,.2); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-ghost svg { width: 16px; height: 16px; }
.btn-outline-dark { background: transparent; color: var(--ink); border: 2px solid var(--border); font-size: 14px; }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--warm-bg); }
.btn-full { width: 100%; justify-content: center; }

/* ---- HEADER ---- */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .25s;
}
header.scrolled { box-shadow: var(--sh2); }
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 32px; height: 70px;
}
.logo-link { flex-shrink: 0; }
.logo-link img { height: 46px; width: auto; }

/* Nav */
nav { flex: 1; }
nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li { position: relative; }
nav ul li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 13px; font-size: 14px; font-weight: 500;
  color: var(--ink); border-radius: 6px;
  transition: color .18s, background .18s;
}
nav ul li > a svg { width: 10px; height: 10px; opacity: .5; transition: transform .2s; }
nav ul li > a:hover { color: var(--navy); background: var(--warm-bg); }
nav ul li.active > a { color: var(--gold); font-weight: 600; }
.drop {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--sh3); min-width: 210px; overflow: hidden; z-index: 500;
}
.drop li a { padding: 12px 18px; font-size: 14px; display: block; border-bottom: 1px solid var(--border); color: var(--ink); transition: background .15s; }
.drop li:last-child a { border-bottom: none; }
.drop li a:hover { background: var(--warm-bg); color: var(--gold); }
/* dropdown opened by JS (.drop-open) OR css hover on desktop */
.has-drop:hover .drop,
.has-drop.drop-open .drop { display: block; }
.has-drop:hover > a svg,
.has-drop.drop-open > a svg { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hdr-phone { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--navy); transition: color .2s; }
.hdr-phone svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.hdr-phone:hover { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .28s, opacity .28s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero { background: var(--navy); overflow: hidden; }
.hero-inner {
  max-width: 1120px; margin: 0 auto; padding: 80px 32px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-kicker { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-text h1 {
  font-family: var(--ff-disp); font-size: clamp(36px, 4.5vw, 58px);
  color: #fff; line-height: 1.1; margin-bottom: 22px; font-weight: 400;
}
.hero-text h1 em { font-style: italic; color: var(--gold-lt); }
.hero-text > p { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.72; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stat panels grid */
.hero-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .2s;
}
.stat-card:hover { background: rgba(255,255,255,.1); }
.stat-num { font-family: var(--ff-disp); font-size: 40px; color: #fff; line-height: 1; }
.stat-num sup { font-size: 22px; }
.stat-label { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.4; }
.accent-card { background: var(--gold); border-color: var(--gold);  flex-direction: row; align-items: center; gap: 16px; padding: 20px 22px; }
.accent-card svg { width: 28px; height: 28px; color: #fff; flex-shrink: 0; }
.accent-card span { font-size: 14.5px; font-weight: 600; color: #fff; line-height: 1.35; }

/* Hero image strip — flush, no gap */
.hero-img-strip { height: 280px; overflow: hidden; position: relative; display: block; font-size: 0; line-height: 0; margin: 0; padding: 0; }
.hero-img-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: brightness(.65); display: block; }

/* Rating bar */
.rating-bar { display: flex; align-items: center; gap: 32px; margin-top: 48px; padding: 24px 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); }
.rb-score { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.rb-num { font-family: var(--ff-disp); font-size: 40px; color: var(--ink); line-height: 1; }
.rb-stars { font-size: 20px; color: var(--gold); letter-spacing: 2px; }
.rb-label { font-size: 12px; color: var(--gray); }
.rb-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.rb-platforms { font-size: 13px; color: var(--gray-lt); }

/* ---- SERVICES STRIP ---- */
.services-strip { background: var(--warm-bg); border-bottom: 1px solid var(--border); padding: 0 0 0; }
.services-strip .container { display: flex; align-items: stretch; gap: 0; }
.strip-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-lt); writing-mode: vertical-rl; transform: rotate(180deg); padding: 28px 20px 28px 0; border-right: 1px solid var(--border); flex-shrink: 0; }
.strip-items { display: grid; grid-template-columns: repeat(4, 1fr); flex: 1; }
.strip-item { display: flex; align-items: center; gap: 14px; padding: 22px 20px; border-right: 1px solid var(--border); text-decoration: none; transition: background .18s; position: relative; }
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: #fff; }
.strip-item:hover .strip-arrow { color: var(--gold); transform: translateX(3px); }
.strip-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.strip-item h3 { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.strip-item p { font-size: 12px; color: var(--gray); line-height: 1.4; }
.strip-arrow { margin-left: auto; font-size: 16px; color: var(--gray-lt); flex-shrink: 0; transition: color .18s, transform .2s; }

/* ---- INTRO SECTION ---- */
.intro-section { padding: 96px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-img-col { position: relative; }
.intro-img-col img { border-radius: var(--r); width: 100%; height: 480px; object-fit: cover; box-shadow: var(--sh3); }
.intro-img-tag {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: #fff; border-radius: var(--r);
  padding: 18px 22px; box-shadow: var(--sh2);
}
.intro-img-tag strong { display: block; font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 3px; }
.intro-img-tag span { font-size: 12px; color: rgba(255,255,255,.6); }
.intro-text-col h2 { font-family: var(--ff-disp); font-size: clamp(28px, 3vw, 40px); line-height: 1.2; color: var(--ink); margin-bottom: 18px; font-weight: 400; }
.intro-text-col > p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.intro-features { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.if-row { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink); }
.if-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---- PROCESS SECTION ---- */
.process-section { background: var(--navy); padding: 96px 0; }
.process-head { text-align: center; margin-bottom: 60px; }
.process-head .overline { color: var(--gold); }
.process-head h2 { font-family: var(--ff-disp); font-size: clamp(26px, 3vw, 38px); color: #fff; font-weight: 400; max-width: 520px; margin: 0 auto; line-height: 1.25; }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding: 32px 28px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); }
.step-num { font-family: var(--ff-disp); font-size: 48px; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.7; }
.step-arrow { display: flex; align-items: center; padding: 0 16px; margin-top: -16px; flex-shrink: 0;    OPACITY: 0; }
.step-arrow svg { width: 32px; height: 16px; color: rgba(255,255,255,.25); }

/* ---- REVIEWS ---- */
.reviews-section { padding: 96px 0; background: var(--warm-bg); }
.reviews-head { margin-bottom: 52px; }
.reviews-head h2 { font-family: var(--ff-disp); font-size: clamp(26px, 3vw, 38px); color: var(--ink); font-weight: 400; margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.review-col-right { display: flex; flex-direction: column; gap: 24px; }
.review-card { background: #fff; border-radius: var(--r); padding: 32px 28px; box-shadow: var(--sh1); border: 1px solid var(--border); }
.review-card--large { padding: 40px 36px; }
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.review-card blockquote { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.review-card--large blockquote { font-size: 17px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-author strong { display: block; font-size: 14px; color: var(--ink); }
.review-author span { font-size: 12px; color: var(--gray-lt); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--gold); padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band-text h2 { font-family: var(--ff-disp); font-size: clamp(22px, 2.8vw, 34px); color: #fff; font-weight: 400; margin-bottom: 6px; }
.cta-band-text p { font-size: 15px; color: rgba(255,255,255,.8); }
.cta-band-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.cta-phone-link { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: #fff; }
.cta-phone-link svg { width: 18px; height: 18px; }
.cta-phone-link:hover { text-decoration: underline; }

/* ---- CONTACT SECTION ---- */
.contact-section { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-left h2 { font-family: var(--ff-disp); font-size: clamp(26px, 3vw, 36px); color: var(--ink); font-weight: 400; margin-bottom: 10px; }
.contact-left > p { font-size: 15px; color: var(--gray); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.cd-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gray); }
.cd-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.cd-item a { color: var(--gray); transition: color .2s; }
.cd-item a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0; background: var(--warm-bg); border: 1px solid var(--border); border-radius: var(--r); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 6px; font-family: var(--ff-sans); font-size: 14px;
  color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0bac4; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,42,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-msg { padding: 12px 16px; border-radius: 6px; font-size: 13.5px; margin-bottom: 16px; display: none; }
.form-msg.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ---- FOOTER ---- */
footer { background: var(--navy); color: rgba(255,255,255,.5); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { height: 44px; filter: brightness(0) invert(1); opacity: .7; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 320px; }
.footer-address { margin-top: 12px; font-size: 12.5px; opacity: .5; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fl-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.fl-col ul li { margin-bottom: 10px; }
.fl-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .2s; }
.fl-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 12px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- INNER PAGE BANNER ---- */
.page-banner { background: var(--navy); padding: 80px 32px 72px; }
.page-banner .container { max-width: 720px; }
.page-banner h1 { font-family: var(--ff-disp); font-size: clamp(32px, 4vw, 52px); color: #fff; font-weight: 400; margin: 10px 0 16px; line-height: 1.15; }
.page-banner p { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-grid img { border-radius: var(--r); width: 100%; height: 460px; object-fit: cover; box-shadow: var(--sh3); }
.about-text h2 { font-family: var(--ff-disp); font-size: clamp(24px, 3vw, 36px); color: var(--ink); font-weight: 400; margin: 8px 0 16px; }
.about-text p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 14px; }
.values-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.vl-item { display: flex; gap: 16px; align-items: flex-start; }
.vl-icon { width: 36px; height: 36px; border-radius: 6px; background: rgba(200,146,42,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vl-icon svg { width: 18px; height: 18px; color: var(--gold); }
.vl-text h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.vl-text p { font-size: 13.5px; color: var(--gray); line-height: 1.6; }

/* ---- SERVICE DETAIL CARDS ---- */
.sc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.sc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; transition: box-shadow .2s, transform .2s; }
.sc-card:hover { box-shadow: var(--sh2); transform: translateY(-2px); }
.sc-card-icon { width: 44px; height: 44px; border-radius: 8px; background: rgba(200,146,42,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sc-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.sc-card h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.sc-card p { font-size: 13.5px; color: var(--gray); line-height: 1.65; }

/* Section utility */
.section { padding: 88px 0; }
.section.bg-warm { background: var(--warm-bg); }
.section-head { margin-bottom: 0; }
.section-head h2 { font-family: var(--ff-disp); font-size: clamp(26px, 3vw, 38px); color: var(--ink); font-weight: 400; margin: 6px 0 12px; line-height: 1.2; }
.section-head p { font-size: 15.5px; color: var(--gray); max-width: 540px; line-height: 1.65; }

/* ---- MOBILE STICKY BAR ---- */
.mob-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; border-top: 1px solid var(--border); padding: 10px 16px; gap: 10px; }
.mob-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--navy); color: #fff; border-radius: var(--r); padding: 13px; font-size: 14px; font-weight: 600; }
.mob-call svg { width: 17px; height: 17px; }
.mob-book { flex: 1; display: flex; align-items: center; justify-content: center; background: var(--gold); color: #fff; border-radius: var(--r); padding: 13px; font-size: 14px; font-weight: 600; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 64px 32px 48px; }
  .hero-panels { grid-template-columns: 1fr 1fr; max-width: 480px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-img-tag { right: 0; bottom: -16px; }
  .intro-img-col img { height: 360px; }
  .process-steps { flex-wrap: wrap; gap: 20px; }
  .step-arrow { display: none; }
  .step { flex: 1 1 45%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .sc-grid { grid-template-columns: 1fr 1fr; }
  .strip-items { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-cta { display: none; }
  .hamburger { display: flex; }
  nav {
    display: none; position: fixed; inset: 0; top: 70px;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    z-index: 999; padding: 24px 32px; overflow-y: auto;
  }
  nav.open { display: flex; flex-direction: column; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li > a { padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--border); border-radius: 0; }
  .drop { position: static; box-shadow: none; border: none; background: var(--warm-bg); border-radius: 6px; margin: 8px 0; }
  .drop li a { font-size: 15px; }
  .has-drop > a svg { display: none; }
  /* On mobile, always show the drop inside open nav */
  nav.open .has-drop .drop { display: block; }
  .hero-panels { max-width: 100%; }
  .services-strip .container { flex-direction: column; }
  .strip-label { display: none; }
  .strip-items { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .sc-grid { grid-template-columns: 1fr; }
  .mob-bar { display: flex; }
  body { padding-bottom: 68px; }
  .section { padding: 64px 0; }
  .contact-form { padding: 28px 20px; }
  .cta-band-actions { flex-direction: column; align-items: center; gap: 14px; }
  .process-steps { flex-direction: column; }
  .step { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-inner { padding: 48px 18px 36px; }
  .hero-text h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-panels { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 30px; }
}
