/* ── SoCal Contractor Pro — Premium Redesign ── */
:root {
  --dark:     #0F0E0B;
  --dark-2:   #161410;
  --dark-3:   #1E1B14;
  --dark-4:   #252119;
  --gold:     #C8952A;
  --gold-l:   #F5D98A;
  --gold-dim: rgba(200,149,42,0.15);
  --off-white:#FDFAF3;
  --text:     #C4BAA4;
  --muted:    #7A7060;
  --white:    #ffffff;
  --green:    #3B6D11;
  --red:      #8B1A1A;
  --radius:   10px;
  --shadow:   0 8px 40px rgba(0,0,0,0.55);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.15; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section--dark { background: var(--dark); }
.section--alt  { background: var(--dark-2); }

/* ── TYPOGRAPHY ── */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,149,42,0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
  margin-bottom: 1rem;
}
.section-hdr { margin-bottom: 3rem; }
.section-hdr h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.section-hdr p { font-size: 1rem; color: var(--muted); max-width: 540px; }
.text-center { text-align: center; }
.text-center .section-hdr p { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem; font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  cursor: pointer; border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #D4A030, #C8952A);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(200,149,42,0.35);
}
.btn-primary:hover { background: linear-gradient(135deg, #E0B040, #D4A030); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(200,149,42,0.45); }
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(200,149,42,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,149,42,0.06); }
.btn-lg { font-size: 1rem; padding: 0.9rem 2.2rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,14,11,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,149,42,0.12);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 0.1rem; margin-left: auto; }
.nav__links a {
  font-size: 0.84rem; font-weight: 500; color: var(--muted);
  padding: 0.4rem 0.6rem; border-radius: 5px;
  transition: color 0.2s; white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--off-white); }
.nav__cta { margin-left: 0.75rem; padding: 0.5rem 1rem; font-size: 0.83rem; white-space: nowrap; flex-shrink: 0; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; flex-shrink: 0; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--off-white); border-radius: 2px; transition: all 0.3s; }
.nav__mobile {
  display: none; flex-direction: column; gap: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(200,149,42,0.12);
  padding: 0.5rem 1.5rem 1.2rem;
}
.nav__mobile a { padding: 0.7rem 0; font-size: 0.95rem; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav__mobile a:last-child { border: none; }
.nav__mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(200,149,42,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(200,149,42,0.05) 0%, transparent 60%),
    var(--dark);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(200,149,42,0.03) 59px, rgba(200,149,42,0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(200,149,42,0.03) 59px, rgba(200,149,42,0.03) 60px);
}
.hero .container { position: relative; z-index: 1; display: block; }
.hero__content {}
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,149,42,0.1);
  border: 1px solid rgba(200,149,42,0.3);
  padding: 0.35rem 0.9rem; border-radius: 40px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.hero__title span { color: var(--gold); }
.hero__sub { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid rgba(200,149,42,0.2); border-radius: 8px;
  overflow: hidden; background: rgba(200,149,42,0.04);
}
.hero__stat {
  padding: 1rem 0.75rem; text-align: center;
  border-right: 1px solid rgba(200,149,42,0.15);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.hero__stat-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.04em; }
.hero__image {
  position: relative;
}
.hero__image img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,149,42,0.2);
  transform: perspective(1200px) rotateY(-4deg);
  transition: transform 0.5s ease;
}
.hero__image:hover img { transform: perspective(1200px) rotateY(-1deg); }
.hero__image::before {
  content: '';
  position: absolute; inset: -2px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,149,42,0.4), transparent 60%);
  z-index: -1;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark-3);
  border-top: 1px solid rgba(200,149,42,0.12);
  border-bottom: 1px solid rgba(200,149,42,0.12);
  padding: 1rem 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  padding: 0.5rem 1.25rem;
  border-right: 1px solid rgba(200,149,42,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item__icon { color: var(--gold); font-style: normal; font-weight: 700; }

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.feature-card:hover { border-color: rgba(200,149,42,0.35); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }
.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card__title { font-weight: 600; font-size: 1rem; color: var(--off-white); margin-bottom: 0.5rem; }
.feature-card__desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.feature-card__count {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold); text-transform: uppercase;
}

/* ── CSLB BANNER ── */
.cslb-banner {
  background: linear-gradient(135deg, rgba(200,149,42,0.08), rgba(200,149,42,0.03));
  border: 1px solid rgba(200,149,42,0.25);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start; flex-wrap: wrap;
  margin-top: 3rem;
}
.cslb-badge {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem; letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}
.cslb-text h3 { font-weight: 600; color: var(--off-white); margin-bottom: 0.3rem; font-size: 1rem; }
.cslb-text p  { font-size: 0.88rem; color: var(--muted); }

/* ── PRODUCT COVER SHOWCASE ── */
.cover-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.cover-showcase__img {
  position: relative;
}
.cover-showcase__img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65), 0 0 0 1px rgba(200,149,42,0.18);
}
.cover-showcase__img::after {
  content: '';
  position: absolute; bottom: -12px; left: 5%; right: 5%; height: 40px;
  background: radial-gradient(ellipse at center, rgba(200,149,42,0.3) 0%, transparent 70%);
  filter: blur(10px);
  z-index: -1;
}
.cover-showcase__body .label { margin-bottom: 0.75rem; }
.cover-showcase__body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cover-showcase__body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.file-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.file-pill {
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,149,42,0.1);
  border: 1px solid rgba(200,149,42,0.25);
  padding: 0.3rem 0.75rem; border-radius: 4px;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.testi-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem; color: rgba(200,149,42,0.1);
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testi-quote { font-size: 0.93rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.testi-author { font-size: 0.8rem; color: var(--muted); }
.testi-author strong { color: var(--off-white); font-weight: 600; }

/* ── PRICING ── */
.pricing-box {
  background: var(--dark-2);
  border: 1px solid rgba(200,149,42,0.3);
  border-radius: 14px;
  padding: 3rem;
  max-width: 560px;
  margin: 3rem auto 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.pricing-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-orig { font-size: 0.95rem; color: var(--muted); text-decoration: line-through; margin-bottom: 0.3rem; }
.pricing-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem; color: var(--off-white);
  line-height: 1; margin-bottom: 0.25rem;
}
.pricing-main sup { font-size: 2.2rem; vertical-align: super; color: var(--gold); }
.pricing-note { font-size: 0.84rem; color: var(--muted); margin-bottom: 2rem; }
.feature-list { text-align: left; margin-bottom: 2rem; }
.feature-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(200,149,42,0.07);
  font-size: 0.9rem; color: var(--text);
}
.feature-item:last-child { border-bottom: none; }
.feature-item .check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.guarantee { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(200,149,42,0.12);
  padding: 8rem 0 3.5rem;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--off-white); line-height: 1.05;
  margin-bottom: 0.75rem;
}
.page-hero p { font-size: 1rem; color: var(--muted); max-width: 540px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.4; }

/* ── FAQ ── */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(200,149,42,0.1); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-size: 0.97rem; font-weight: 500; color: var(--off-white);
  padding: 1.25rem 0; text-align: left; gap: 1rem;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 1.25rem; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  padding: 1rem 0;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info { background: var(--dark-2); border: 1px solid rgba(200,149,42,0.12); border-radius: var(--radius); padding: 2rem; }
.contact-info h3 { font-size: 1.05rem; font-weight: 600; color: var(--off-white); margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-detail__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.15rem; }
.contact-detail__val { font-size: 0.93rem; color: var(--text); }
.contact-form { background: var(--dark-2); border: 1px solid rgba(200,149,42,0.12); border-radius: var(--radius); padding: 2rem; }

/* ── FOOTER ── */
.footer {
  background: var(--dark-3);
  border-top: 1px solid rgba(200,149,42,0.12);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.08em;
  color: var(--off-white); margin-bottom: 0.75rem;
}
.footer__brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; max-width: 280px; }
.footer__col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a { font-size: 0.87rem; color: var(--muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--off-white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,149,42,0.08);
  font-size: 0.79rem; color: var(--muted);
}
.footer__bottom a { color: var(--gold); }
.footer__social { display: flex; gap: 0.75rem; }
.social-link {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark-4);
  border: 1px solid rgba(200,149,42,0.2);
  border-radius: 6px; font-size: 0.75rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  transition: all 0.2s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── RESOURCES PAGE ── */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.resource-card {
  background: var(--dark-2);
  border: 1px solid rgba(200,149,42,0.12);
  border-radius: var(--radius); padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.resource-card:hover { border-color: rgba(200,149,42,0.35); transform: translateY(-2px); }
.resource-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,149,42,0.1);
  padding: 0.2rem 0.6rem; border-radius: 3px; display: inline-block; margin-bottom: 0.75rem;
}
.resource-card__title { font-weight: 600; font-size: 0.97rem; color: var(--off-white); margin-bottom: 0.4rem; }
.resource-card__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* Tablet landscape / small desktop (900px–1100px) */
@media (max-width: 1100px) {
  .nav__links a { padding: 0.4rem 0.55rem; font-size: 0.83rem; }
  .nav__cta { padding: 0.5rem 1rem; font-size: 0.82rem; margin-left: 0.5rem; }
  .nav__inner { gap: 1rem; }
}

/* Tablet portrait (768px–900px) — switch to hamburger, hide nav links */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero__image { display: none; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__stats { max-width: 420px; margin: 0 auto; }
  .cover-showcase { grid-template-columns: 1fr; }
  .cover-showcase__img { max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
}

/* Mobile (max 600px) */
@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 6rem 0 3rem; }
  .hero__title { font-size: clamp(2.8rem, 10vw, 3.8rem); }
  .hero__sub { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__stat-lbl { font-size: 0.65rem; }
  .trust-bar__inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(200,149,42,0.08); width: 100%; padding: 0.5rem 1rem; }
  .trust-item:last-child { border-bottom: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .pricing-box { padding: 1.75rem 1rem; }
  .pricing-main { font-size: 4.5rem; }
  .section-hdr h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .page-hero { padding: 6rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .faq-btn { font-size: 0.9rem; }
  .cover-showcase__body .btn { width: 100%; justify-content: center; }
  .file-pills { gap: 0.4rem; }
}
