:root {
  --yellow: #f7c21e;
  --yellow-deep: #e5aa00;
  --yellow-soft: #ffe894;
  --black: #0a0a0a;
  --cream: #fff7df;
  --paper: #fffdf6;
  --text: #121212;
  --muted: #444444;
  --line: rgba(10, 10, 10, 0.12);
  --shadow: 0 24px 60px rgba(10, 10, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 194, 30, 0.38), transparent 24%),
    linear-gradient(180deg, #ffe487 0, #fff3c4 220px, var(--cream) 220px, #fff9ee 100%);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-checker {
  height: 14px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--black) 0 22px,
      var(--yellow) 22px 44px
    );
}

.site-frame {
  width: min(calc(100% - 30px), 1220px);
  margin: 0 auto;
  padding: 18px 0 68px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 2px solid rgba(10, 10, 10, 0.1);
  border-radius: 24px;
  background: rgba(255, 251, 236, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(10, 10, 10, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--black);
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

.site-nav a {
  transition: opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.65;
}

.header-call {
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--black);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 160ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
}

.hero,
.services-band,
.coverage-section,
.contact-band,
.faq-section {
  animation: lift-in 700ms ease both;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 24px;
  margin-top: 20px;
  padding: 46px;
  border-radius: 44px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--black) 0 55%, var(--yellow) 55% 100%);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  top: -14%;
  bottom: -14%;
  left: 47%;
  width: 22%;
  border-radius: 50%;
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.08) 18px 19px
    );
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 520px;
  color: #ffffff;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.contact-copy h2,
.coverage-copy h2 {
  margin: 20px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero h1 {
  line-height: 0.82;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  font-size: clamp(4rem, 8vw, 6.2rem);
  color: #ffffff;
}

.hero h1 strong {
  font-size: clamp(6.5rem, 13vw, 10.5rem);
  color: var(--yellow);
}

.checker-line {
  width: min(100%, 420px);
  height: 24px;
  margin: 18px 0 0;
  background:
    repeating-linear-gradient(
      90deg,
      var(--yellow) 0 20px,
      var(--yellow) 20px 30px,
      rgba(255, 255, 255, 0) 30px 42px
    );
}

.hero-lead {
  margin: 20px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-text {
  max-width: 44ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.primary-cta {
  background: var(--yellow);
  color: var(--black);
}

.secondary-cta {
  border: 2px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.primary-cta:hover,
.primary-cta:focus-visible,
.secondary-cta:hover,
.secondary-cta:focus-visible {
  transform: translateY(-2px);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}

.feature-index {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.feature-list strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-list p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.hero-media {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 18px;
}

.hero-badges {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.round-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 6px solid var(--black);
  background: rgba(255, 248, 202, 0.65);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.35);
}

.round-badge-big {
  font-size: 3.8rem;
  line-height: 0.9;
}

.hero-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  padding: 18px 22px;
  border-radius: 24px;
  background: var(--black);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(10, 10, 10, 0.18);
}

.hero-note strong,
.hero-note span {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 2.1rem;
  line-height: 0.95;
}

.hero-note span {
  margin-top: 8px;
  font-size: 1.2rem;
  color: var(--yellow);
}

.hero-image {
  width: min(100%, 560px);
  height: auto;
  filter: drop-shadow(0 36px 46px rgba(0, 0, 0, 0.28));
}

.price-badge {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 26px;
  border: 4px solid var(--yellow);
  border-radius: 999px;
  background: var(--black);
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

.price-badge span,
.price-badge strong {
  font-family: "Barlow Condensed", sans-serif;
}

.price-badge span {
  color: var(--yellow);
  font-size: 1.55rem;
  font-weight: 700;
}

.price-badge strong {
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.95;
}

.services-band,
.intent-section,
.coverage-section,
.faq-section {
  margin-top: 28px;
}

.services-band {
  padding: 28px;
  border: 3px solid var(--black);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.service-grid article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.service-grid h2,
.faq-grid h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-grid p,
.coverage-copy p,
.coverage-callout,
.contact-copy p,
.faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.intent-section {
  padding: 28px;
  border: 3px solid var(--black);
  border-radius: 34px;
  background: linear-gradient(180deg, #fff1b2, #fff9eb);
  box-shadow: var(--shadow);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.intent-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 146px;
  padding: 20px;
  border: 2px solid rgba(10, 10, 10, 0.12);
  border-radius: 26px;
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.intent-card strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.intent-card span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.intent-card:hover,
.intent-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 10, 10, 0.1);
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.coverage-copy,
.coverage-panel {
  padding: 30px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.coverage-copy {
  border: 3px solid var(--black);
  background: var(--black);
  color: #ffffff;
}

.coverage-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.coverage-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.coverage-panel {
  border: 3px solid var(--black);
  background: linear-gradient(180deg, #ffd861, #f5bd16);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid rgba(10, 10, 10, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.coverage-callout {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--black);
  color: #ffffff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: 36px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.section-label.dark {
  background: #ffffff;
}

.contact-copy {
  color: #ffffff;
}

.contact-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.88;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  min-height: 118px;
  padding: 0 28px;
  border-radius: 28px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.08);
}

.faq-section {
  padding: 28px;
  border: 2px solid rgba(10, 10, 10, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.faq-grid article {
  padding: 22px;
  border: 2px solid rgba(10, 10, 10, 0.08);
  border-radius: 26px;
  background: #ffffff;
}

.faq-grid a {
  color: #c78900;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 18px 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-credit {
  color: #916300;
  font-weight: 800;
  transition: opacity 160ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  opacity: 0.7;
}

.call-popup {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 242px;
  padding: 14px 18px 14px 14px;
  border-radius: 22px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 20px 46px rgba(10, 10, 10, 0.22);
  transform: translateY(-50%);
  animation: call-shake 3s infinite;
}

.call-popup-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
}

.call-popup-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.call-popup-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.call-popup-copy span,
.call-popup-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.call-popup-copy span {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.call-popup-copy strong {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.03em;
}

@keyframes call-shake {
  0%,
  86%,
  100% {
    transform: translateY(-50%) translateX(0);
  }

  88% {
    transform: translateY(-50%) translateX(-4px) rotate(-1deg);
  }

  90% {
    transform: translateY(-50%) translateX(5px) rotate(1deg);
  }

  92% {
    transform: translateY(-50%) translateX(-5px) rotate(-1deg);
  }

  94% {
    transform: translateY(-50%) translateX(4px) rotate(1deg);
  }

  96% {
    transform: translateY(-50%) translateX(-2px);
  }

  98% {
    transform: translateY(-50%) translateX(2px);
  }
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .coverage-section,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px;
  }

  .hero::before {
    display: none;
  }

  .hero-media {
    justify-items: center;
  }

  .service-grid,
  .intent-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-number {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-frame {
    width: min(calc(100% - 14px), 1220px);
    padding-top: 10px;
    padding-bottom: 122px;
  }

  .site-header {
    gap: 14px;
    padding: 13px 14px;
    border-radius: 20px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.2rem;
  }

  .brand-copy strong {
    font-size: 1.4rem;
  }

  .brand-copy span:last-child {
    font-size: 0.82rem;
  }

  .header-call {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 1.25rem;
  }

  .hero {
    gap: 18px;
    padding: 22px 16px 20px;
    background:
      linear-gradient(180deg, var(--black) 0 44%, var(--yellow) 44% 100%);
    border-radius: 26px;
    border: 3px solid var(--black);
  }

  .hero::after {
    height: 14px;
    opacity: 0.95;
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    padding: 6px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .hero h1 span {
    font-size: clamp(3.15rem, 14vw, 4.2rem);
  }

  .hero h1 strong {
    font-size: clamp(4.95rem, 21vw, 6.1rem);
  }

  .hero h1,
  .hero-lead {
    margin-top: 12px;
  }

  .checker-line {
    width: 228px;
    height: 14px;
    margin-top: 14px;
  }

  .hero-lead {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }

  .hero-text {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .hero-actions,
  .hero-badges {
    flex-direction: column;
    width: 100%;
  }

  .primary-cta,
  .secondary-cta,
  .hero-note {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .primary-cta {
    min-height: 56px;
    font-size: 1.35rem;
  }

  .secondary-cta {
    min-width: 0;
    min-height: 44px;
    width: auto;
    align-self: flex-start;
    padding: 0 18px;
    border-width: 1px;
    font-size: 1rem;
  }

  .feature-list {
    gap: 10px;
    margin-top: 18px;
  }

  .feature-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 10px 10px 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .feature-index {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .feature-list strong {
    font-size: 1.4rem;
  }

  .feature-list p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-media {
    position: relative;
    justify-items: stretch;
    gap: 0;
    margin-top: 4px;
    padding: 14px 10px 16px;
    border: 3px solid var(--black);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 244, 192, 0.74), rgba(255, 210, 75, 0.98));
    overflow: hidden;
  }

  .hero-media::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 12px;
    background:
      repeating-linear-gradient(
        90deg,
        var(--black) 0 18px,
        var(--yellow) 18px 36px
      );
  }

  .hero-badges {
    position: absolute;
    inset: 18px 12px auto 12px;
    display: block;
    min-height: 0;
    z-index: 3;
    pointer-events: none;
  }

  .round-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 94px;
    height: 94px;
    border-width: 4px;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.35);
  }

  .round-badge-big {
    font-size: 2.2rem;
  }

  .hero-note {
    display: inline-flex;
    min-height: 0;
    padding: 12px 14px 10px;
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.95);
  }

  .hero-note strong {
    font-size: 1.45rem;
  }

  .hero-note span {
    margin-top: 5px;
    font-size: 0.95rem;
  }

  .hero-image {
    width: 118%;
    max-width: none;
    margin: 26px -9% 0 auto;
    filter: drop-shadow(0 24px 26px rgba(0, 0, 0, 0.28));
  }

  .price-badge {
    width: 100%;
    margin-top: -6px;
    padding: 14px 16px;
    border-width: 3px;
    border-radius: 18px;
    box-shadow: none;
  }

  .price-badge span {
    font-size: 1.25rem;
  }

  .price-badge strong {
    font-size: 1.45rem;
  }

  .services-band,
  .intent-section,
  .coverage-copy,
  .coverage-panel,
  .contact-band,
  .faq-section {
    border-radius: 22px;
  }

  .services-band {
    margin-top: 20px;
    padding: 20px 12px 12px;
    border-radius: 24px;
    background: var(--black);
    overflow: hidden;
  }

  .intent-section {
    margin-top: 20px;
    padding: 20px 12px 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffe28a, #fff7e2);
  }

  .intent-grid {
    gap: 12px;
  }

  .intent-card {
    min-height: 0;
    padding: 18px 16px;
    border-radius: 20px;
  }

  .intent-card strong {
    font-size: 1.7rem;
  }

  .services-band .section-label {
    margin-left: 2px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-grid article {
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 16px 14px;
    border-width: 2px;
    border-radius: 20px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
    font-size: 1.35rem;
  }

  .service-grid article:nth-child(1) {
    background: linear-gradient(180deg, #ffe89a, #fffdf5);
  }

  .service-grid article:nth-child(2) {
    background: #ffffff;
  }

  .service-grid article:nth-child(3) {
    border-color: var(--yellow);
    background: #111111;
    color: #ffffff;
  }

  .service-grid article:nth-child(3) p {
    color: rgba(255, 255, 255, 0.78);
  }

  .coverage-section {
    gap: 14px;
    margin-top: 20px;
  }

  .coverage-copy,
  .coverage-panel {
    padding: 20px 16px;
  }

  .coverage-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
  }

  .coverage-panel {
    background:
      linear-gradient(180deg, #ffd95f, #f6bf12);
  }

  .area-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .area-tags span {
    min-height: 50px;
    padding: 10px 8px;
    border-radius: 16px;
    text-align: center;
    line-height: 1.3;
  }

  .coverage-callout {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 1.3rem;
  }

  .contact-band {
    gap: 14px;
    margin-top: 20px;
    padding: 20px 16px;
    border-radius: 24px;
  }

  .contact-number {
    min-width: 0;
    min-height: 88px;
    border-radius: 20px;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .faq-section {
    margin-top: 20px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .faq-grid {
    gap: 12px;
  }

  .faq-grid article {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    border-width: 2px;
    border-radius: 20px;
  }

  .faq-grid article:nth-child(1) {
    background: #fffdf4;
  }

  .faq-grid article:nth-child(2) {
    background: #ffeaa4;
  }

  .faq-grid article:nth-child(3) {
    border-color: var(--black);
    background: #111111;
    color: #ffffff;
  }

  .faq-grid article:nth-child(3) p {
    color: rgba(255, 255, 255, 0.78);
  }

  .faq-grid article:nth-child(3) a {
    color: var(--yellow);
  }

  .faq-grid h2 {
    font-size: 1.55rem;
  }

  .site-footer {
    margin-top: 18px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 0.92rem;
  }

  .footer-credit {
    font-size: 0.98rem;
  }

  .call-popup {
    right: 10px;
    left: 10px;
    top: auto;
    bottom: 10px;
    min-width: 0;
    width: auto;
    justify-content: flex-start;
    padding: 12px 14px;
    border: 2px solid var(--black);
    border-radius: 18px;
    box-shadow: 0 16px 26px rgba(10, 10, 10, 0.2);
    transform: none;
    animation-name: call-shake-mobile;
  }

  .call-popup-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .call-popup-icon svg {
    width: 22px;
    height: 22px;
  }

  .call-popup-copy span {
    font-size: 0.92rem;
  }

  .call-popup-copy strong {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  @keyframes call-shake-mobile {
    0%,
    86%,
    100% {
      transform: translateX(0);
    }

    88% {
      transform: translateX(-4px) rotate(-1deg);
    }

    90% {
      transform: translateX(5px) rotate(1deg);
    }

    92% {
      transform: translateX(-5px) rotate(-1deg);
    }

    94% {
      transform: translateX(4px) rotate(1deg);
    }

    96% {
      transform: translateX(-2px);
    }

    98% {
      transform: translateX(2px);
    }
  }
}
