/* ═══════════════════════════════════════════════
   BOB PADEN GROUP — Main Stylesheet
   Primary: #BD2428 | Secondary: #2e5fb4 | Tertiary: #333333
   Font: Nunito (Filson Pro substitute)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary:     #BD2428;
  --primary-dk:  #9a1d20;
  --primary-lt:  rgba(189,36,40,0.08);
  --primary-bd:  rgba(189,36,40,0.25);
  --secondary:   #2e5fb4;
  --secondary-lt:rgba(46,95,180,0.08);
  --secondary-bd:rgba(46,95,180,0.25);
  --tertiary:    #333333;
  --text:        #333333;
  --text-mid:    #555555;
  --text-light:  #777777;
  --bg:          #ffffff;
  --bg-alt:      #f7f7f5;
  --bg-dark:     #1a1a1a;
  --border:      #e2e2de;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --radius:      8px;
  --radius-lg:   14px;
  --max-w:       1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.2; color: var(--tertiary); }
h1 { font-size: clamp(2rem,4vw,3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem,2vw,1.5rem); }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; font-weight: 500; color: var(--text); line-height: 1.65; max-width: 640px; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h1,.section-dark h2,.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-red { background: var(--primary); }
.section-red h1,.section-red h2,.section-red h3 { color: var(--white); }
.section-red p { color: rgba(255,255,255,0.88); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.eyebrow-blue { color: var(--secondary); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
/* Primary buttons use the blue secondary brand color */
.btn-primary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-primary:hover { background: #244d96; border-color: #244d96; text-decoration: none; color: #fff; }
.btn-secondary { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary); color: #fff; text-decoration: none; }
.btn-white { background: #fff; color: var(--secondary); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; border-color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; text-decoration: none; color: #fff; }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 16px; }
.btn-arrow::after { content: '→'; margin-left: 4px; }

/* ── NAVIGATION ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 64px; width: auto; }
.nav-logo-text {
  font-size: 22px; font-weight: 900; color: var(--tertiary); letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--primary); }
.nav-menu {
  display: flex; align-items: center; gap: 0; list-style: none;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 16px; font-size: 15px; font-weight: 700;
  color: var(--tertiary); text-decoration: none;
  border-radius: var(--radius); transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary); text-decoration: none; }
.nav-link.active { color: var(--primary); }
.nav-link .chevron { font-size: 10px; margin-top: 1px; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 280px;
  padding: 8px 8px 8px;
  /* Invisible top padding creates a hover bridge so mouse can travel from link to menu */
  margin-top: 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s;
  transform: translateX(-50%);
}
/* Bridge: pseudo-element fills the gap between nav-link bottom and dropdown top */
.nav-item::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
  background: transparent; display: block;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.dropdown::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
  background: transparent;
}
.dropdown a {
  display: block; padding: 10px 16px; font-size: 16px; font-weight: 600;
  color: var(--tertiary); border-radius: var(--radius); transition: all 0.15s;
  text-decoration: none; line-height: 1.4;
}
.dropdown a:hover { background: var(--secondary-lt); color: var(--secondary); text-decoration: none; }
.dropdown-divider { height: 1px; background: var(--border); margin: 4px 8px; }

/* CTA in nav */
.nav-cta { margin-left: 16px; font-size: 15px !important; padding: 12px 26px !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--tertiary);
  margin: 5px 0; transition: all 0.3s; border-radius: 2px;
}
.mobile-menu { display: none; }

/* ── HERO ── */
.hero {
  background: #1a1a1a; padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero .lead { color: rgba(255,255,255,0.82); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,95,180,0.25); border: 1px solid rgba(46,95,180,0.5);
  border-radius: 100px; padding: 6px 18px;
  font-size: 12px; font-weight: 700; color: #90b4ff; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 28px;
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background-color: var(--bg-dark); padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--primary); z-index: 2;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.75); }
.page-hero .room-badge {
  display: inline-block; padding: 4px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-problem { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.badge-solution { background: rgba(46,95,180,0.15); color: #6ea3ff; border: 1px solid rgba(46,95,180,0.25); }

/* ── ARTICLE BODY ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; }
.article-wrap h2 { font-size: 1.5rem; margin: 2.2rem 0 0.8rem; color: var(--tertiary); }
.article-wrap p { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 1.2rem; line-height: 1.8; }
.article-wrap strong { color: var(--tertiary); font-weight: 700; }
.article-meta { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.article-meta span { font-size: 16px; color: var(--text-light); font-weight: 600; }

.seo-brief {
  background: var(--bg-alt); border: 1px solid var(--border); border-left: 4px solid var(--secondary);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 40px;
}
.seo-brief h4 { color: var(--secondary); font-size: 10px; letter-spacing: 0.2em; margin-bottom: 12px; }
.seo-brief table { font-size: 16px; width: 100%; border-collapse: collapse; }
.seo-brief td { padding: 4px 0; vertical-align: top; }
.seo-brief td:first-child { font-weight: 700; color: var(--tertiary); width: 160px; padding-right: 16px; }
.seo-brief td:last-child { color: var(--text-mid); }

.read-next {
  background: var(--primary-lt); border: 1px solid var(--primary-bd); border-radius: var(--radius-lg);
  padding: 28px 32px; margin: 48px 0 0;
}
.read-next p { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--primary); margin-bottom: 8px; }
.read-next a { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.read-next a:hover { text-decoration: underline; }

/* ── CARDS ── */
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { font-size: 36px; margin-bottom: 18px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 20px; }
.card-red { border-top: 3px solid var(--primary); }
.card-blue { border-top: 3px solid var(--secondary); }

/* Article card */
.article-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.article-card .room-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: 12px;
}
.room-tag-problem { background: rgba(239,68,68,0.1); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.room-tag-solution { background: rgba(46,95,180,0.1); color: var(--secondary); border: 1px solid rgba(46,95,180,0.2); }
.article-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.article-card p { font-size: 20px; flex: 1; }
.article-card-footer { padding: 16px 28px; border-top: 1px solid var(--border); }
.article-card-footer a { font-size: 16px; font-weight: 700; color: var(--primary); }

/* ── CALLOUTS ── */
.callout {
  border-radius: var(--radius-lg); padding: 28px 32px; margin: 36px 0; border-left: 4px solid;
}
.callout-red { background: var(--primary-lt); border-color: var(--primary); }
.callout-blue { background: var(--secondary-lt); border-color: var(--secondary); }
.callout-gray { background: var(--bg-alt); border-color: var(--border); border-left: none; }
.callout-label { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.callout-red .callout-label { color: var(--primary); }
.callout-blue .callout-label { color: var(--secondary); }
.callout p { font-size: 20px; color: var(--text-mid); margin: 0; }

/* ── STAT BAR ── */
.stat-bar { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-size: 3rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { font-size: 20px; font-weight: 600; color: var(--text-mid); margin-top: 6px; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr; gap: 24px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; flex-shrink: 0;
  margin-top: 4px;
}
.step-body h3 { margin-bottom: 8px; }
.step-body p { font-size: 20px; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
}
.testimonial::before {
  content: '"'; font-size: 80px; line-height: 1; color: var(--primary-lt);
  position: absolute; top: 16px; left: 24px; font-family: Georgia, serif;
}
.testimonial-text { font-size: 1.05rem; font-weight: 500; color: var(--text); margin-bottom: 20px; padding-top: 20px; font-style: italic; }
.testimonial-author { font-size: 16px; font-weight: 700; color: var(--text-light); }
.testimonial-author span { color: var(--primary); }

/* ── VALUE DRIVER GRID ── */
.driver-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; }
.driver-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-alt); border-radius: var(--radius); padding: 16px 20px;
  border: 1px solid var(--border);
}
.driver-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.driver-text h4 { font-size: 16px; font-weight: 700; text-transform: none; letter-spacing: 0; color: var(--tertiary); margin-bottom: 4px; }
.driver-text p { font-size: 12px; margin: 0; }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--text-mid);
}
.check-list li::before {
  content: '✓'; color: var(--primary); font-weight: 900; font-size: 16px;
  flex-shrink: 0; margin-top: 1px;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--secondary); color: #fff; border-radius: var(--radius-lg);
  padding: 56px 48px; text-align: center;
}
.cta-block h2 { color: #fff; margin-bottom: 14px; }
.cta-block p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 32px; }
.cta-block-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 16px; font-weight: 700; color: var(--tertiary); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Nunito', sans-serif; font-size: 15px; color: var(--text);
  background: #fff; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── INDUSTRY CARDS ── */
.industry-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; transition: all 0.2s;
}
.industry-card:hover { border-color: var(--primary); background: var(--primary-lt); }
.industry-icon { font-size: 40px; margin-bottom: 14px; }
.industry-card h3 { font-size: 1rem; margin-bottom: 8px; }
.industry-card p { font-size: 20px; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--tertiary); color: #fff; padding: 12px 16px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.data-table tr:hover td { background: var(--bg-alt); }

/* ── BREADCRUMB ── */
.breadcrumb { display: none; }

/* ── FOOTER ── */
.site-footer { background: var(--bg-dark); color: #fff; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 16px; }
.footer-bottom p { font-size: 16px; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 16px; }
.footer-bottom a:hover { color: #fff; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 20px; font-weight: 900; color: #fff; }
.footer-logo-text span { color: var(--primary); }

/* ── HERO BACKGROUND IMAGE SUPPORT ── */
.page-hero.has-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero.has-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.85);
  z-index: 0;
}
.page-hero.has-bg-img .container {
  position: relative;
  z-index: 1;
}
.hero.has-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.has-bg-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.85);
  z-index: 0;
}

/* ── BOB PADEN PHOTO ── */
.advisor-photo {
  width: 100%; max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  margin-bottom: 24px;
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.divider-red { height: 3px; background: var(--primary); width: 60px; margin: 20px 0 28px; }

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--secondary); color: #fff; padding: 14px 24px;
  display: flex; justify-content: center; align-items: center; gap: 24px;
  transform: translateY(100%); transition: transform 0.3s;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { margin: 0; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.9); }
.sticky-cta .btn { padding: 10px 24px; font-size: 14px; }

/* ── HIGHLIGHTS / ACCENT ── */
.text-red { color: var(--primary); }
.text-blue { color: var(--secondary); }
.text-muted { color: var(--text-light); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .driver-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .mobile-menu {
    display: none; position: fixed; inset: 80px 0 0 0;
    background: #fff; z-index: 999; overflow-y: auto;
    border-top: 1px solid var(--border);
    padding: 16px;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a {
    display: block; padding: 12px 16px; font-size: 15px; font-weight: 700;
    color: var(--tertiary); border-radius: var(--radius); border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:hover { color: var(--primary); background: var(--primary-lt); text-decoration: none; }
  .mobile-menu .mobile-section { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: var(--primary); padding: 20px 16px 8px; }
  .mobile-menu .mobile-cta { margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-block { padding: 40px 24px; }
  .hero { padding: 72px 0 56px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .stat-bar { justify-content: center; }
  .sticky-cta { flex-direction: column; gap: 12px; text-align: center; }
  .process-step { grid-template-columns: 1fr; }
  .step-num { width: 44px; height: 44px; font-size: 18px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}
