/* ============================================
   RIDGELINE STORM & ROOFING — Master Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2640;
  --accent: #d4a017;
  --accent-hover: #b8880f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #eef1f4;
  --mid-gray: #6b7b8d;
  --dark-gray: #2d3a47;
  --text: #1e2a36;
  --success: #2e7d32;
  --danger: #c62828;
  --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-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
  --bar-height: 36px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-height) + var(--header-height)); }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-dark);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 0.6em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.4em; font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: 0; }
p { margin-bottom: 1em; color: var(--dark-gray); }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark p { opacity: 0.9; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.section-header p { color: var(--mid-gray); font-size: 1.1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}
.btn-secondary:hover { background: var(--primary-dark); color: var(--white); }
.btn-danger {
  background: var(--danger);
  color: var(--white);
}
.btn-danger:hover { background: #a51d1d; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--primary-dark); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* --- Sticky Header --- */
.site-header {
  position: fixed;
  top: var(--bar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: all var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
}
.logo-text span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--mid-gray); letter-spacing: 1px; text-transform: uppercase; }

/* Nav — hidden by default, hamburger opens it */
.main-nav { display: none; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--primary-dark); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: none; }
.header-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--accent); }

/* Hamburger menu — always visible */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-dark);
  padding: 4px;
}

/* --- Hero Sections --- */
.hero {
  padding: calc(var(--bar-height) + var(--header-height) + 4px) 0 64px;
  background: linear-gradient(160deg, #081c30 0%, var(--primary-dark) 35%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 5.5vw, 4.2rem); max-width: 800px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 900; padding-bottom: 0.15em; margin-bottom: 0.1em; }
.hero h1::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin-top: 0.15em; border-radius: 2px; }
.hero h1 br { display: none; }
.hero p { color: rgba(255,255,255,0.88); font-size: 1.15rem; max-width: 620px; margin-bottom: 0.9em; line-height: 1.75; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.hero-badge i { color: var(--accent); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust .trust-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust .trust-item i { color: var(--accent); }

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--bar-height) + var(--header-height) + 48px) 0 64px;
  background: linear-gradient(160deg, #081c30 0%, var(--primary-dark) 35%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.3em; font-weight: 800; letter-spacing: -0.02em; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 620px; margin: 0 auto; line-height: 1.7; }

/* Split hero (About page) */
.page-hero--split { text-align: left; }
.page-hero--split p { margin: 0; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-split-text { position: relative; z-index: 1; }
.hero-split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-split-text { text-align: center; }
  .hero-split-text .breadcrumb { justify-content: center !important; }
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; }
.card p { font-size: 0.95rem; color: var(--mid-gray); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}
.card-link:hover { color: var(--accent); gap: 10px; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-gray);
  white-space: nowrap;
}
.trust-item i { color: var(--accent); font-size: 1.1rem; }

/* --- Stats --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat h3 {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.stat p { font-size: 0.9rem; margin: 0; }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; font-style: italic; color: var(--dark-gray); margin-bottom: 16px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--mid-gray); }

/* --- Before/After --- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.ba-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images div {
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 10px;
}
.ba-images div span {
  position: relative;
  z-index: 1;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
}
.ba-before { color: var(--white); }
.ba-before span { background: rgba(198,40,40,0.85); }
.ba-after { color: var(--white); }
.ba-after span { background: rgba(46,125,50,0.85); }
.ba-info { padding: 20px 24px; background: var(--white); }
.ba-info h3 { font-size: 1rem; margin-bottom: 4px; }
.ba-info p { font-size: 0.85rem; color: var(--mid-gray); margin: 0; }

/* --- FAQ Accordion --- */
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  font-family: inherit;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question i { transition: transform var(--transition); color: var(--accent); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { color: var(--mid-gray); font-size: 0.95rem; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(160deg, #081c30 0%, var(--primary-dark) 35%, var(--primary) 100%);
  padding: 72px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; font-weight: 800; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 620px; margin: 0 auto 36px; line-height: 1.7; }
.cta-banner .btn { margin: 0 8px; }

/* --- Emergency Bar --- */
.emergency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: var(--bar-height);
}
.emergency-bar i { color: var(--accent); }
.emergency-bar a { color: var(--accent); text-decoration: none; font-weight: 600; }
.emergency-bar a:hover { text-decoration: underline; }

/* --- Footer --- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Contact form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { color: var(--mid-gray); margin-bottom: 24px; }

/* --- Process Steps --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-dark);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'DM Sans', sans-serif;
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { font-size: 0.9rem; color: var(--mid-gray); }

/* --- Service area map placeholder --- */
.area-map {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--mid-gray);
  border: 2px dashed rgba(0,0,0,0.1);
}

/* --- Financing tiers --- */
.finance-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.finance-card.featured { border-color: var(--accent); position: relative; }
.finance-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.finance-card h3 { font-size: 1.3rem; }
.finance-rate {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 16px 0;
  font-family: 'DM Sans', sans-serif;
}
.finance-rate span { font-size: 1rem; font-weight: 400; color: var(--mid-gray); }
.finance-features { text-align: left; margin: 24px 0; }
.finance-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.finance-features li i { color: var(--success); }

/* --- Review cards --- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}
.review-stars { color: var(--accent); margin-bottom: 12px; }
.review-text { font-size: 1rem; font-style: italic; margin-bottom: 16px; }
.review-meta { display: flex; justify-content: space-between; align-items: center; }
.review-author { font-weight: 700; color: var(--primary-dark); }
.review-source { font-size: 0.8rem; color: var(--mid-gray); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hamburger dropdown */
.main-nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  gap: 4px;
  border-top: 1px solid var(--light-gray);
}
.main-nav.active a {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light-gray);
}
.main-nav.active a:last-child { border-bottom: none; }
.main-nav.active a:hover { color: var(--primary-dark); }

/* Phone + CTA visible inside hamburger */
.header-actions.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--light-gray);
}

@media (max-width: 768px) {
  
  .hero { padding: 120px 0 60px; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner .btn { display: block; margin: 8px auto; max-width: 300px; }
  .header-phone span { display: none; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; }
}
