:root {
  color-scheme: light;

  /* EDITAR COLORES: cambia estas variables para ajustar la marca. */
  --navy: #102a55;
  --navy-soft: #183868;
  --lavender: #8c86bd;
  --lavender-soft: #ebe8f8;
  --peach: #e8a781;
  --peach-soft: #fff0e6;
  --cream: #fffaf5;
  --white: #ffffff;
  --ink: #19253d;
  --muted: #6f7488;
  --line: #ece2dc;
  --shadow: 0 24px 60px rgba(16, 42, 85, 0.14);
  --shadow-soft: 0 14px 34px rgba(16, 42, 85, 0.08);
  --radius: 26px;
  --radius-mobile: 20px;
  --page-gutter: clamp(16px, 5vw, 72px);
  --section-y: clamp(52px, 8vw, 104px);
  --tap-target: 48px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(140, 134, 189, 0.22), transparent 32rem),
    radial-gradient(circle at top right, rgba(232, 167, 129, 0.24), transparent 28rem),
    var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  min-width: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}

button,
a,
input,
select,
textarea {
  touch-action: manipulation;
}

input,
select,
textarea {
  min-height: var(--tap-target);
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(140, 134, 189, 0.18);
  outline: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.04;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7.4vw, 6.85rem);
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.4vw, 3.85rem);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.section-pad {
  padding: var(--section-y) var(--page-gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 24px);
  min-height: 78px;
  padding: 12px var(--page-gutter);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(236, 226, 220, 0.9);
  backdrop-filter: blur(18px);
}

.header-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(100%, 360px);
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(16, 42, 85, 0.1);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.brand small {
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 800;
}

.availability-pill {
  --status-color: #20b86f;
  --status-soft: rgba(32, 184, 111, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: var(--tap-target);
  border: 1px solid rgba(32, 184, 111, 0.24);
  border-radius: 999px;
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--white), var(--status-soft));
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(16, 42, 85, 0.1);
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.availability-pill[hidden] {
  display: none;
}

.availability-pill[data-status="busy"] {
  --status-color: #d83a3a;
  --status-soft: rgba(216, 58, 58, 0.13);
  border-color: rgba(216, 58, 58, 0.24);
}

.availability-pill.compact {
  min-height: 48px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.availability-light {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--status-color);
  box-shadow:
    0 0 0 8px var(--status-soft),
    0 0 26px var(--status-color);
  animation: statusPulse 1.8s ease-in-out infinite;
  flex: 0 0 auto;
}

.availability-pill.compact .availability-light {
  width: 18px;
  height: 18px;
}

.availability-pill.is-owner-toggle {
  cursor: pointer;
}

.availability-pill.is-owner-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(16, 42, 85, 0.14);
}

.availability-pill.is-owner-toggle:focus-visible {
  outline: 4px solid rgba(140, 134, 189, 0.25);
  outline-offset: 3px;
}

.availability-pill.is-saving {
  opacity: 0.72;
  pointer-events: none;
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 7px var(--status-soft),
      0 0 24px var(--status-color);
  }

  50% {
    transform: scale(1.12);
    box-shadow:
      0 0 0 13px transparent,
      0 0 34px var(--status-color);
  }
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 4px;
  background: var(--white);
}

.language-button {
  min-width: 42px;
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.language-button.is-active {
  background: var(--navy);
  color: var(--white);
}

.floating-admin-language-toggle:not([hidden]),
[data-admin-language-toggle]:not([hidden]) {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  width: auto;
  box-shadow: 0 16px 38px rgba(16, 42, 85, 0.16);
}

body.inline-admin-mode .floating-admin-language-toggle:not([hidden]),
body.inline-admin-mode [data-admin-language-toggle]:not([hidden]) {
  bottom: 96px;
}

.header-dashboard-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  padding: 0 14px;
  background: transparent;
  color: var(--navy-soft);
  font-weight: 800;
  white-space: nowrap;
}

.header-dashboard-link:hover {
  background: var(--lavender-soft);
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: var(--page-gutter);
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  width: min(320px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--navy-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav.is-open {
  display: flex;
}

.site-nav.app-nav {
  position: static;
  display: flex;
  width: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.site-nav a {
  border-radius: 16px;
  padding: 13px 14px;
  min-height: 44px;
}

.site-nav a:hover {
  background: var(--lavender-soft);
}

.nav-button {
  border: 0;
  border-radius: 16px;
  padding: 13px 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  min-height: 44px;
}

.nav-toggle {
  display: block;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--navy);
}

.app-nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 360px), 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  min-height: min(980px, calc(100svh - 78px));
  background-image: url("https://gpeqtyemmpynkskzacon.supabase.co/storage/v1/object/public/website-images/background6.png");
  background-position: center clamp(-170px, -8vw, -90px);
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--navy-soft);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.hero-phone {
  display: inline-grid;
  gap: 4px;
  max-width: 100%;
  margin-top: 22px;
  border: 2px solid rgba(232, 167, 129, 0.8);
  border-radius: 28px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(16, 42, 85, 0.14);
}

.hero-phone span {
  color: var(--lavender);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-phone strong {
  color: var(--navy);
  font-size: clamp(2.35rem, 5.6vw, 4.65rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.hero-status {
  margin-top: 18px;
}

.hero-note {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.create-account-callout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(180px, 360px);
  align-items: center;
  gap: 12px;
  width: min(100%, 640px);
  margin-top: 18px;
  border-radius: 22px;
  text-decoration: none;
}

.create-account-benefits {
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateX(18px);
  animation: accountBenefitsReveal 5.2s ease-in-out infinite;
}

.create-account-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  border: 1px solid rgba(140, 134, 189, 0.32);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 42, 85, 0.08);
}

.create-account-image-link {
  display: block;
  width: 100%;
  border-radius: 22px;
  line-height: 0;
  animation: accountImageSlide 5.2s ease-in-out infinite;
  transition: filter 180ms ease;
}

.create-account-callout:hover .create-account-image-link {
  filter: drop-shadow(0 16px 26px rgba(16, 42, 85, 0.16));
}

.create-account-callout:focus-visible {
  outline: 4px solid rgba(140, 134, 189, 0.28);
  outline-offset: 4px;
}

.create-account-image-link img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes accountImageSlide {
  0%,
  22%,
  100% {
    transform: translateX(-46%);
  }

  42%,
  78% {
    transform: translateX(0);
  }
}

@keyframes accountBenefitsReveal {
  0%,
  26%,
  100% {
    opacity: 0;
    transform: translateX(18px);
  }

  44%,
  76% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .create-account-image-link,
  .create-account-benefits {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(140, 134, 189, 0.35);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 42, 85, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 150px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 0 22px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(16, 42, 85, 0.2);
}

.button.primary:hover {
  background: var(--navy-soft);
}

.button.secondary {
  background: var(--peach);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(232, 167, 129, 0.24);
}

.button.ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy);
}

.button.wide {
  width: 100%;
}

.hero-card {
  position: relative;
  justify-self: center;
  width: min(100%, 760px);
  overflow: hidden;
  border: 1px solid rgba(236, 226, 220, 0.92);
  border-radius: 34px;
  padding: clamp(14px, 2.2vw, 22px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-image-stack {
  position: relative;
  z-index: 1;
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 26px;
}

.hero-pricing-overlay {
  position: absolute;
  left: 50%;
  width: min(88%, 680px);
  bottom: 27%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 58px);
  align-items: end;
  perspective: 1200px;
  transform: translateX(-50%);
}

.hero-pricing-overlay::after {
  position: absolute;
  top: 64%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: clamp(26px, 3.8vw, 42px);
  height: clamp(26px, 3.8vw, 42px);
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  content: "ó";
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 22px rgba(16, 42, 85, 0.18);
  pointer-events: none;
}

.flip-pricing-card {
  display: grid;
  min-height: clamp(144px, 16.2vw, 202px);
  transform-style: preserve-3d;
  will-change: transform;
}

.flip-pricing-card.is-flipping {
  animation: pricing-card-flip 720ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

@keyframes pricing-card-flip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(90deg);
  }

  100% {
    transform: rotateY(0deg);
  }
}

.flip-card-face {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100%;
  border: clamp(3px, 0.55vw, 6px) solid rgba(255, 255, 255, 0.92);
  border-radius: clamp(16px, 2.4vw, 24px);
  padding: clamp(32px, 4vw, 48px) clamp(14px, 2vw, 24px) clamp(16px, 2.3vw, 26px);
  text-align: center;
  box-shadow:
    0 20px 22px rgba(16, 42, 85, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  backface-visibility: hidden;
}

.flip-pricing-card.day .flip-card-face {
  background:
    linear-gradient(90deg, transparent 8%, rgba(245, 197, 169, 0.8) 28%, rgba(245, 197, 169, 0.8) 72%, transparent 92%) center 53% / 78% 21% no-repeat,
    radial-gradient(circle at 88% 46%, rgba(232, 167, 129, 0.32), transparent 2.8rem),
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(255, 243, 236, 0.97));
}

.flip-pricing-card.night .flip-card-face {
  background:
    linear-gradient(90deg, transparent 8%, rgba(216, 211, 238, 0.76) 28%, rgba(216, 211, 238, 0.76) 72%, transparent 92%) center 53% / 78% 21% no-repeat,
    radial-gradient(circle at 12% 48%, rgba(140, 134, 189, 0.3), transparent 2.8rem),
    linear-gradient(180deg, rgba(255, 253, 255, 0.97), rgba(249, 245, 255, 0.97));
}

.flip-card-cue {
  position: absolute;
  right: clamp(10px, 1.6vw, 18px);
  bottom: clamp(10px, 1.5vw, 16px);
  display: grid;
  width: clamp(26px, 3.2vw, 38px);
  height: clamp(26px, 3.2vw, 38px);
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(16, 42, 85, 0.12);
}

.flip-card-type,
.flip-card-duration,
.flip-card-price,
.flip-card-detail {
  margin: 0;
}

.flip-card-type {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.flip-card-duration {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: min(74%, 210px);
  border-radius: 999px;
  padding: clamp(7px, 0.9vw, 11px) clamp(12px, 1.8vw, 22px);
  color: var(--white);
  font-size: clamp(0.92rem, 1.78vw, 1.24rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  box-shadow: 0 12px 20px rgba(16, 42, 85, 0.12);
}

.flip-pricing-card.day .flip-card-duration {
  background: linear-gradient(180deg, #e7ad8b, #d98f68);
}

.flip-pricing-card.night .flip-card-duration {
  background: linear-gradient(180deg, #9690c5, #827db2);
}

.flip-card-price {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.85rem, 7.15vw, 6.35rem);
  font-weight: 900;
  line-height: 0.82;
}

.flip-card-detail {
  color: var(--navy);
  font-size: clamp(0.96rem, 1.72vw, 1.24rem);
  font-weight: 800;
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .flip-pricing-card.is-flipping {
    animation: none;
  }
}

.comfort-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  border-radius: 22px;
  padding: 16px;
  background: var(--lavender-soft);
  color: var(--navy);
  font-weight: 800;
  min-width: 0;
}

.comfort-strip p {
  margin: 0;
}

.icon-bubble,
.card-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--peach-soft);
  color: var(--navy);
  font-size: 1.45rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  padding-top: 0;
}

.trust-band article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 34px rgba(16, 42, 85, 0.08);
}

.trust-band span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--peach-soft);
}

.trust-band p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.reassurance {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 0;
}

.reassurance-card,
.free-intro-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.reassurance-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 38px);
}

.reassurance-card h2,
.reassurance-card h3 {
  margin: 0;
}

.reassurance-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.no-account-card {
  background:
    radial-gradient(circle at top right, rgba(232, 167, 129, 0.28), transparent 28rem),
    rgba(255, 255, 255, 0.9);
}

.timezone-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.free-intro {
  padding-top: 0;
}

.free-intro-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at top left, rgba(232, 167, 129, 0.3), transparent 30rem),
    radial-gradient(circle at bottom right, rgba(140, 134, 189, 0.22), transparent 30rem),
    rgba(255, 255, 255, 0.92);
}

.free-intro-card h2 {
  margin: 0;
}

.free-intro-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.free-badge {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 2px solid rgba(232, 167, 129, 0.58);
  border-radius: 32px;
  background: var(--peach-soft);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 18px 40px rgba(232, 167, 129, 0.2);
}

.free-badge strong {
  display: block;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.85;
}

.free-badge span {
  max-width: 10ch;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
}

.section-heading.centered {
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.payment-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.step-card,
.payment-form,
.disclaimer-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.how {
  display: grid;
  grid-template-columns: minmax(min(100%, 280px), 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.message-faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.message-faq-questions,
.message-faq-answers {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.message-faq-questions {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(16px, 2.5vw, 22px);
}

.message-question {
  position: relative;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(140, 134, 189, 0.2);
  border-radius: 22px 22px 22px 8px;
  padding: 14px 16px;
  background: var(--lavender-soft);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.message-question:hover,
.message-question.is-active {
  transform: translateX(4px);
  border-color: rgba(232, 167, 129, 0.7);
  background: #fff7f2;
  box-shadow: 0 12px 26px rgba(16, 42, 85, 0.1);
}

.message-question.is-active::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  border-radius: 0 0 4px 0;
  background: #fff7f2;
  transform: rotate(-45deg);
  border-right: 1px solid rgba(232, 167, 129, 0.7);
  border-bottom: 1px solid rgba(232, 167, 129, 0.7);
}

.message-faq-answers {
  min-height: 320px;
  padding: clamp(22px, 4vw, 36px);
  background:
    radial-gradient(circle at top right, rgba(232, 167, 129, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.9);
}

.message-answer {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  height: 100%;
}

.message-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.message-bubble {
  max-width: 640px;
  border-radius: 26px 26px 8px 26px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(16, 42, 85, 0.22);
}

.message-bubble p {
  margin: 0;
  color: inherit;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
}

.message-bubble p + p,
.message-bubble p + ul,
.message-bubble ul + p {
  margin-top: 14px;
}

.message-bubble ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 1.15rem;
}

.message-bubble li {
  color: inherit;
  font-size: clamp(0.98rem, 1.55vw, 1.18rem);
  font-weight: 750;
  line-height: 1.45;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  padding: 18px;
}

.faq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 85, 0.42);
  backdrop-filter: blur(7px);
}

.faq-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(82svh, 720px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.faq-modal-close {
  position: sticky;
  top: 0;
  left: 100%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.faq-modal-content .message-bubble {
  max-width: none;
}

body.modal-open {
  overflow: hidden;
}

.payment {
  display: grid;
  grid-template-columns: minmax(min(100%, 260px), 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.42);
}

.payment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-weight: 900;
}

.password-input-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.password-input-wrap input {
  min-width: 0;
}

.password-toggle {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 14px;
  background: var(--lavender-soft);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.error-message {
  display: none;
  color: #ad2d2d;
  font-weight: 800;
}

.field.has-error input,
.field.has-error select {
  border-color: #d45a5a;
  background: #fff7f7;
}

.field.has-error .error-message {
  display: block;
}

.payment-button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.disclaimer {
  padding-top: 54px;
  padding-bottom: 54px;
}

.faq {
  background: rgba(255, 255, 255, 0.36);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.disclaimer-card {
  display: flex;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  background: var(--peach-soft);
}

.disclaimer-card p:last-child {
  margin: 0;
  color: var(--navy-soft);
  font-weight: 700;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) minmax(220px, 0.45fr);
  gap: 24px;
  align-items: start;
  padding: clamp(26px, 5vw, 48px);
}

.contact-card p:not(.eyebrow) {
  color: var(--muted);
}

.contact-lines {
  font-weight: 800;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.question-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.76);
}

.question-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.app-page {
  min-height: 100vh;
}

.app-nav {
  margin-left: auto;
}

.auth-layout {
  display: grid;
  min-height: calc(100vh - 78px);
  place-items: center;
  padding-inline: var(--page-gutter);
}

.auth-card,
.app-card,
.admin-form {
  width: min(100%, 760px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 44px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.auth-card h1,
.dashboard-hero h1,
.admin-layout h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.auth-card p,
.dashboard-hero p,
.admin-layout p {
  color: var(--muted);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0;
  border-radius: 18px;
  padding: 6px;
  background: var(--lavender-soft);
}

.auth-tab {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.auth-tab.is-active {
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 42, 85, 0.1);
}

.auth-form,
.account-form {
  display: grid;
  gap: 18px;
}

.account-card {
  width: min(100%, 900px);
}

.dashboard {
  display: grid;
  gap: 28px;
}

.dashboard-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(232, 167, 129, 0.28), transparent 36rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}

.booking-panel {
  display: grid;
  gap: 22px;
  width: 100%;
  background:
    radial-gradient(circle at top left, rgba(140, 134, 189, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.92);
}

.booking-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.booking-panel-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.booking-panel-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-weight: 800;
}

.booking-calendar {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(236, 226, 220, 0.92);
  border-radius: 22px;
  padding: clamp(14px, 3vw, 22px);
  background: rgba(255, 255, 255, 0.72);
}

.calendar-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
}

.calendar-head strong {
  color: var(--navy);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  text-align: center;
  text-transform: capitalize;
}

.calendar-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
  cursor: pointer;
}

.calendar-nav:hover {
  border-color: rgba(232, 167, 129, 0.85);
  background: var(--peach-soft);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(4px, 1vw, 7px);
}

.calendar-weekdays span {
  color: var(--lavender);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day,
.calendar-cell {
  aspect-ratio: 1;
  min-width: 0;
  border-radius: clamp(10px, 1.4vw, 16px);
}

.calendar-day {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 226, 220, 0.92);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.calendar-day span {
  position: relative;
  z-index: 1;
}

.calendar-day small {
  position: absolute;
  right: 6px;
  bottom: 5px;
  left: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-day:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.calendar-day.is-today {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(16, 42, 85, 0.18);
}

.calendar-day.is-available {
  border-color: rgba(32, 184, 111, 0.5);
  background: rgba(232, 255, 241, 0.86);
}

.calendar-day.is-available::after,
.calendar-day.has-bookings::before {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  content: "";
}

.calendar-day.is-available::after {
  background: #20b86f;
  box-shadow: 0 0 0 4px rgba(32, 184, 111, 0.12);
}

.calendar-day.has-bookings {
  border-color: rgba(232, 167, 129, 0.72);
  background: rgba(255, 244, 236, 0.9);
}

.calendar-day.has-bookings::before {
  right: 20px;
  background: var(--peach);
  box-shadow: 0 0 0 4px rgba(232, 167, 129, 0.14);
}

.calendar-day.is-selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(16, 42, 85, 0.18);
}

.calendar-day.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.calendar-legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.calendar-selected {
  margin: 0;
  border: 1px solid rgba(140, 134, 189, 0.26);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(244, 242, 255, 0.74);
  color: var(--navy);
  font-weight: 900;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--navy);
}

.legend-dot.available {
  background: #20b86f;
}

.legend-dot.booked {
  background: var(--peach);
}

.calendar-backed-field {
  display: none;
}

[hidden] {
  display: none !important;
}

.booking-form,
.admin-slot-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 14px;
  align-items: end;
}

.booking-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form .button {
  align-self: stretch;
}

.booking-list {
  display: grid;
  gap: 12px;
}

.booking-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(236, 226, 220, 0.92);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.booking-item strong,
.booking-item span {
  display: block;
}

.booking-item strong {
  color: var(--navy);
  font-weight: 900;
}

.booking-item span,
.booking-item p,
.muted {
  color: var(--muted);
  font-weight: 800;
}

.booking-item p {
  margin: 8px 0 0;
}

.mini-button,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 900;
}

.mini-button {
  cursor: pointer;
}

.mini-button:hover {
  border-color: rgba(232, 167, 129, 0.8);
  background: var(--peach-soft);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 190px;
}

.admin-booking-actions {
  max-width: 360px;
}

.admin-booking-actions label {
  display: grid;
  gap: 4px;
  min-width: 96px;
  color: var(--navy);
  font-weight: 900;
}

.admin-booking-actions small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-booking-actions input {
  min-height: 38px;
  border-radius: 12px;
  padding: 6px 8px;
  font-size: 0.88rem;
}

.booking-user-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.booking-request.pending {
  border-color: rgba(232, 167, 129, 0.78);
  background: rgba(255, 245, 238, 0.84);
}

.booking-request.proposed {
  border-color: rgba(140, 134, 189, 0.55);
  background: rgba(244, 242, 255, 0.86);
}

.booking-request.accepted {
  border-color: rgba(32, 184, 111, 0.45);
  background: rgba(232, 255, 241, 0.74);
}

.booking-request.confirmed {
  border-color: rgba(32, 184, 111, 0.5);
  background: linear-gradient(135deg, rgba(232, 255, 241, 0.88), rgba(255, 255, 255, 0.9));
}

.booking-request.in_progress {
  border-color: rgba(30, 91, 191, 0.5);
  background: linear-gradient(135deg, rgba(238, 244, 255, 0.92), rgba(255, 255, 255, 0.88));
}

.booking-request.completed {
  border-color: rgba(32, 184, 111, 0.42);
  background: rgba(240, 255, 246, 0.7);
}

.booking-request.cancelled {
  opacity: 0.74;
}

.admin-request-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min(100%, 260px), 0.72fr);
  gap: 18px;
  border: 1px solid rgba(236, 226, 220, 0.92);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.admin-request-card.is-final {
  grid-template-columns: 1fr;
}

.user-request-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(236, 226, 220, 0.92);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.user-request-card.pending {
  background: rgba(255, 250, 245, 0.9);
}

.user-request-card.proposed {
  border-color: rgba(140, 134, 189, 0.52);
  background: rgba(244, 242, 255, 0.9);
}

.user-request-card.accepted,
.user-request-card.confirmed,
.user-request-card.completed {
  border-color: rgba(32, 184, 111, 0.58);
  box-shadow: 0 18px 36px rgba(32, 184, 111, 0.1);
}

.user-request-card.accepted .status-chip,
.user-request-card.confirmed .status-chip,
.user-request-card.completed .status-chip {
  border-color: rgba(32, 184, 111, 0.42);
  background: rgba(32, 184, 111, 0.14);
  color: #167a47;
}

.user-request-card.in_progress {
  border-color: rgba(30, 91, 191, 0.46);
  background: rgba(238, 244, 255, 0.9);
}

.proposal-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.approved-note {
  color: #167a47;
}

.pending-note {
  color: #95623f;
}

.adjusted-note {
  color: var(--lavender-dark);
}

.request-main,
.request-review {
  min-width: 0;
}

.request-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.request-topline strong {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.request-time {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
}

.request-contact {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.request-main blockquote {
  margin: 14px 0 0;
  border-left: 4px solid var(--peach);
  padding: 10px 12px;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 800;
}

.booking-thread {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border: 1px solid rgba(140, 134, 189, 0.22);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.68);
}

.booking-thread-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.booking-thread-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
}

.booking-thread-heading span,
.booking-thread-closed {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-message-list {
  display: grid;
  gap: 8px;
}

.booking-message {
  display: grid;
  gap: 5px;
  width: min(88%, 420px);
  border: 1px solid rgba(236, 226, 220, 0.9);
  border-radius: 16px;
  padding: 10px 12px;
  background: var(--white);
}

.booking-message.is-mine {
  justify-self: end;
  border-color: rgba(140, 134, 189, 0.26);
  background: rgba(244, 242, 255, 0.9);
}

.booking-message.is-theirs {
  justify-self: start;
  border-color: rgba(232, 167, 129, 0.28);
  background: rgba(255, 247, 242, 0.9);
}

.booking-message div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
}

.booking-message strong {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.booking-message small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.booking-message p,
.booking-thread-closed {
  margin: 0;
}

.booking-message p {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.message-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.message-suggestion-chip {
  min-height: 34px;
  border: 1px solid rgba(140, 134, 189, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(244, 242, 255, 0.82);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.message-suggestion-chip:hover {
  border-color: rgba(232, 167, 129, 0.8);
  background: var(--peach-soft);
}

.booking-message-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.booking-message-form textarea {
  width: 100%;
  min-height: 52px;
  resize: vertical;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.request-review {
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid rgba(236, 226, 220, 0.92);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.request-review p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.request-fields {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
}

.request-fields label {
  display: grid;
  gap: 5px;
  color: var(--navy);
  font-weight: 900;
}

.request-fields small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-fields input {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  padding: 7px 9px;
  font-size: 0.9rem;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.call-session-panel {
  display: grid;
  gap: 8px;
  margin-top: 2px;
  border-radius: 16px;
  padding: 12px;
  color: var(--navy);
  font-weight: 800;
}

.call-session-panel.is-running {
  border: 1px solid rgba(30, 91, 191, 0.22);
  background: rgba(238, 244, 255, 0.86);
}

.call-session-panel.is-complete {
  border: 1px solid rgba(32, 184, 111, 0.24);
  background: rgba(232, 255, 241, 0.82);
}

.call-session-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.call-session-row span {
  color: var(--muted);
  font-weight: 900;
}

.call-session-row strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.call-session-panel small {
  color: var(--muted);
  font-weight: 800;
}

.call-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(30, 91, 191, 0.12);
}

.call-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), #20b86f);
  transition: width 0.3s ease;
}

.call-progress-track.is-complete {
  background: rgba(32, 184, 111, 0.14);
}

.call-progress-track.is-complete span {
  background: #20b86f;
}

.primary-mini {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.approve-mini {
  border-color: rgba(32, 184, 111, 0.9);
  background: #20b86f;
  color: var(--white);
  box-shadow: 0 12px 26px rgba(32, 184, 111, 0.18);
}

.start-call-mini {
  border-color: rgba(32, 184, 111, 0.9);
  background: #20b86f;
  color: var(--white);
}

.stop-call-mini {
  border-color: rgba(188, 61, 68, 0.9);
  background: #bc3d44;
  color: var(--white);
}

.app-card {
  width: auto;
}

.app-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.soft-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.admin-layout {
  display: grid;
  gap: 28px;
}

.admin-form {
  width: 100%;
}

.availability-admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(32, 184, 111, 0.12), transparent 20rem),
    var(--white);
  box-shadow: var(--shadow);
}

.availability-admin-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.availability-admin-preview {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.admin-danger-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 22px;
  align-items: start;
  margin: 24px 0;
  border: 1px solid rgba(188, 61, 68, 0.32);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(188, 61, 68, 0.12), transparent 18rem),
    rgba(255, 250, 248, 0.96);
  box-shadow: var(--shadow-soft);
}

.admin-danger-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.admin-reset-controls {
  display: grid;
  gap: 12px;
}

.button.danger {
  background: #bc3d44;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(188, 61, 68, 0.18);
}

.availability-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  border-radius: 18px;
  padding: 6px;
  background: var(--lavender-soft);
}

.availability-toggle button {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.availability-toggle button.is-active {
  background: var(--white);
  box-shadow: 0 10px 22px rgba(16, 42, 85, 0.11);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.admin-pricing-card {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(140, 134, 189, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.admin-booking-card {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at top right, rgba(140, 134, 189, 0.18), transparent 24rem),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.admin-booking-columns {
  display: grid;
  grid-template-columns: minmax(min(100%, 320px), 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.user-booking-columns {
  display: grid;
  grid-template-columns: minmax(min(100%, 320px), 0.92fr) minmax(min(100%, 280px), 0.78fr);
  gap: 18px;
  align-items: start;
}

.admin-calendar-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(236, 226, 220, 0.9);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-calendar-panel h3,
.booking-panel-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.booking-panel-title {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.booking-panel-title span {
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--peach-soft);
  color: var(--navy);
  font-weight: 900;
}

.admin-card-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-card-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.admin-card-heading p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-pricing-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 18px;
}

.admin-pricing-group {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(236, 226, 220, 0.9);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-pricing-group h3 {
  margin: 0;
  color: var(--navy);
}

.admin-pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(90px, 0.7fr) minmax(82px, 0.5fr) auto;
  gap: 10px;
  align-items: end;
  border-top: 1px solid rgba(236, 226, 220, 0.86);
  padding-top: 14px;
}

.admin-pricing-row .field {
  min-width: 0;
}

.admin-pricing-toggle {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: var(--navy);
  font-weight: 900;
}

.admin-pricing-toggle input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.admin-help {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-edit-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(min(100%, 320px), 1.05fr);
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.admin-preview-list {
  display: grid;
  gap: 12px;
}

.editable-preview {
  display: grid;
  gap: 8px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 42, 85, 0.06);
}

.editable-preview span {
  color: var(--lavender);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.editable-preview strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.admin-form.is-editing .editable-preview:hover,
.editable-preview.is-selected {
  border-color: rgba(232, 167, 129, 0.85);
  background: var(--peach-soft);
  transform: translateY(-1px);
}

.admin-editor-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.admin-editor-panel h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-field {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.admin-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  margin-top: 24px;
}

.admin-page-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(16, 42, 85, 0.08);
}

.admin-page-card span {
  color: var(--peach);
  font-weight: 900;
}

.admin-page-card strong {
  color: var(--navy);
  font-size: 1.3rem;
}

.admin-page-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.inline-admin-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  max-width: min(640px, calc(100vw - 36px));
  border: 1px solid rgba(232, 167, 129, 0.65);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow);
}

.inline-admin-bar strong {
  color: var(--navy);
}

.inline-admin-bar span {
  color: var(--muted);
  font-weight: 800;
}

.inline-admin-bar a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
}

.inline-admin-bar label {
  display: inline-grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inline-admin-bar select {
  min-height: 40px;
  min-width: 180px;
  border-radius: 14px;
  padding: 8px 12px;
}

.inline-editable {
  cursor: pointer;
  outline: 1px solid rgba(140, 134, 189, 0.35);
  outline-offset: 4px;
  border-radius: 8px;
}

.inline-editable:hover,
.inline-editable.is-selected {
  outline: 2px solid var(--peach);
  background: rgba(255, 240, 230, 0.72);
}

.inline-admin-editor {
  position: fixed;
  right: 18px;
  top: 104px;
  z-index: 60;
  display: grid;
  gap: 12px;
  width: min(460px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.inline-admin-editor .form-status {
  font-size: 0.95rem;
  line-height: 1.35;
}

.inline-admin-editor label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.inline-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(500px, 0.9fr);
  }

  .dashboard,
  .admin-layout {
    max-width: 1720px;
    margin-inline: auto;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(3.1rem, 8vw, 5.8rem);
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(min(100%, 360px), 0.82fr);
    gap: clamp(26px, 4vw, 54px);
  }

  .hero-phone strong {
    font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  }

  .admin-request-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-tools {
    margin-left: auto;
  }

  .site-nav {
    max-height: min(520px, calc(100svh - 96px));
    overflow-y: auto;
  }

  .site-nav.app-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: var(--page-gutter);
    display: none;
    flex-basis: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    width: min(320px, calc(100vw - 32px));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    gap: 8px;
  }

  .site-nav.app-nav.is-open {
    display: flex;
  }

  .site-nav.app-nav a,
  .site-nav.app-nav .nav-button {
    border-radius: 999px;
    padding: 10px 12px;
  }

  .app-nav-toggle {
    display: block;
    margin-left: auto;
  }

  .hero,
  .how,
  .message-faq,
  .payment,
  .contact-card,
  .reassurance,
  .free-intro-card,
  .availability-admin-card,
  .admin-danger-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-card {
    width: min(100%, 680px);
  }

  .trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid,
  .admin-edit-shell,
  .admin-page-grid,
  .admin-booking-columns,
  .user-booking-columns,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .admin-editor-panel {
    position: static;
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .site-header {
    position: static;
  }

  .section-pad {
    padding-block: 34px;
  }

  .hero {
    padding-top: 28px;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(140, 134, 189, 0.16), transparent 20rem),
      radial-gradient(circle at top right, rgba(232, 167, 129, 0.16), transparent 18rem),
      var(--cream);
  }

  .section-pad {
    padding: 42px 18px;
  }

  .site-header {
    gap: 10px;
    min-height: auto;
    padding: 10px 14px;
  }

  .brand {
    flex: 1 1 100%;
    gap: 10px;
    max-width: calc(100% - 62px);
    padding-right: 8px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    display: block;
    font-size: 0.72rem;
  }

  .header-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-left: 0;
  }

  .availability-pill.compact {
    order: initial;
    width: auto;
    min-height: 40px;
    justify-content: flex-start;
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .availability-pill.compact .availability-light {
    width: 14px;
    height: 14px;
    box-shadow:
      0 0 0 6px var(--status-soft),
      0 0 18px var(--status-color);
  }

  .header-dashboard-link {
    min-height: 46px;
    padding: 0 12px;
  }

  .language-toggle {
    align-self: stretch;
  }

  .floating-admin-language-toggle:not([hidden]),
  [data-admin-language-toggle]:not([hidden]) {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    align-self: auto;
    width: auto;
  }

  body.inline-admin-mode .floating-admin-language-toggle:not([hidden]),
  body.inline-admin-mode [data-admin-language-toggle]:not([hidden]) {
    bottom: calc(104px + env(safe-area-inset-bottom));
  }

  .language-button {
    min-width: 38px;
    min-height: 38px;
  }

  .nav-toggle {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  h1 {
    font-size: clamp(2.8rem, 13.2vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
    background-size: auto clamp(300px, 42svh, 460px);
    background-position: center top;
  }

  .eyebrow {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .hero-phone {
    width: 100%;
    margin-top: 18px;
    border-radius: 22px;
    padding: 14px 16px;
  }

  .hero-phone strong {
    font-size: clamp(2.05rem, 11vw, 3.15rem);
  }

  .hero-status {
    width: fit-content;
    justify-content: flex-start;
  }

  .hero-subtitle {
    margin-top: 18px;
    font-size: clamp(1.08rem, 5.2vw, 1.42rem);
    line-height: 1.25;
  }

  .hero-note,
  .section-heading p:not(.eyebrow),
  .payment-intro p,
  .reassurance-card p,
  .free-intro-card p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .message-faq,
  .payment-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .create-account-callout {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .create-account-benefits {
    order: 2;
  }

  .create-account-benefits span {
    width: 100%;
    justify-content: center;
  }

  .create-account-image-link {
    order: 1;
    animation-name: accountImageSlideMobile;
  }

  .availability-toggle {
    grid-template-columns: 1fr;
  }

  .hero-assurance {
    display: grid;
    gap: 8px;
  }

  .hero-assurance span {
    justify-content: center;
    min-height: 36px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
    padding: 0 16px;
  }

  .payment-form {
    display: grid;
  }

  .hero-card,
  .reassurance-card,
  .free-intro-card,
  .message-faq-questions,
  .message-faq-answers,
  .payment-form,
  .disclaimer-card,
  .contact-card,
  .faq-item {
    border-radius: 20px;
  }

  .message-faq-questions {
    max-height: 246px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-snap-type: y mandatory;
    scroll-padding-block: 14px;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to bottom, transparent, #000 18px, #000 calc(100% - 18px), transparent);
  }

  .message-faq-questions::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .message-question {
    min-height: 62px;
    scroll-snap-align: center;
  }

  .message-faq-answers {
    display: none;
  }

  .message-answer {
    align-items: flex-start;
  }

  .message-question.is-active::after {
    display: none;
  }

  .hero-card {
    padding: 10px;
    width: min(100%, 520px);
  }

  .hero-card img {
    border-radius: 16px;
  }

  .hero-pricing-overlay {
    left: 50%;
    width: 84%;
    bottom: 27.5%;
    gap: clamp(12px, 3.2vw, 18px);
  }

  .hero-pricing-overlay::after {
    top: 65%;
    width: 24px;
    height: 24px;
    font-size: 0.82rem;
  }

  .flip-pricing-card {
    min-height: clamp(108px, 26vw, 144px);
  }

  .flip-card-face {
    border-width: 3px;
    border-radius: 13px;
    padding: 26px 9px 12px;
  }

  .flip-card-cue {
    right: 7px;
    bottom: 7px;
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }

  .flip-card-duration {
    min-width: min(80%, 128px);
    padding: 6px 8px;
    font-size: clamp(0.64rem, 2.55vw, 0.84rem);
    letter-spacing: 0.04em;
  }

  .flip-card-price {
    font-size: clamp(2.35rem, 9.8vw, 3.28rem);
  }

  .flip-card-detail {
    font-size: clamp(0.66rem, 2.55vw, 0.84rem);
  }

  .comfort-strip {
    align-items: flex-start;
    border-radius: 18px;
    padding: 14px;
    font-size: 0.95rem;
  }

  .icon-bubble,
  .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .trust-band article {
    min-height: auto;
    border-radius: 20px;
    padding: 18px;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .reassurance-card,
  .free-intro-card {
    padding: 22px;
  }

  .free-badge {
    min-height: 132px;
    border-radius: 22px;
  }

  .free-badge strong {
    font-size: clamp(4.2rem, 22vw, 6rem);
  }

  .contact-card {
    gap: 20px;
  }

  .inline-admin-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .disclaimer-card {
    display: grid;
  }

  .reassurance-card {
    display: grid;
  }

  .auth-tabs {
    grid-template-columns: 1fr;
  }

  .admin-toolbar,
  .admin-editor-actions,
  .booking-form,
  .admin-slot-form,
  .admin-card-heading,
  .admin-pricing-groups,
  .admin-pricing-row {
    grid-template-columns: 1fr;
  }

  .admin-card-heading {
    display: grid;
  }

  .admin-editor-actions .button {
    width: 100%;
  }

  .booking-panel-heading,
  .booking-item,
  .booking-panel-title,
  .admin-request-card,
  .call-session-row,
  .request-fields {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-panel-title {
    align-items: stretch;
  }

  .booking-panel-title span,
  .booking-panel-title button {
    justify-self: start;
  }

  .booking-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .booking-message {
    width: 100%;
  }

  .booking-message-form {
    grid-template-columns: 1fr;
  }

  .inline-admin-editor {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 92px;
    width: auto;
  }
}

@keyframes accountImageSlideMobile {
  0%,
  22%,
  100% {
    transform: translateX(0);
  }

  42%,
  78% {
    transform: translateX(10px);
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 12px;
  }

  .nav-toggle {
    right: 12px;
  }

  .header-tools {
    display: flex;
  }

  .language-toggle {
    width: 100%;
  }

  .language-button {
    flex: 1;
  }

  .availability-pill.compact {
    min-height: 38px;
    padding: 6px 9px;
    font-size: 0.78rem;
  }

  .header-dashboard-link {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
  }

  .availability-pill {
    white-space: normal;
    text-align: left;
  }

  .section-pad {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.65rem, 10vw, 2.45rem);
  }

  .hero-phone strong {
    font-size: clamp(1.75rem, 11.2vw, 2.65rem);
  }

  .hero-pricing-overlay {
    width: 85%;
    bottom: 28%;
    gap: 10px;
  }

  .flip-pricing-card {
    min-height: clamp(100px, 25vw, 120px);
  }

  .flip-card-face {
    padding: 23px 7px 10px;
  }

  .flip-card-price {
    font-size: clamp(2.1rem, 9vw, 2.82rem);
  }

  .hero-card,
  .reassurance-card,
  .free-intro-card,
  .payment-form,
  .disclaimer-card,
  .contact-card {
    padding: 18px;
  }

  .hero-card {
    padding: 8px;
  }

  .auth-card,
  .dashboard-hero,
  .availability-admin-card,
  .admin-booking-card,
  .admin-pricing-card,
  .admin-danger-card {
    padding: 22px;
    border-radius: 20px;
  }
}

@media (max-width: 360px) {
  .section-pad {
    padding-inline: 12px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small,
  .availability-pill.compact {
    font-size: 0.72rem;
  }

  .availability-light {
    width: 14px;
    height: 14px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 2.8rem);
  }

  .hero-phone span {
    font-size: 0.68rem;
  }

  .hero-phone strong {
    font-size: clamp(1.55rem, 10.5vw, 2.28rem);
  }

  .hero-pricing-overlay {
    width: 86%;
    gap: 8px;
  }

  .flip-card-duration {
    min-width: min(84%, 112px);
    font-size: 0.58rem;
  }

  .flip-card-detail {
    font-size: 0.62rem;
  }

  .calendar-day small {
    display: none;
  }
}
