*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #2563eb;
  --blue-600: #1d4ed8;
  --blue-700: #1e40af;
  --blue-900: #0f172a;
  --text-primary: #0a1628;
  --text-secondary: #334155;
  --banner-height: 2.75rem;
  --header-height: 4.25rem;
  --inquiry-bar-height: 3.75rem;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-height) + var(--header-height));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--white);
  color: var(--text-primary);
  text-align: center;
  overflow-x: hidden;
  padding-bottom: calc(var(--inquiry-bar-height) + env(safe-area-inset-bottom, 0px));
}

/* ── Fixed franchise banner ── */

.franchise-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--banner-height);
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
}

.franchise-banner__inner {
  width: 100%;
  max-width: 72rem;
}

.franchise-banner__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.franchise-banner__row {
  display: inline-flex;
  align-items: center;
}

.franchise-banner__row--main {
  gap: 0.45rem;
}

.franchise-banner__row--sub {
  gap: 0.45em;
}

.franchise-banner__row--sub::before {
  content: "|";
  margin: 0 0.65em;
  opacity: 0.5;
}

.franchise-banner__pulse {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.22);
  animation: banner-pulse 1.2s ease-in-out infinite;
}

@keyframes banner-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}

.franchise-banner__highlight {
  font-weight: 800;
}

.franchise-banner__divider {
  opacity: 0.65;
}

/* ── Site header ── */

.site-header {
  position: sticky;
  top: var(--banner-height);
  z-index: 150;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 80rem;
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header__start {
  justify-self: start;
}

.site-header__end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  justify-self: center;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.4rem;
  transition: background 0.2s, border-color 0.2s;
}

.site-header__inquiry:hover,
.site-header__inquiry:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.site-header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo-img {
  display: block;
  height: 3rem;
  width: auto;
}

.site-nav {
  justify-self: center;
  grid-column: 2;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.15rem;
  list-style: none;
}

.site-nav__link {
  display: block;
  padding: 0.4rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0.35rem;
  transition: color 0.2s, background 0.2s;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.site-nav__link--cta {
  padding: 0.42rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 0.45rem;
  box-shadow: none;
}

.site-nav__link--cta:hover,
.site-nav__link--cta:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

.site-nav__toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.55rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.site-nav__toggle:hover,
.site-nav__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.site-nav__toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.2rem;
  height: 1rem;
}

.site-nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Shared wave animation */

.wave-track {
  display: flex;
  width: 200%;
  height: 100%;
  animation: wave-scroll 14s linear infinite;
}

.wave-track svg {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: block;
}

.wave-track path {
  fill: currentColor;
}

@keyframes wave-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-track {
    animation: none;
    width: 100%;
  }

  .wave-track svg:last-child {
    display: none;
  }
}

/* ── Hero ── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--banner-height) - var(--header-height));
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
}

/* Background layers */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slideshow,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slideshow {
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.9s ease;
  will-change: transform, opacity;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
  animation: slide-zoom-out var(--slide-duration, 5s) ease-out forwards;
}

@keyframes slide-zoom-out {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
    transform: none;
    animation: none !important;
  }

  .hero__slide:not(.is-active) {
    display: none;
  }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: none;
  pointer-events: none;
}

/* Car wash tunnel animation */

.hero__wash {
  display: none;
}

/* ① 세차 터널 물커튼 */
.hero__wash-curtains {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 4%;
}

.hero__wash-curtain {
  width: 3px;
  height: 50%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(147, 197, 253, 0.2) 15%,
    rgba(96, 165, 250, 0.65) 50%,
    rgba(59, 130, 246, 0.3) 85%,
    transparent 100%
  );
  filter: blur(0.5px);
  animation: curtain-fall 1.4s linear infinite;
}

.hero__wash-curtain:nth-child(1) { animation-delay: 0s; opacity: 0.7; }
.hero__wash-curtain:nth-child(2) { animation-delay: 0.18s; opacity: 0.85; }
.hero__wash-curtain:nth-child(3) { animation-delay: 0.36s; }
.hero__wash-curtain:nth-child(4) { animation-delay: 0.1s; opacity: 0.75; }
.hero__wash-curtain:nth-child(5) { animation-delay: 0.28s; opacity: 0.9; width: 4px; }
.hero__wash-curtain:nth-child(6) { animation-delay: 0.44s; }
.hero__wash-curtain:nth-child(7) { animation-delay: 0.14s; opacity: 0.8; }
.hero__wash-curtain:nth-child(8) { animation-delay: 0.32s; }
.hero__wash-curtain:nth-child(9) { animation-delay: 0.06s; opacity: 0.65; }

@keyframes curtain-fall {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(220%);
  }
}

/* ② 회전 브러시 밴드 */
.hero__wash-brush {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 140px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0px,
    rgba(191, 219, 254, 0.45) 6px,
    rgba(255, 255, 255, 0.6) 12px,
    rgba(147, 197, 253, 0.35) 18px,
    rgba(255, 255, 255, 0.5) 24px
  );
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
  opacity: 0;
  animation: brush-pass 7s ease-in-out infinite;
}

@keyframes brush-pass {
  0%, 12% {
    top: -18%;
    opacity: 0;
  }
  18% {
    opacity: 0.4;
  }
  55% {
    top: 105%;
    opacity: 0.35;
  }
  65%, 100% {
    top: 105%;
    opacity: 0;
  }
}

/* ③ 거품 웨이브 */
.hero__wash-foam {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 40%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(255, 255, 255, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 55% 100%, rgba(219, 234, 254, 0.4) 0%, transparent 65%),
    radial-gradient(ellipse 55% 48% at 85% 100%, rgba(255, 255, 255, 0.38) 0%, transparent 68%),
    linear-gradient(0deg, rgba(219, 234, 254, 0.28) 0%, transparent 100%);
  animation: foam-wave 5s ease-in-out infinite alternate;
}

@keyframes foam-wave {
  0% {
    transform: translateY(18%) scaleY(0.85);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0) scaleY(1);
    opacity: 0.35;
  }
}

/* ④ 광택 코팅 스윕 */
.hero__wash-gleam {
  position: absolute;
  inset: -60%;
  width: 220%;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.7) 48.5%,
    rgba(186, 230, 253, 0.5) 50%,
    rgba(255, 255, 255, 0.65) 51.5%,
    transparent 58%
  );
  opacity: 0;
  animation: gleam-coat 7s ease-in-out infinite;
  animation-delay: 3.8s;
}

@keyframes gleam-coat {
  0%, 52% {
    transform: translateX(-60%) rotate(0deg);
    opacity: 0;
  }
  58% {
    opacity: 0.35;
  }
  72% {
    transform: translateX(60%) rotate(0deg);
    opacity: 0.28;
  }
  82%, 100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__wash {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero__wash {
    display: none;
  }
}

/* Content */

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.85rem;
  max-width: 56rem;
  width: 100%;
}

/* Main headline */

.hero__eyebrow {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--blue-200);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  text-align: center;
}

.hero__eyebrow::before {
  content: "HOT";
  display: inline-block;
  margin-right: 0.45rem;
  vertical-align: middle;
  padding: 0.15rem 0.45rem;
  font-size: 0.72em;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 100px;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  width: 100%;
  max-width: 40rem;
  padding: 1.35rem 1.75rem 1.5rem;
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid #e2e8f0;
  border-radius: 1.1rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  text-wrap: balance;
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--lead {
  font-size: 0.58em;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #334155;
}

.hero__headline-line--impact {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.04em;
  color: #0f172a;
  white-space: nowrap;
}

.hero__money {
  display: inline-block;
  margin: 0 0.04em;
  padding: 0.02em 0.12em;
  font-size: 1.22em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #b91c1c;
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  border-radius: 0.12em;
  box-shadow: inset 0 0 0 2px #fed7aa;
}

.hero__money-unit {
  font-size: 0.92em;
  font-weight: 900;
  color: #c2410c;
}

.hero__headline-end {
  margin-left: 0.12em;
  font-size: 0.88em;
  font-weight: 900;
  color: #1d4ed8;
}

.hero__highlight {
  color: var(--blue-600);
}

/* Emphasis block */

.hero__emphasis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  padding: 1.15rem 1.75rem;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  border-radius: 0.6rem;
  box-shadow:
    0 4px 24px rgba(37, 99, 235, 0.25),
    0 1px 3px rgba(37, 99, 235, 0.15);
  width: 100%;
  max-width: 36rem;
}

.hero__emphasis-line {
  font-size: clamp(1.25rem, 3.6vw, 1.75rem);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
}

.hero__emphasis-line--brand {
  font-size: clamp(1.55rem, 4.2vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* Footer CTA badges */

.hero__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
  max-width: 40rem;
}

.hero__footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.35rem;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.hero__footer-badge--live {
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--blue-200);
}

.hero__footer-badge--live strong {
  color: var(--blue-600);
}

.hero__footer-badge--urgent {
  color: #9a3412;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #fdba74;
}

.hero__footer-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: hero-cta-pulse 1.2s ease-in-out infinite;
}

.hero__footer-mark {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  font-size: 0.82em;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 100px;
}

@keyframes hero-cta-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}

/* Hero bottom wave */

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 4;
  height: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
  pointer-events: none;
  color: var(--blue-50);
}

/* ── Responsive ── */

@media (min-width: 901px) {
  :root {
    --header-height: 5rem;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 1rem 1.25rem;
    height: var(--header-height);
    padding: 0 1.75rem;
  }

  .site-header__start {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header__logo-img {
    height: 3.5rem;
  }

  .site-nav {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    width: auto;
    padding: 0;
    overflow: visible;
    background: none;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.2rem;
  }

  .site-nav__link {
    padding: 0.45rem 0.7rem;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .site-header__inquiry {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
  }

  .site-header__end {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
  }

  .site-header__start {
    grid-column: 1;
    justify-self: start;
  }

  .site-header__inquiry {
    display: inline-flex;
    grid-column: 2;
    justify-self: center;
    padding: 0.55rem 1.05rem;
    font-size: 0.92rem;
    font-weight: 800;
    border-width: 2px;
    border-radius: 0.5rem;
  }

  .site-header__end {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    display: flex;
  }

  .site-header__start,
  .site-header__end {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--banner-height) + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 160;
    grid-column: unset;
    justify-self: unset;
    width: 100%;
    padding: 0.75rem 1rem 1.5rem;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--blue-700) 0%, var(--blue-600) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .site-nav__link {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    text-align: left;
  }

  .site-nav__toggle {
    display: inline-flex;
    position: relative;
    z-index: 170;
    touch-action: manipulation;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 155;
    background: rgba(15, 23, 42, 0.35);
  }
}

@media (max-width: 768px) {
  :root {
    --banner-height: 3.65rem;
  }

  .franchise-banner {
    padding: 0.4rem 0.75rem;
  }

  .franchise-banner__text {
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .franchise-banner__row--main {
    font-size: 0.84rem;
    font-weight: 800;
  }

  .franchise-banner__row--sub {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.94;
  }

  .franchise-banner__row--sub::before {
    display: none;
  }

  .franchise-banner__pulse {
    width: 6px;
    height: 6px;
  }

  .hero__emphasis-line,
  .hero__footer-badge span {
    line-height: 1.65;
    word-break: keep-all;
  }

  .hero {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 2.75rem;
  }
}

@media (max-width: 640px) {
  :root {
    --banner-height: 3.65rem;
    --header-height: 3.5rem;
  }

  .site-header__inner {
    padding: 0 0.75rem;
  }

  .site-header__logo-img {
    height: 2.35rem;
    max-width: 100%;
  }

  .hero {
    padding: 3.5rem 1.25rem 2.5rem;
  }

  .hero__content {
    gap: 1.25rem;
    margin-top: 0.5rem;
  }

  .hero__headline {
    padding: 1.1rem 1.25rem 1.2rem;
    border-radius: 0.9rem;
  }

  .hero__headline-line--impact {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .hero__headline-end {
    flex-basis: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero__footer {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero__footer-badge {
    justify-content: center;
    width: 100%;
    max-width: 22rem;
  }

  .hero__eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: calc(100% - 0.5rem);
    padding: 0.5rem 0.85rem;
    font-size: clamp(0.72rem, 3.2vw, 0.88rem);
    line-height: 1.3;
  }

  .hero__eyebrow::before {
    flex-shrink: 0;
    margin-right: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__footer-dot {
    animation: none;
  }

  .franchise-banner__pulse {
    animation: none;
  }
}
