/* ============================================================
   ConsigueTuPropiaWeb — Marketing Landing — Azul Atlántico
   ============================================================ */

/* --- Custom properties (Business Card palette) --- */
:root {
  --blue-base: #1f5fe0;
  --blue-circle-light: #3974e9;
  --blue-circle-mid: #2e6ae2;
  --blue-circle-dark: #194bbc;
  --panel: #194bbc;
  --panel-border: #4f81e7;
  --yellow-0: #facc15;
  --yellow-1: #eab308;
  --navy-ink: #13213c;
  --wa: #25d366;
  --wa-text: #5dec99;
  --text: #ffffff;
  --text-muted: #eaf1ff;
  --text-muted-2: #cfe0ff;
  --flag-blue: #5fb0f0;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
}

/* --- Self-hosted Poppins --- */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/poppins-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/poppins-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/poppins-800-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/poppins-900-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* clip (not hidden) avoids creating a scroll container on the root,
     which would break the .site-header { position: sticky } below it */
  overflow-x: clip;
}

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--blue-base);
  min-height: 100vh;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  /* Reserve space for the fixed mobile CTA bar so footer isn't covered */
  padding-bottom: 76px;
}

/* Decorative brand circles (as on the business cards) — pure chrome */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 60vmax;
  height: 60vmax;
  top: -28vmax;
  left: -18vmax;
  background: var(--blue-circle-light);
}

body::after {
  width: 70vmax;
  height: 70vmax;
  bottom: -38vmax;
  right: -22vmax;
  background: var(--blue-circle-dark);
}

/* --- Focus ring (WCAG 2.2) --- */
:focus-visible {
  outline: 3px solid var(--yellow-0);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- Visually hidden (screen-reader only) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--yellow-0);
  color: var(--navy-ink);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.skip-link:focus-visible {
  outline-color: var(--navy-ink);
}

/* ============================================================
   GALICIAN FLAG (shared)
   ============================================================ */
.flag-galicia {
  width: 2rem;
  height: 1.25rem;
  background: #ffffff;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.flag-galicia::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    var(--flag-blue) 40%,
    var(--flag-blue) 60%,
    transparent 60%
  );
}

/* Smaller variant used in the site header */
.flag-galicia--sm {
  width: 1.5rem;
  height: 0.9375rem;
}

/* ============================================================
   STICKY SITE HEADER — desktop only
   ============================================================ */
.site-header {
  /* Hidden on mobile; shown on desktop via media query below */
  display: none;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(25, 75, 188, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--panel-border);
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.5rem;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-header__brand-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

/* ============================================================
   HEADER CTA PILLS
   ============================================================ */
.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hdr-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hdr-cta:focus-visible {
  outline: 3px solid var(--yellow-0);
  outline-offset: 3px;
}

.hdr-cta__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.hdr-cta--call {
  background: linear-gradient(90deg, var(--yellow-0), var(--yellow-1));
  color: var(--navy-ink);
}

.hdr-cta--wa {
  background: var(--wa);
  color: #ffffff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 2rem 1.25rem 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

/* Eyebrow row */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.hero__eyebrow-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Brand name — visible on mobile, hidden on desktop (lives in sticky header) */
.hero__brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.875rem;
  line-height: 1.1;
}

/* Law badge */
.hero__law-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: linear-gradient(90deg, var(--yellow-0), var(--yellow-1));
  color: var(--navy-ink);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.hero__law-badge-icon {
  width: 0.875rem;
  height: 0.875rem;
}

/* H1 */
.hero__heading {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero__heading-accent {
  display: block;
  color: var(--yellow-0);
  font-size: 2rem;
  text-transform: uppercase;
}

/* Unified sub paragraph */
.hero__sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero__sub .accent {
  color: var(--text);
  font-weight: 800;
}

.hero__price-inline {
  color: var(--yellow-0);
  font-weight: 800;
  font-size: 1.25rem;
}

/* ============================================================
   BUTTON BASE + MODIFIERS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: inherit;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 0.8125rem;
  padding: 0.875rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--yellow-0);
  outline-offset: 3px;
}

.btn__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn--call {
  background: linear-gradient(90deg, var(--yellow-0), var(--yellow-1));
  color: var(--navy-ink);
}

.btn--wa {
  background: var(--wa);
  color: #ffffff;
}

/* Hero CTA row */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero__cta .btn {
  width: 100%;
}

/* Trust line */
.hero__trust {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0;
}

/* Price badge — hidden on mobile, absolute on desktop */
.hero__price-badge {
  display: none;
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.services {
  padding: 3rem 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

.services__header {
  text-align: center;
  margin-bottom: 2rem;
}

.services__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.services__subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Separator */
.services__separator {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-0), var(--yellow-1));
  border-radius: var(--radius-pill);
  margin: 0.75rem auto 0;
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Card */
.service-card {
  background: rgba(19, 33, 60, 0.28);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 129, 231, 0.55);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(19, 33, 60, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  color: var(--yellow-0);
}

.service-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-card__title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact {
  padding: 1rem 1.25rem 3rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact__panel {
  background: var(--blue-circle-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}

.contact__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.contact__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact__icon-circle--phone {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-circle-dark);
}

.contact__icon-circle--wa {
  background: var(--wa);
  color: #ffffff;
}

.contact__icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.contact__phone-link {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow-0);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.02em;
}

.contact__phone-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact__phone-link:focus-visible {
  outline: 3px solid var(--yellow-0);
  outline-offset: 4px;
  border-radius: 3px;
}

.contact__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.25rem 0;
}

.contact__wa-link {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.contact__wa-link:hover {
  text-decoration: underline;
}

.contact__wa-link:focus-visible {
  outline: 3px solid var(--yellow-0);
  outline-offset: 4px;
  border-radius: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* ============================================================
   FIXED MOBILE CTA BAR — mobile only
   ============================================================ */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  background: rgba(25, 75, 188, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid var(--panel-border);
}

.mcta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  min-height: 48px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.mcta:hover {
  opacity: 0.9;
}

.mcta:focus-visible {
  outline: 3px solid var(--yellow-0);
  outline-offset: 3px;
}

.mcta__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.mcta--call {
  background: linear-gradient(90deg, var(--yellow-0), var(--yellow-1));
  color: var(--navy-ink);
}

.mcta--wa {
  background: var(--wa);
  color: #ffffff;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 3rem 1.25rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.faq__separator {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-0), var(--yellow-1));
  border-radius: var(--radius-pill);
  margin: 0.75rem auto 0;
}

.faq__item {
  background: rgba(19, 33, 60, 0.28);
  border: 1px solid rgba(79, 129, 231, 0.55);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-right: 2.5rem;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow-0);
}

.faq__item[open] .faq__q::after {
  content: '−';
}

.faq__a {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted-2);
}

/* ============================================================
   LEAD WIDGET — "¿Te llamamos?"
   ============================================================ */
.lead-widget {
  position: fixed;
  right: 1rem;
  bottom: calc(76px + 0.75rem); /* above the mobile CTA bar */
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.lead-fab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.625rem 1rem;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--navy-ink);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.lead-fab__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.lead-panel {
  width: min(20rem, calc(100vw - 2rem));
  background: var(--blue-circle-dark);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.lead-panel__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.lead-panel__sub {
  font-size: 0.8125rem;
  color: var(--text-muted-2);
  margin-bottom: 1rem;
}

.lead-field {
  display: block;
  margin-bottom: 0.75rem;
}

.lead-field__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.lead-field__input {
  width: 100%;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--navy-ink);
  font-family: inherit;
  font-size: 1rem;
}

.lead-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--text-muted-2);
  margin: 0.25rem 0 1rem;
}

.lead-consent input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.0625rem;
  flex-shrink: 0;
}

.lead-consent a {
  color: var(--text);
}

.lead-panel__submit {
  width: 100%;
}

.lead-feedback {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.625rem;
  min-height: 1.25rem;
}

.lead-feedback--ok {
  color: var(--wa-text);
}

.lead-feedback--error {
  color: #ffffff;
}

.lead-feedback a {
  color: var(--yellow-0);
}

/* ============================================================
   RESPONSIVE — small phones
   ============================================================ */
@media (min-width: 480px) {
  .hero__heading {
    font-size: 2rem;
  }

  .hero__heading-accent {
    font-size: 2.5rem;
  }
}

/* ============================================================
   RESPONSIVE — tablet & desktop (≥768px)
   ============================================================ */
@media (min-width: 768px) {
  /* Remove mobile bottom bar padding on desktop */
  body {
    padding-bottom: 0;
  }

  /* Show sticky header on desktop */
  .site-header {
    display: flex;
  }

  /* Hide mobile CTA bar on desktop */
  .mobile-cta {
    display: none;
  }

  .lead-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  /* Hero: centered layout, hide brand (it lives in the sticky header) */
  .hero {
    padding: 4rem 2.5rem 5rem;
    text-align: center;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  /* Brand hidden on desktop — sticky header carries it */
  .hero__brand {
    display: none;
  }

  .hero__heading {
    font-size: 2.75rem;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__heading-accent {
    font-size: 3.25rem;
  }

  .hero__sub {
    font-size: 1.0625rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA row: inline, centered on desktop */
  .hero__cta {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .hero__cta .btn {
    width: auto;
  }

  /* Price badge: absolute top-right corner, desktop only */
  .hero__price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3.5rem;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--yellow-0), var(--yellow-1));
    border-radius: 50%;
    color: var(--navy-ink);
    text-align: center;
    transform: rotate(-8deg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    line-height: 1.1;
  }

  .hero__price-badge::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.7);
  }

  .hero__price-desde {
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .hero__price-amount {
    font-size: 1.625rem;
    font-weight: 900;
    line-height: 1;
  }

  .hero__price-period {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Services */
  .services {
    padding: 4rem 2.5rem;
  }

  .services__heading {
    font-size: 1.875rem;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  /* FAQ */
  .faq {
    padding: 4rem 2.5rem;
  }

  /* Contact */
  .contact {
    padding: 1rem 2.5rem 4rem;
  }

  .contact__panel {
    padding: 2.5rem 3rem;
  }

  .contact__row {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .contact__phone-link {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding: 5rem 2rem 5.5rem;
  }

  .hero__heading {
    font-size: 3.25rem;
    max-width: 48rem;
  }

  .hero__heading-accent {
    font-size: 3.75rem;
  }

  .hero__price-badge {
    width: 9.5rem;
    height: 9.5rem;
    top: 4rem;
    right: 1.5rem;
  }

  .hero__price-amount {
    font-size: 2rem;
  }

  .service-card__title {
    font-size: 1rem;
  }

  .service-card__desc {
    font-size: 0.8125rem;
  }

  .contact__panel {
    padding: 3rem 4rem;
  }

  .contact__phone-link {
    font-size: 3rem;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .service-card {
    transition: none;
  }

  .btn,
  .hdr-cta,
  .mcta {
    transition: none;
  }
}
