/* ============================================================
   Hendry Interiors Ltd — Shared Stylesheet
   Brand: lime #8DC63F | navy #1A2235 | Inter + Poppins
   ============================================================ */

/* ── RESET + VARIABLES ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: clip; line-height: 1.6; }

:root {
  --lime:    #8DC63F;
  --lime-dk: #74A832;
  --lime-lt: #A5D95C;
  --dark:    #111111;
  --navy:    #1A2235;
  --mid:     #2E3A50;
  --white:   #FFFFFF;
  --off:     #F6F7F9;
  --off2:    #EDF0F4;
  --text:    #2C2C2C;
  --muted:   #6B7280;
  --border:  #E2E6ED;
  --top-h:   40px;
  --nav-h:   76px;
  --radius:  8px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.rv       { opacity: 0; transform: translateY(32px);   transition: opacity 0.75s ease, transform 0.75s ease; }
.rv-left  { opacity: 0; transform: translateX(-56px);  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.rv-right { opacity: 0; transform: translateX(56px);   transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.rv-scale { opacity: 0; transform: scale(0.88);        transition: opacity 0.65s cubic-bezier(0.34,1.56,0.64,1), transform 0.65s cubic-bezier(0.34,1.56,0.64,1); }
.rv.on, .rv-left.on, .rv-right.on, .rv-scale.on { opacity: 1; transform: none; }
.rv.d1,.rv-left.d1,.rv-right.d1,.rv-scale.d1 { transition-delay: .10s }
.rv.d2,.rv-left.d2,.rv-right.d2,.rv-scale.d2 { transition-delay: .20s }
.rv.d3,.rv-left.d3,.rv-right.d3,.rv-scale.d3 { transition-delay: .30s }
.rv.d4,.rv-left.d4,.rv-right.d4,.rv-scale.d4 { transition-delay: .40s }
.rv.d5,.rv-left.d5,.rv-right.d5,.rv-scale.d5 { transition-delay: .50s }
.rv.d6,.rv-left.d6,.rv-right.d6,.rv-scale.d6 { transition-delay: .60s }

/* ── TOP BAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,0.8);
  height: var(--top-h); display: flex; align-items: center;
  font-size: 0.78rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; }
.tb-left  { display: flex; align-items: center; gap: 24px; }
.tb-item  { display: flex; align-items: center; gap: 7px; }
.tb-item i { color: var(--lime); font-size: 0.72rem; }
.tb-item a { color: inherit; }
.tb-right { display: flex; align-items: center; gap: 16px; }
.tb-right a { color: rgba(255,255,255,0.7); font-size: 0.82rem; transition: color 0.2s; }
.tb-right a:hover { color: var(--lime); }
.tb-social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.12); font-size: 0.78rem;
  transition: background 0.2s, color 0.2s; margin-left: 6px;
}
.tb-social:hover { background: var(--lime) !important; color: #fff !important; }

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.shadow { box-shadow: 0 4px 24px rgba(0,0,0,0.10); border-bottom-color: transparent; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo  { display: flex; align-items: center; gap: 12px; }
.nav-logo-box {
  width: 64px; height: 64px; background: #1A2235; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0; padding: 5px;
  box-shadow: 0 0 16px rgba(141,198,63,0.45), 0 0 32px rgba(141,198,63,0.2);
}
.nav-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-name { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 800; color: var(--dark); line-height: 1.1; letter-spacing: 0.01em; }
.nav-logo-name span { color: var(--lime); }
.nav-logo-sub  { font-size: 0.6rem; font-weight: 500; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 0.83rem; font-weight: 600; color: var(--muted); padding: 8px 13px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--dark); background: var(--off); }
.nav-links a.nav-active { color: var(--lime); background: rgba(141,198,63,0.08); }
.nav-cta {
  background: var(--lime) !important; color: #000 !important; font-weight: 700 !important;
  padding: 9px 20px !important; border-radius: 6px !important;
  border: 2px solid var(--lime) !important; transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--lime-dk) !important; border-color: var(--lime-dk) !important; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--dark) !important; }
.nav-phone i { color: var(--lime); }

.hbg { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hbg span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }
.hbg.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hbg.open span:nth-child(2) { opacity: 0; }
.hbg.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob { display: none; position: fixed; inset: 0; z-index: 999; background: var(--white); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: calc(var(--nav-h) + 32px) 40px 40px; gap: 6px; overflow-y: auto; }
.mob.open { display: flex; }
.mob a { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--dark); padding: 8px 0; border-bottom: 2px solid transparent; transition: border-color 0.2s, color 0.2s; }
.mob a:hover, .mob a.nav-active { color: var(--lime); border-bottom-color: var(--lime); }
.mob-phone { font-size: 1rem; color: var(--muted); margin-top: 28px; }
.mob-phone span { color: var(--lime); font-weight: 700; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-lime {
  background: var(--lime); color: #000; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; padding: 14px 32px; border-radius: var(--radius);
  border: 2px solid var(--lime); transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
}
.btn-lime:hover { background: var(--lime-dk); border-color: var(--lime-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(141,198,63,0.3); }

.btn-outline {
  background: transparent; color: var(--lime); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; padding: 13px 32px; border-radius: var(--radius);
  border: 2px solid var(--lime); transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
}
.btn-outline:hover { background: var(--lime); color: #000; transform: translateY(-2px); }

.btn-white {
  background: transparent; color: var(--white); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; padding: 14px 32px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4); transition: all 0.25s;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer;
}
.btn-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-dark {
  background: var(--navy); color: var(--white); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; padding: 14px 32px; border-radius: var(--radius);
  border: 2px solid var(--navy); transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
}
.btn-dark:hover { background: var(--mid); border-color: var(--mid); transform: translateY(-2px); }

/* ── SECTION COMMON ────────────────────────────────────────── */
.sec-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.sec-eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--lime); border-radius: 2px; }
.sec-eyebrow.light { color: rgba(141,198,63,0.9); }
.sec-eyebrow.light::before { background: rgba(141,198,63,0.9); }

.sec-h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.sec-h2 span { color: var(--lime); }
.sec-h2.light { color: var(--white); }
.sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 580px; }
.sec-sub.light { color: rgba(255,255,255,0.65); }

.sec-header { margin-bottom: 56px; }
.sec-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; }

/* ── INNER PAGE BANNER ─────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, #111827 0%, #1e2d45 50%, #0f1a2e 100%);
  padding: 80px 0 72px; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(141,198,63,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(141,198,63,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--lime), transparent);
}
.page-banner .container { position: relative; z-index: 2; }
nav.pb-breadcrumb {
  position: static; z-index: auto; background: transparent;
  height: auto; border-bottom: none; transition: none;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}
.pb-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(141,198,63,0.85); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.pb-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--lime); }
.pb-h1 { font-family: 'Poppins', sans-serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em; }
.pb-h1 span { color: var(--lime); }
.pb-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; margin-bottom: 28px; }
.pb-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.pb-breadcrumb a:hover { color: var(--lime); }
.pb-breadcrumb i { font-size: 0.55rem; }

/* ── STATS BAR ─────────────────────────────────────────────── */
#stats-bar { background: var(--lime); }
.stats-inner { display: grid; grid-template-columns: repeat(3,1fr); max-width: 1180px; margin: 0 auto; padding: 0; }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(0,0,0,0.1); }
.stat-item:first-child { border-left: 1px solid rgba(0,0,0,0.1); }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2.8rem; font-weight: 900; color: #000; line-height: 1; display: block; }
.stat-lbl { font-size: 0.67rem; font-weight: 700; color: rgba(0,0,0,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; display: block; }

/* ── CTA BANNER ────────────────────────────────────────────── */
#cta-banner {
  background: var(--navy); padding: 90px 0;
  position: relative; overflow: hidden;
}
#cta-banner::before {
  content: 'HENDRY'; position: absolute;
  right: 80px; top: 75%; transform: translateY(-50%);
  font-family: 'Poppins', sans-serif; font-size: 10rem; font-weight: 900;
  color: rgba(255,255,255,0.025); letter-spacing: 0.08em;
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.ctab-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.ctab-text .sec-eyebrow { color: rgba(141,198,63,0.85); }
.ctab-text .sec-eyebrow::before { background: rgba(141,198,63,0.85); }
.cta-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--white); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-title span { color: var(--lime); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; line-height: 1.7; }
.ctab-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── LOAD MORE ─────────────────────────────────────────────── */
.load-more-wrap { text-align: center; margin-top: 40px; }
.btn-load-more {
  background: var(--off); color: var(--dark); font-weight: 700; font-size: 0.85rem;
  padding: 13px 28px; border-radius: 50px; border: 2px solid var(--border);
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s; cursor: pointer;
}
.btn-load-more:hover { background: var(--lime); color: #000; border-color: var(--lime); transform: translateY(-1px); }
.lm-badge { background: var(--lime); color: #000; font-size: 0.72rem; font-weight: 800; padding: 2px 8px; border-radius: 50px; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: linear-gradient(175deg, #0e1725 0%, #0a1018 100%);
  color: rgba(255,255,255,0.55);
  padding: 0;
  position: relative;
}
footer > .container { padding-top: 80px; }
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--lime) 30%, var(--lime-dk) 70%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.35fr;
  gap: 56px;
  padding-bottom: 64px;
}
/* logo column */
.foot-logo-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.foot-logo-box {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(141,198,63,0.25);
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(141,198,63,0.12), inset 0 0 0 1px rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0; padding: 6px;
}
.foot-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.foot-logo-name { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 900; color: var(--white); letter-spacing: 0.02em; line-height: 1.25; }
.foot-logo-name span { color: var(--lime); }
.foot-logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.foot-tag { font-size: 0.86rem; line-height: 1.82; margin-bottom: 28px; color: rgba(255,255,255,0.42); max-width: 340px; }
/* trust badges */
.foot-trust { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.ft-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 7px 12px;
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.ft-badge i { color: var(--lime); font-size: 0.72rem; }
/* social icons */
.foot-soc { display: flex; gap: 10px; }
.fsoc {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: all 0.25s; color: rgba(255,255,255,0.45);
}
.fsoc:hover { background: var(--lime); border-color: var(--lime); color: #000; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(141,198,63,0.35); }
/* column headings */
.foot-h {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative;
}
.foot-h::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}
/* links */
.foot-links { display: flex; flex-direction: column; gap: 2px; }
.foot-links a {
  font-size: 0.86rem; color: rgba(255,255,255,0.48);
  transition: all 0.22s;
  display: flex; align-items: center; gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.foot-links a:last-child { border-bottom: none; }
.foot-links a:hover { color: var(--lime); padding-left: 5px; }
.foot-links a i { font-size: 0.58rem; color: var(--lime); opacity: 0.8; transition: transform 0.22s; }
.foot-links a:hover i { transform: translateX(3px); opacity: 1; }
/* contact items */
.fci {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.87rem; color: rgba(255,255,255,0.52);
  margin-bottom: 14px;
}
.fci:last-child { margin-bottom: 0; }
.fci-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(141,198,63,0.1);
  border: 1px solid rgba(141,198,63,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.fci-icon i { color: var(--lime); font-size: 0.82rem; }
.fci a { color: rgba(255,255,255,0.52); transition: color 0.2s; }
.fci a:hover { color: var(--lime); }
/* bottom bar */
.foot-bottom-wrap { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); }
.foot-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.76rem; color: rgba(255,255,255,0.25);
  padding-right: 90px;
}
.foot-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.foot-bottom a:hover { color: var(--lime); }
.foot-bottom-links { display: flex; gap: 24px; }
.foot-bottom-links a { position: relative; padding-bottom: 1px; }
.foot-bottom-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--lime); transition:width 0.2s; }
.foot-bottom-links a:hover::after { width:100%; }

/* ── JDWEBDESIGNS CREDIT ───────────────────────────────────── */
.jd-credit { text-decoration: none; color: inherit; transition: opacity 0.2s; }
.jd-credit:hover { opacity: 0.85; }
.jd-credit .jd::before {
  content: 'JD';
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 50%, #a855f7 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 800;
}
.jd-credit .jd::after {
  content: 'WebDesigns\2122';
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 50%, #22d3ee 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #fff; z-index: 9999;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 36px rgba(37,211,102,0.65); }
.wa-float::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { width: 52px; height: 52px; font-size: 1.6rem; bottom: 28px; right: 20px; }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 48px; }
}
@media (max-width: 900px) {
  .nav-links, .topbar .tb-right { display: none; }
  .hbg { display: flex; }
  .sec-header-row { flex-direction: column; align-items: flex-start; }
  .ctab-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-logo-box { width: 50px; height: 50px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .rv-left, .rv-right { transform: translateY(32px); }
  .rv-left.on, .rv-right.on { transform: none; }
  .stats-inner { grid-template-columns: repeat(3,1fr); }
  .stat-item { padding: 24px 8px; }
  .stat-num { font-size: 1.9rem; }
  .stat-lbl { font-size: 0.58rem; letter-spacing: 0.06em; }
  .stat-item:last-child { border-right: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-lime, .btn-outline, .btn-white, .btn-dark { padding: 12px 22px; font-size: 0.85rem; }
  .ctab-btns { flex-direction: column; width: 100%; }
  .ctab-btns .btn-lime, .ctab-btns .btn-white { justify-content: center; }
  .page-banner { padding: 56px 0 48px; }
  .pb-h1 { margin-bottom: 12px; }
  .pb-sub { font-size: 0.9rem; margin-bottom: 20px; }
  #cta-banner { padding: 64px 0; }
  #cta-banner::before { display: none; }
  .sec-header-row { gap: 16px; }
  .sec-header-row .btn-outline { display: none; }
  .stat-item { padding: 20px 4px; }
  .stat-num { font-size: 1.6rem; }
  .stat-lbl { font-size: 0.54rem; }
}
