/* ============================================================
   FOURWAYS PLUMBER — SERVICE PAGES STYLESHEET
   Loaded on all page-*.php service templates
============================================================ */

/* ─── SERVICE HERO ───────────────────────────────────────── */
.service-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1010 100%);
  padding-block: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(227,27,35,0.14) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px,
      transparent 1px, transparent 40px
    );
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.service-hero__inner {
  position: relative;
  z-index: 1;
}

/* Hero two-column layout wrapper */
.service-hero__content {
  min-width: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--t);
}
.breadcrumb a:hover { color: var(--red); }

.breadcrumb__sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
}

.breadcrumb__current { color: rgba(255,255,255,0.75); }

/* Hero content */
.service-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem 0.3rem 0.65rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.85rem;
}
.service-hero__tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: tag-dot-pulse 2s ease infinite;
}
@keyframes tag-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.service-hero__tag i { display: none; }

/* ─── HERO STATS ROW ────────────────────────────────────── */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  margin-bottom: 0.5rem;
}
.hero-stat-block {
  display: flex;
  flex-direction: column;
}
.hero-stat-block__value {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-block__unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}
.hero-stat-block__label {
  font-family: var(--font-head);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

.service-hero__title {
  font-size: clamp(1.7rem, 4.5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.service-hero__title span { color: var(--red); }

.service-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.service-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.service-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-hero__meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.service-hero__meta i { color: var(--red); }

/* ─── HERO PANEL CARD (right column) ───────────────────────── */
.service-hero__panel {
  display: none; /* hidden on mobile, shown at 900px */
}

.hero-panel {
  background: rgba(10,10,10,0.62);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-panel__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-panel__pulse {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.hero-panel__pulse::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(227,27,35,0.25);
  animation: panel-pulse 2s ease infinite;
}
@keyframes panel-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: 0; }
}
.hero-panel__pulse-icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(227,27,35,0.45);
}

.hero-panel__top-text {
  flex: 1;
  min-width: 0;
}
.hero-panel__top-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.hero-panel__top-text span {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
}

.hero-panel__number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color var(--t);
  line-height: 1;
}
.hero-panel__number:hover { color: var(--red); }

.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item strong {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-item span {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  line-height: 1.2;
}

.hero-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-panel__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  justify-content: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-panel__trust span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.hero-panel__trust span i {
  color: var(--red);
  font-size: 0.65rem;
}

/* ─── HERO PANEL HEADER (about / contact variant) ───────── */
.hero-panel__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-panel__header-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(227,27,35,0.4);
}
.hero-panel__header-text { flex: 1; min-width: 0; }
.hero-panel__header-title {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.hero-panel__header-area {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  margin-top: 0.15rem;
}

/* ─── HERO PANEL SERVICES LIST ───────────────────────────── */
.hero-panel__services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-panel__service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}
.hero-panel__service-item i {
  color: #22c55e;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ─── DECORATIVE HERO CIRCLES ────────────────────────────── */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 0;
}
.hero-circle--tr {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -100px;
}
.hero-circle--bl {
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: -60px;
}

/* ─── SERVICE PHOTO BLOCK ────────────────────────────────── */
.service-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-photo img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

/* ─── SERVICE CONTENT LAYOUT ─────────────────────────────── */
.service-content {
  padding-block: 4rem;
  background: var(--off-white);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* ─── MAIN CONTENT COLUMN ────────────────────────────────── */
.service-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Content sections */
.content-block {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-grey);
  box-shadow: var(--shadow-sm);
  /* prevent any internal content from bursting the card */
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.content-block__title {
  font-family: var(--font-head);
  font-size: 1.15rem;           /* slightly smaller to fit on mobile */
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: flex-start;      /* wrap icon + text without stretching */
  gap: 0.6rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.content-block__title i {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;               /* icon never squishes */
  margin-top: 0.15rem;
}

.content-block p {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0.85rem;
  overflow-wrap: break-word;
}
.content-block p:last-child { margin-bottom: 0; }

/* Benefits list */
.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-radius: var(--r-md);
  border: 1px solid var(--border-grey);
  transition: border-color var(--t), background var(--t);
}
.benefit-item:hover {
  border-color: var(--red);
  background: var(--red-bg);
}

.benefit-item__icon {
  width: 32px;
  height: 32px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.benefit-item__text {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  padding-top: 0.2rem;
}
.benefit-item__text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.15rem;
  font-family: var(--font-body);
}

/* How it works steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-item__num {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(227,27,35,0.3);
}

.step-item__content {
  min-width: 0;
  overflow-wrap: break-word;
}

.step-item__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.step-item__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Step connector line (desktop) */
@media (min-width: 600px) {
  .steps-list { gap: 0; }
  .step-item { position: relative; padding-bottom: 1.75rem; }
  .step-item:last-child { padding-bottom: 0; }
  .step-item::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: var(--border-grey);
  }
  .step-item:last-child::before { display: none; }
}

/* FAQ — using <details> / <summary> */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.faq-item {
  border: 1.5px solid var(--border-grey);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] {
  border-color: var(--red);
}
.faq-item[open] .faq-question { background: var(--red-bg); color: var(--red); }
.faq-item[open] .faq-question::after { transform: rotate(135deg); }

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
  background: var(--off-white);
  transition: background var(--t), color var(--t);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-question:hover { background: var(--red-bg); color: var(--red); }

.faq-answer {
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border-grey);
  background: var(--white);
}
.faq-answer p { margin-bottom: 0.5rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ─── SIDEBAR ─────────────────────────────────────────────── */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Emergency call box */
.call-box {
  background: var(--charcoal);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.call-box__header {
  background: var(--red);
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.call-box__header i {
  font-size: 1.5rem;
  color: var(--white);
  animation: ringing 1.8s ease-in-out infinite;
}
@keyframes ringing {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}
.call-box__header h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.35rem;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.call-box__body {
  padding: 1.25rem;
  text-align: center;
}

.call-box__label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}

.call-box__number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  transition: color var(--t);
  text-decoration: none;
}
.call-box__number:hover { color: var(--red); }

.call-box__hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.call-box__hours i { color: var(--red); }

/* Sidebar services list */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-grey);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget__title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--charcoal-2);
  padding: 0.75rem 1.1rem;
}

.sidebar-services-nav {
  padding: 0.4rem 0;
}
.sidebar-services-nav li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  border-bottom: 1px solid var(--light-grey);
  transition: color var(--t), background var(--t), padding-left var(--t);
}
.sidebar-services-nav li:last-child a { border-bottom: none; }
.sidebar-services-nav li a i { color: var(--red); width: 15px; font-size: 0.8rem; }
.sidebar-services-nav li a:hover {
  color: var(--red);
  background: var(--red-bg);
  padding-left: 1.35rem;
}
.sidebar-services-nav li.is-current a {
  color: var(--red);
  background: var(--red-bg);
  font-weight: 700;
}

/* Trust badges */
.trust-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  gap: 0.4rem;
}
.trust-badge:nth-child(2n) { border-right: none; }
.trust-badge:nth-last-child(-n+2) { border-bottom: none; }

.trust-badge i {
  font-size: 1.3rem;
  color: var(--red);
}
.trust-badge strong {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1.3;
}
.trust-badge span {
  font-size: 0.7rem;
  color: var(--mid-grey);
}

/* ─── BOTTOM CTA BANNER ──────────────────────────────────── */
.service-cta-banner {
  background: var(--red);
  padding-block: 3.5rem;
  position: relative;
  overflow: hidden;
}

.service-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.service-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
  pointer-events: none;
}

.service-cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.service-cta-banner__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  animation: pulse 2.2s ease infinite;
}

.service-cta-banner__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.service-cta-banner__sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 0;
}

.service-cta-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── RESPONSIVE — 600px ─────────────────────────────────── */
@media (min-width: 600px) {
  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-cta-banner__inner {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
  }
  .service-cta-banner__sub { margin-inline: 0; }
  .service-cta-banner__btns { flex-direction: column; flex-shrink: 0; }
}

/* ─── RESPONSIVE — 900px ─────────────────────────────────── */
@media (min-width: 900px) {
  /* Hero: 2-column layout */
  .service-hero {
    padding-block: 4rem 3.5rem;
  }
  .service-hero__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
  }
  .service-hero__panel {
    display: block;
  }

  /* Content below hero */
  .service-layout {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }

  .service-sidebar {
    position: sticky;
    top: calc(var(--bar-h) + var(--header-h) + 1.5rem);
  }

  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }

  .content-block__title {
    font-size: 1.25rem;
  }
}

/* ─── SMALL PHONE SAFETY NET (< 480px) ──────────────────── */
@media (max-width: 479px) {
  /* Hero: tighten up so text doesn't push sideways */
  .service-hero {
    padding-block: 2.5rem 2rem;
  }
  .service-hero__title {
    font-size: clamp(1.4rem, 7vw, 1.85rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .service-hero__sub {
    font-size: 0.9rem;
    overflow-wrap: break-word;
  }

  /* CTA buttons: stack full-width */
  .service-hero__ctas {
    flex-direction: column;
    gap: 0.6rem;
  }
  .service-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Content blocks: less padding on tiny screens */
  .content-block {
    padding: 1.25rem;
  }

  /* FAQ: tighter padding */
  .faq-question {
    font-size: 0.85rem;
    padding: 0.75rem 0.9rem;
  }
  .faq-answer {
    padding: 0.75rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Step items: reduce icon size slightly */
  .step-item__num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .step-item {
    gap: 0.75rem;
  }

  /* Bottom CTA banner: tighter */
  .service-cta-banner {
    padding-block: 2.5rem;
  }
  .service-cta-banner__title {
    font-size: 1.3rem;
  }
  .service-cta-banner__btns {
    flex-direction: column;
    width: 100%;
  }
  .service-cta-banner__btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Sidebar call-box number: slightly smaller */
  .call-box__number {
    font-size: 1.35rem;
  }

  /* Sidebar: full-width trust badge icons */
  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
  }
}
