@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-Light-BF63c8a6bd51e41.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-Regular-BF63c8a6bd99c7c.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-Medium-BF63c8a6bded0de.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-Semibold-BF63c8a6bb35edc.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-Bold-BF63c8a6bb34694.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-LightItalic-BF63c8a6bd765e5.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-RegularItalic-BF63c8a6bd5ba64.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-MediumItalic-BF63c8a6bbf41bb.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-SemiboldItalic-BF63c8a6bc98afb.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Bega";
  src: url("./bega-font-family/Bega-BoldItalic-BF63c8a6bd4c6ee.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #faf8f3;
  --bg-soft: #fbf6f2;
  --surface: #fffdfa;
  --surface-alt: #f1e6de;
  --text: #212121;
  --muted: #6d6660;
  --border: #dfd2c8;
  --primary: #7C0606;
  --primary-dark: #570d10;
  --primary-ink: #fff7f1;
  --accent: #31553a;
  --shadow: 0 24px 60px rgba(50, 24, 12, 0.14);
  --radius: 20px;
  --container: 1180px;
  --page-gutter: 2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(110, 17, 20, 0.07), transparent 28%),
    radial-gradient(circle at top right, rgba(49, 85, 58, 0.08), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-full {
  padding: 5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 240, 235, 0.86);
  border-bottom: 1px solid rgba(223, 210, 200, 0.8);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.brand img,
.footer-brand img {
  display: block;
  width: auto;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links a,
.mobile-menu a,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  margin: 0.23rem auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - var(--page-gutter)));
  margin: 0 auto 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: var(--shadow);
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 1.5rem;
  }
}

.mobile-menu.is-open {
  display: grid;
  gap: 1rem;
}

.mobile-auth {
  display: grid;
  gap: 0.75rem;
}

.mobile-auth .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary,
.button-nav {
  background: var(--primary);
  color: var(--primary-ink);
}

.button-primary:hover,
.button-nav:hover {
  background: var(--primary-dark);
  color: var(--primary-ink);
}

.button-login {
  border-color: rgba(124, 6, 6, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
}

.button-login:hover {
  background: rgba(124, 6, 6, 0.08);
  color: var(--primary-dark);
}

.desktop-cta {
  flex-shrink: 0;
}

.button-outline {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.button-outline:hover {
  background: transparent;
  color: var(--primary-dark);
}

.button-light {
  background: transparent;
  border-color: rgba(255, 247, 241, 0.38);
  color: var(--primary-ink);
}

.button.pitch-button-primary {
  width: auto;
  height: auto;
  min-height: 48px;
  padding: 0.5rem 2rem;
  border-radius: 99px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.button-light.pitch-button-primary {
  background: #7c0606;
  color: #ffffff;
  border: none;
}

.button-light.pitch-button-primary:hover {
  background: #570d10;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 6, 6, 0.2);
}

.button-clear.pitch-button-primary {
  border: 1px solid #7c0606;
  color: #7c0606;
  background: transparent;
}

.button-clear.pitch-button-primary:hover {
  background: #7c0606;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 6, 6, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: 4rem;
  min-height: calc(100vh - 5.5rem);
  padding-top: 2rem;
}

.hero-facility-background {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding-inline: clamp(1.25rem, 3vw, 2rem);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(124, 6, 6, 0.56) 0%, rgba(169, 14, 14, 0.32) 50%, rgba(233, 27, 27, 0.42) 100%),
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("./assets/section-hero-bg.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-facility-background .hero-title-line,
.hero-facility-background .hero-copy p {
  color: var(--primary-ink);
}

.hero-facility-background .hero-title .hero-title-accent {
  color: var(--primary);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28), 0 1px 4px rgba(0, 0, 0, 0.22);
}

.hero-facility-background .eyebrow {
  background: var(--primary);
  color: var(--primary-ink);
}

.hero-facility-background .eyebrow::before {
  background: var(--primary-ink);
}

.hero-facility-background .button-primary {
  background: var(--primary-ink);
  color: var(--primary-dark);
}

.hero-facility-background .button-primary:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.hero-facility-background .button-outline {
  color: var(--primary-ink);
}

.hero-facility-background .button-outline:hover {
  color: #ffffff;
}

.hero-copy {
  grid-column: 1 / -1;
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy h1,
.section-intro h2,
.pitch-card h2,
.final-cta h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(3rem, 3vw, 4.8rem);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 72px;
  line-height: 77.76px;
  letter-spacing: -2.16px;
  vertical-align: middle;
}

.pitch-accent,
.final-cta h2 span {
  color: var(--primary);
  font-style: italic;
}

.hero-title-line {
  display: block;
  color: white;
  font-style: normal;
}

.hero-title-line:first-child {
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(40px, 6vw, 72px); 
  font-weight: 500;
  
}

.hero-title .hero-title-accent {
  color: var(--primary);
  font-family: "Ubuntu", sans-serif;
  font-size: 100px;
  font-weight: 500;
}

.eyebrow,
.section-kicker,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-kicker {
  padding-left: 0;
  color: var(--primary);
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1.44px;
  vertical-align: middle;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.5rem;
  background: var(--primary);
  color: #F7EEEE;
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.75px;
  vertical-align: middle;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 auto;
}

.hero-copy p,
.section-intro p,
.step-card p,
.pitch-text,
.final-cta p {
  color: #000000CC;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 24px;
  line-height: 30.8px;
  letter-spacing: 0;
  vertical-align: middle;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 19rem;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.hero-card img.is-fading {
  opacity: 0.4;
}

.hero-badge,
.hero-slots {
  position: absolute;
  top: 1rem;
  z-index: 1;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-badge {
  left: 1rem;
  background: var(--accent);
  color: #f5fff6;
}

.hero-slots {
  right: 1rem;
  background: rgba(255, 253, 250, 0.94);
  color: var(--text);
}

.hero-slots span {
  color: var(--muted);
  font-weight: 500;
}

.hero-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
}

.facility-name {
  margin: 0 0 0.25rem;
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
}

.facility-badge,
.facility-period {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.facility-price {
  margin: 0 0 0.2rem;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: right;
}

.trust-bar {
  background: var(--primary);
  color: var(--primary-ink);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
  padding: 1rem 0;
  font-size: 0.95rem;
}

.trust-items strong {
  text-decoration: none;
}

.centered {
  text-align: center;
}

.section-intro {
  margin-bottom: 2.8rem;
}

.section-intro.centered {
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.8rem;
}

.section-intro h2,
.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 0.8rem;
}

.section-intro .services-title {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}

.section-intro .how-it-works-title {
  font-family: "Ubuntu", sans-serif;
}

.section-intro .how-it-works-subtitle {
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #000000;
}

.section-intro .services-subtitle {
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 80%;
  letter-spacing: 0;
  text-align: center;
  color: #4A5565;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.8rem;
  background: rgba(255, 253, 250, 0.62);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 17, 20, 0.28);
}

.steps-grid h3 {
  font-family: "Ubuntu", sans-serif;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0.85rem;
  margin-bottom: 0.9rem;
}

.service-card h3,
.step-card h3,
.site-footer h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.service-card h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}

.service-card p,
.service-card strong {
  display: block;
  margin: 0;
  font-size: 0.85rem;
}

.service-card p {
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--muted);
}

.service-card strong {
  margin-top: 0.35rem;
  color: var(--primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.step-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background: rgba(255, 253, 250, 0.8);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-ink);
}

.step-card:hover p,
.step-card:hover .step-number {
  color: rgba(255, 247, 241, 0.88);
}

.step-number {
  font-family: "Ubuntu", sans-serif;
  color: var(--primary);
  font-size: 2.8rem;
}

.step-icon {
  margin: 1rem 0;
  font-size: 1.8rem;
}

.step-icon-document {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  opacity: 1;
  border-radius: 12px;
  background: #eef7f1;
}

.step-card p {
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 23.8px;
  letter-spacing: 0;
  vertical-align: middle;
}

.cta-cards {
  background: #7c0606;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pitch-card {
  padding: 2.5rem;
  border-radius: 2rem;
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pitch-card-soft {
  background: #ffffff;
}

.pill {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 247, 241, 0.25);
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1.15px;
  vertical-align: middle;
  text-transform: uppercase;
}

.pill-business {
  justify-content: center;
  padding: 0.4rem 1rem;
  border: 0;
  border-radius: 99px;
  background: #fff1f1;
  color: #7c0606;
}

.pitch-card h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.pitch-card .pitch-title-primary {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.pitch-accent {
  margin: 0 0 1.25rem;
  color: #ffd7c1;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.pitch-card .pitch-accent-primary {
  color: #1a1a1a;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pitch-text {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.pitch-text-primary {
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 25.2px;
  letter-spacing: 0;
  vertical-align: middle;
}

.check-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.9rem;
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  color: #2d3748;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  background: url("./check.svg") no-repeat center / contain;
}

.stats-section {
  background: transparent;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--primary);
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.44px;
  text-align: center;
  vertical-align: middle;
}

.stats-grid p {
  margin: 0;
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  line-height: 20.4px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: var(--muted);
}

.final-cta {
  background: #faf8f3;
  text-align: center;
}

.final-cta .final-cta-title-line {
  display: inline;
  color: #000000;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 56px;
  line-height: 61.6px;
  letter-spacing: -1.68px;
  text-align: center;
  vertical-align: middle;
}

.final-cta .final-cta-title-accent {
  color: #7c0606;
  font-style: italic;
}

.final-cta p {
  max-width: 38rem;
  margin: 0 auto 2rem;
  font-family: "Bega", "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  background: var(--primary);
  color: var(--primary-ink);
}

.footer-brand img {
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-copy,
.site-footer p,
.site-footer a {
  color: rgba(255, 247, 241, 0.76);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--primary-ink);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 0.45rem;
}

.site-footer .footer-link-how {
  color: #6b7066;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
}

.site-footer a:hover {
  color: #ffffff;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.socials a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 247, 241, 0.22);
  border-radius: 999px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 247, 241, 0.16);
}

.footer-bottom .container {
  padding: 1rem 0;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: clamp(3.4rem, 7vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-title-line:first-child,
  .hero-title .hero-title-accent {
    font-size: inherit;
  }

  .hero-copy p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    gap: 2rem;
    padding-top: 1rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-card {
    order: 2;
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .hero-title {
    font-size: clamp(2.6rem, 10vw, 3.75rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-title-line:first-child,
  .hero-title .hero-title-accent {
    font-size: inherit;
  }

  .hero-title-line:first-child {
    white-space: normal;
  }

  .hero-copy p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .button {
    flex: 0 0 auto;
  }

  .hero-card img {
    height: 17rem;
  }

  .hero-card-copy {
    padding: 1rem;
  }

  .hero-badge,
  .hero-slots {
    top: 0.85rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
  }

  .facility-name {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .facility-price {
    font-size: 1.2rem;
  }

  .section,
  .section-full {
    padding: 4rem 0;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .nav-main {
    gap: 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .services-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .hero-facility-background.container {
    width: 100%;
  }

  .hero {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .eyebrow {
    margin-bottom: 1rem;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    width: auto;
    white-space: nowrap;
  }

  .hero-actions .button-primary {
    min-height: 2.7rem;
    padding: 0.58rem 1.15rem;
    line-height: 1;
  }

  .hero-actions .button-outline {
    display: inline-flex;
    align-items: center;
    min-height: 2.7rem;
    line-height: 1;
  }

  .hero-card img {
    height: 15rem;
  }

  .services-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .facility-price {
    text-align: left;
  }

  .hero-badge,
  .hero-slots {
    max-width: calc(100% - 1.5rem);
  }

  .hero-slots {
    top: auto;
    bottom: 8.4rem;
    right: 0.75rem;
  }

  .hero-badge {
    left: 0.75rem;
  }
}
