:root {
  --bg: #f5f8f6;
  --bg-soft: #eef4f0;
  --surface: #ffffff;
  --surface-2: #f8fbf9;

  --text: #0f1728;
  --muted: #5e6b63;
  --line: rgba(15, 23, 40, 0.08);
  --line-strong: rgba(15, 23, 40, 0.12);

  --accent: #16c784;
  --accent-2: #0fa56c;
  --accent-soft: rgba(22, 199, 132, 0.12);

  --shadow-sm: 0 10px 30px rgba(15, 23, 40, 0.06);
  --shadow-md: 0 20px 60px rgba(15, 23, 40, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 40, 0.12);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(22, 199, 132, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbf9 0%, #f4f8f5 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a,
button {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 249, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(22, 199, 132, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.brand-logo {
  display: block;
  width: clamp(150px, 18vw, 240px);
  height: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 16px 35px rgba(22, 199, 132, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 45px rgba(22, 199, 132, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-large {
  padding: 16px 28px;
  font-size: 1rem;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-text {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-points {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.point {
  min-width: 160px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.point strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 3px;
}

.point span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-lg);
  background: #dde8e2;
  min-height: 620px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 23, 40, 0.48), transparent 34%),
    linear-gradient(to right, rgba(15, 23, 40, 0.18), transparent 38%);
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 620px;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 40, 0.45);
  color: #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 40, 0.18);
}

.hero-badge-top {
  top: 20px;
  left: 20px;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(22, 199, 132, 0.14);
}

.hero-badge-bottom {
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  border-radius: 20px;
}

.hero-badge-bottom strong {
  font-size: 1rem;
}

.stats {
  padding: 20px 0 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(22, 199, 132, 0.05), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(15, 165, 108, 0.035), transparent 26%);
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.88));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(22, 199, 132, 0.07), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(22, 199, 132, 0.04), transparent 28%);
  z-index: 0;
}

.section-alt > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  min-height: 580px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.about-copy h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.about-copy p {
  color: var(--muted);
}

.about-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.process-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.review-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.review-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.price {
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
}

.pricing-card.featured {
  border-color: rgba(22, 199, 132, 0.4);
  box-shadow: 0 20px 55px rgba(22, 199, 132, 0.14);
}

.pricing-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.booking-section {
  padding-top: 90px;
}

.booking-heading {
  max-width: 760px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.booking-card {
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.booking-ui {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.98)),
    linear-gradient(135deg, rgba(22,199,132,0.08), transparent 36%);
  padding: 30px;
}

.booking-ui-top h3 {
  margin: 14px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.booking-ui-top p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.booking-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-dots {
  display: flex;
  gap: 8px;
}

.booking-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 40, 0.18);
}

.booking-steps {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.booking-step.active {
  border-color: rgba(22, 199, 132, 0.35);
  box-shadow: 0 12px 30px rgba(22, 199, 132, 0.08);
}

.booking-step-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-step strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.booking-step span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-times {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.booking-times-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.booking-times-head strong {
  font-family: "Space Grotesk", sans-serif;
}

.booking-times-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.time-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.time-chip {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(22, 199, 132, 0.08);
  border: 1px solid rgba(22, 199, 132, 0.16);
  color: var(--accent-2);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.time-chip:hover {
  transform: translateY(-1px);
  background: rgba(22, 199, 132, 0.14);
  border-color: rgba(22, 199, 132, 0.28);
}

.booking-action {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.booking-action p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-benefits {
  position: relative;
  isolation: isolate;
  background: url("assets/spine.webp") center / cover no-repeat;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
}

.booking-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 40%, rgba(7, 13, 12, 0.22) 100%),
    linear-gradient(
      90deg,
      rgba(10, 18, 17, 0.56) 0%,
      rgba(10, 18, 17, 0.34) 26%,
      rgba(10, 18, 17, 0.14) 50%,
      rgba(10, 18, 17, 0.08) 100%
    );
}

.booking-benefits > * {
  position: relative;
  z-index: 1;
}

.booking-benefits .eyebrow {
  color: #7ef0bd;
}

.booking-benefits h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.booking-benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.booking-benefits-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.booking-benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7ef0bd;
}

.booking-mini-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.booking-mini-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(126, 240, 189, 0.12);
  color: #7ef0bd;
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-mini-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.booking-mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-section {
  padding: 30px 0 96px;
}

.cta-box {
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(22, 199, 132, 0.18), transparent 28%),
    linear-gradient(135deg, #101b1a 0%, #15221d 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-copy h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
}

.cta-box .eyebrow {
  color: #7ef0bd;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-copy h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.contact-copy > p {
  color: var(--muted);
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  margin-top: 26px;
}

.contact-map {
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.site-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-credit {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.footer-credit a {
  color: var(--accent-2);
  font-weight: 600;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-credit a:hover {
  opacity: 0.85;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  display: block;
  width: clamp(120px, 14vw, 180px);
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.stat-card,
.service-card,
.process-card,
.review-card,
.pricing-card {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.stat-card:hover,
.service-card:hover,
.process-card:hover,
.review-card:hover,
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(15, 23, 40, 0.09);
  border-color: rgba(22, 199, 132, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow:
    0 16px 35px rgba(22, 199, 132, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-primary:hover {
  box-shadow:
    0 22px 45px rgba(22, 199, 132, 0.28),
    0 0 28px rgba(22, 199, 132, 0.12);
}

@media (max-width: 1080px) {
  .menu {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .services-grid,
  .process-grid,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card,
  .hero-card img {
    min-height: 520px;
  }

  .about-image img {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    min-height: 74px;
  }

  .btn-nav {
    display: none;
  }

  .hero {
    padding: 42px 0 24px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points,
  .stats-grid,
  .services-grid,
  .process-grid,
  .reviews-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .point {
    min-width: 0;
  }

  .hero-card,
  .hero-card img {
    min-height: 420px;
  }

  .hero-badge-top {
    top: 14px;
    left: 14px;
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .hero-badge-bottom {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 15px;
  }

  .section {
    padding: 72px 0;
  }

  .booking-ui,
  .booking-benefits,
  .cta-box {
    padding: 24px;
  }

  .booking-ui-top h3,
  .booking-benefits h3 {
    font-size: 1.5rem;
  }

  .booking-times-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .time-chips {
    gap: 10px;
  }

  .time-chip {
    width: 100%;
    justify-content: center;
  }

.cta-box {
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.cta-box .btn {
  width: 100%;
  justify-content: center;
}

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-credit {
  max-width: 100%;
}

@media (max-width: 768px) {
  .brand-logo {
    width: 150px;
  }

  .footer-logo {
    width: 130px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-logo-link {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}