/* ============================================================
   GILNAHIRK BOILER SERVICES — styles.css
   ============================================================ */

:root {
  --primary:   #1B3A6B;
  --red:       #C0392B;
  --bg:        #F4F6F8;
  --white:     #FFFFFF;
  --text:      #1A1A2E;
  --heading:   'Montserrat', sans-serif;
  --body:      'Source Sans 3', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --radius:    8px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--body); color: var(--text); background: var(--white); line-height: 1.65; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

@media (max-width: 900px) { body { padding-bottom: 70px; } }

h1, h2, h3, h4 { font-family: var(--heading); font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(1.85rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 4rem 0; }
.section--light { background: var(--bg); }
.section--dark  { background: var(--primary); color: var(--white); }
.text-center    { text-align: center; }

.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.section-title { color: var(--primary); margin-bottom: .5rem; }
.section-sub {
  color: #555566;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}
.section-sub.left { margin-left: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: 2px solid transparent;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: #a93226; border-color: #a93226; color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline-blue { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-blue:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ── NAVBAR ── */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.logo__text {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.25;
}
.logo__text small {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  opacity: .75;
  font-family: var(--body);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"] { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone { color: rgba(255,255,255,.9); font-weight: 700; font-size: .9rem; white-space: nowrap; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-phone  { display: none; }
  .nav-right .btn { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
    z-index: 800;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 1rem; padding: .25rem 0; }
}

/* ── STICKY CALL BAR ── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 1.05rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transition: background .2s;
}
.sticky-call:hover { background: #a93226; color: var(--white); }
@media (max-width: 900px) { .sticky-call { display: block; } }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: .9rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  white-space: nowrap;
}

/* ── HERO IMAGE (home) ── */
.hero-image {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.42);
}
.hero-image__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.hero-card {
  position: relative;
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
}
.hero-card h1 { color: var(--primary); margin-bottom: .85rem; }
.hero-card p  { color: #4a4a5a; margin-bottom: 1.5rem; font-size: 1.05rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-btns__cta { display: contents; }
.hero-gas-safe { position: absolute; bottom: 1.5rem; right: 1.75rem; width: 88px; height: auto; }
@media (max-width: 500px) { .hero-gas-safe { width: 66px; bottom: 1rem; right: 1rem; } }

/* ── HERO BLUE (service pages) ── */
.hero-blue { background: var(--primary); padding: 3.5rem 0; }
.hero-blue h1 { color: var(--white); margin-bottom: .85rem; }
.hero-blue p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 1.75rem; max-width: 680px; }

/* ── HERO URGENT (repair page) ── */
.hero-urgent {
  background: linear-gradient(135deg, #0f2444 0%, var(--primary) 100%);
  border-bottom: 5px solid var(--red);
  padding: 3.5rem 0;
}
.hero-urgent h1 { color: var(--white); margin-bottom: .85rem; }
.hero-urgent p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 1.75rem; max-width: 680px; }
.urgency-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--primary); margin-bottom: .6rem; }
.service-card p  { color: #555566; margin-bottom: 1.25rem; }
.link-arrow {
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .2s;
}
.link-arrow::after { content: ' →'; }
.link-arrow:hover { gap: .55rem; color: var(--red); }

/* ── ICON LIST ── */
.icon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .75rem;
  margin-top: 1.75rem;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  box-shadow: var(--shadow-sm);
  font-size: .97rem;
  line-height: 1.45;
}
.icon-list li .ico { color: var(--red); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ── PROBLEM GRID ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.problem-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
  font-weight: 600;
  font-size: .95rem;
}
.problem-card__icon { font-size: 1.4rem; flex-shrink: 0; }

/* ── PRICING CARD ── */
.pricing-wrap { display: flex; justify-content: center; margin-top: 2rem; }
.pricing-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(27,58,107,.35);
  max-width: 400px;
  width: 100%;
}
.pricing-card__from { font-size: .9rem; opacity: .8; text-transform: uppercase; letter-spacing: .08em; }
.pricing-card__price {
  font-size: 3.5rem;
  font-family: var(--heading);
  font-weight: 800;
  line-height: 1;
  margin: .3rem 0;
  color: var(--white);
}
.pricing-card__service { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.pricing-card__note {
  font-size: .88rem;
  opacity: .75;
  margin-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: .75rem;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}
.step__num {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.step h3 { color: var(--primary); margin-bottom: .4rem; font-size: 1rem; }
.step p  { font-size: .9rem; color: #555566; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
}
.review-stars { color: #f59e0b; font-size: 1.05rem; margin-bottom: .6rem; letter-spacing: .1em; }
.review-text  { font-style: italic; color: #3a3a4a; margin-bottom: 1rem; line-height: 1.7; }
.review-name  { font-weight: 700; color: var(--primary); font-size: .88rem; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary);
  color: var(--white);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
}
.reviews-heading-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: .5rem;
}

/* 2-col review grid for highlighted reviews */
.reviews-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ── AREA TAGS ── */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.area-tag {
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  display: inline-block;
  transition: background .18s, transform .18s;
}
a.area-tag:hover { background: var(--red); transform: translateY(-2px); }

/* ── ABOUT BULLETS ── */
.about-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-top: 1.5rem;
}
.about-bullet {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
}

/* ── VALUES CARDS ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
}
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { color: var(--primary); margin-bottom: .6rem; }
.value-card p  { color: #555566; font-size: .95rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--primary);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem,3.5vw,2.8rem); margin-bottom: .6rem; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* ── STAT HIGHLIGHT ── */
.stat-highlight {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

/* ── CONTACT FORM ── */
.contact-section { padding: 4.5rem 0; background: var(--bg); }
.form-wrap {
  max-width: 650px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}
.form-wrap h2 { color: var(--primary); margin-bottom: .4rem; }
.form-wrap > p { color: #555566; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid #dde3ee;
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.form-submit:hover { background: #a93226; transform: translateY(-2px); }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-section { padding: 4rem 0; background: var(--bg); }
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e4e9f0;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.15rem 1.5rem;
  font-family: var(--heading);
  font-weight: 700;
  font-size: .97rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  line-height: 1.3;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--red); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; color: #555566; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── PAGE LINKS STRIP ── */
.page-links-strip { padding: 2.5rem 0; background: var(--bg); border-top: 2px solid #e4e9f0; }
.page-links-strip h3 { color: var(--primary); text-align: center; margin-bottom: 1.25rem; font-size: 1.05rem; font-weight: 700; }
.page-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.page-link-pill {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius);
  padding: .65rem 1.5rem;
  font-weight: 700;
  font-size: .88rem;
  transition: all .2s;
  font-family: var(--heading);
}
.page-link-pill:hover { background: var(--primary); color: var(--white); }

/* ── BRANDS ── */
.brands-text {
  max-width: 700px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  color: #555566;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.brand-pill {
  background: var(--white);
  border: 2px solid #dde3ee;
  color: var(--primary);
  border-radius: var(--radius);
  padding: .6rem 1.4rem;
  font-weight: 700;
  font-size: .9rem;
}

/* ── FOOTER ── */
.footer {
  background: #0d1f3c;
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}
.footer__logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer__logo-text {
  font-family: var(--heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.25;
}
.footer__logo-text small {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  opacity: .65;
  font-family: var(--body);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer__tagline { font-size: .88rem; opacity: .65; margin-bottom: 1rem; }
.footer__contact a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  margin-bottom: .45rem;
  transition: color .2s;
}
.footer__contact a:hover { color: var(--white); }
.footer__contact .phone-link { font-weight: 700; font-size: 1rem; color: var(--white); }
.gas-safe-badge {
  display: inline-flex;
  align-items: center;
  margin-top: .9rem;
}
.gas-safe-badge img {
  width: 90px;
  height: auto;
  display: block;
  background: #fff;
  border-radius: 6px;
  padding: 4px 6px;
}
.trust-item--logo { gap: .6rem; }
.trust-item--logo img { height: 32px; width: auto; display: block; }
.footer__h {
  font-family: var(--heading);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .5;
  margin-bottom: .85rem;
}
.footer__links li { margin-bottom: .5rem; }
.footer__links a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__areas { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.9; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ── TWO-COLUMN IMAGE + TEXT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col__img-first { order: -1; }
}

/* ── BEFORE / AFTER ── */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.before-after-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: 0;
}
.before-after-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.before-after-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .35rem 1rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.before-after-label--before { background: #1a1a2e; color: #fff; }
.before-after-label--after  { background: #27ae60; color: #fff; }
.before-after-card figcaption {
  padding: .85rem 1rem;
  background: #fff;
  font-size: .88rem;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* ── DYLAN PHOTOS ── */
.dylan-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.dylan-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dylan-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 600px) {
  .dylan-photos { grid-template-columns: 1fr; }
}

/* ── BEAT ANY QUOTE ── */
.beat-quote-section {
  background: var(--primary);
  padding: 4rem 0;
}
.beat-quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.beat-quote-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.beat-quote-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.beat-quote-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.beat-quote-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  text-align: left;
  max-width: 460px;
  margin: 0 auto;
}
.beat-quote-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,.92);
}
.beat-quote-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── REPLACEMENT BEFORE/AFTER ── */
.replacement-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.replacement-ba-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.replacement-ba-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
@media (max-width: 700px) {
  .replacement-ba-grid { grid-template-columns: 1fr; }
}

/* ── BRAND LOGO IMAGE ── */
.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  background: var(--white);
  padding: 3px 7px;
  display: block;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 90px;
  width: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: .85rem;
}
.hero-logo {
  height: 100px;
  width: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto 1.25rem;
}
.about-logo {
  height: 120px;
  width: auto;
  border-radius: 12px;
  display: block;
  margin: 0 0 1.5rem;
}

@media (max-width: 600px) {
  .hero-card  { padding: 1.75rem 1.25rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .form-wrap  { padding: 1.75rem 1.25rem; }
  .cta-banner { padding: 3rem 1.25rem; }
  .section    { padding: 3rem 0; }
  .hero-logo  { height: 80px; }
  .about-logo { height: 90px; }
}
