:root {
  --night: #122245;
  --twilight: #1c3a6b;
  --moon: #e6c2a5;
  --cloud: #f9f7f5;
  --gold: #efc15b;
  --text: #333333;
  --mist: rgba(249, 247, 245, 0.74);
  --glass: rgba(255, 255, 255, 0.12);
  --glass-strong: rgba(255, 255, 255, 0.18);
  --border-soft: rgba(18, 34, 69, 0.1);
  --shadow-soft: 0 18px 40px rgba(10, 24, 52, 0.16);
  --shadow-strong: 0 22px 55px rgba(8, 18, 41, 0.26);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
  --header-offset: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 193, 91, 0.11), transparent 32%),
    linear-gradient(180deg, #f8f5f1 0%, #f9f7f5 30%, #ffffff 100%);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem;
  background: var(--night);
  color: var(--cloud);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero-grid > *,
.booking-grid > *,
.tracking-grid > *,
.dual-grid > *,
.footer-grid > *,
.nav > *,
.section-heading,
.booking-form,
.professional-card,
.profile-panel,
.service-card,
.benefit-card,
.mockup-card,
.admin-card,
.expectation-card,
.moon-panel {
  min-width: 0;
}

.section {
  position: relative;
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--header-offset) + 10px);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(230, 194, 165, 0.1));
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.hero h1,
.cta-shell h2,
.profile-panel h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--night);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.section-heading p,
.hero-lead,
.profile-panel li,
.cta-shell p {
  font-size: 1.05rem;
  line-height: 1.72;
  color: rgba(51, 51, 51, 0.82);
  overflow-wrap: anywhere;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--twilight);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1.05rem 0 0;
  transition: padding 220ms ease;
}

.nav {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(8, 17, 36, 0.42), rgba(8, 17, 36, 0.26));
  backdrop-filter: blur(12px);
  box-shadow: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.65rem;
}

.site-header.is-scrolled .nav {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(9, 18, 39, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 45px rgba(8, 18, 41, 0.28);
}

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

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

.brand strong {
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  color: var(--cloud);
}

.brand small {
  margin-top: 0.18rem;
  font-size: 0.78rem;
  color: rgba(249, 247, 245, 0.72);
}

img.brand-mark {
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 22px rgba(8, 18, 41, 0.18);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(249, 247, 245, 0.88);
}

.nav-menu a:not(.button) {
  font-size: 0.95rem;
  transition: color 200ms ease;
}

.nav-menu a:not(.button):hover,
.nav-menu a:not(.button):focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--night);
  background: linear-gradient(135deg, var(--gold), #f3d18a);
  box-shadow: 0 16px 28px rgba(239, 193, 91, 0.3);
}

.button-secondary {
  color: var(--cloud);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(249, 247, 245, 0.14);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1rem;
}

.button-wide {
  width: 100%;
}

.owl-flight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 22;
  width: 8rem;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(8, 18, 41, 0.34));
  transform: translate3d(-10rem, 10rem, 0) rotate(-8deg);
  transform-origin: center center;
}

.owl-flight svg {
  width: 100%;
  overflow: visible;
}

.owl-flight-glow {
  position: absolute;
  inset: 18% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 193, 91, 0.34), rgba(239, 193, 91, 0));
  filter: blur(10px);
}

.owl-body {
  fill: #132750;
  stroke: rgba(249, 247, 245, 0.22);
  stroke-width: 2.2;
}

.owl-belly {
  fill: rgba(249, 247, 245, 0.12);
}

.owl-wing,
.owl-tail {
  fill: #1d3769;
}

.owl-wing {
  transform-box: fill-box;
  transform-origin: center;
  animation: wingbeat 2.2s ease-in-out infinite;
}

.owl-wing-right {
  animation-delay: -1.1s;
}

.owl-eye,
.owl-beak {
  fill: var(--gold);
}

.hero {
  padding-top: 7.7rem;
  padding-bottom: 0;
  background:
    radial-gradient(circle at top left, rgba(239, 193, 91, 0.14), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(28, 58, 107, 0.48), transparent 25%),
    linear-gradient(180deg, #0d1730 0%, #14274f 56%, #19315f 100%);
  color: var(--cloud);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  min-height: min(92rem, 100svh);
  padding-bottom: 4rem;
}

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

.hero .eyebrow,
.cta-section .eyebrow {
  color: rgba(249, 247, 245, 0.88);
}

.hero .eyebrow::before,
.cta-section .eyebrow::before {
  background: linear-gradient(90deg, var(--gold), rgba(239, 193, 91, 0));
}

.hero h1 {
  font-size: clamp(3.15rem, 6vw, 5.8rem);
  line-height: 0.96;
  color: var(--cloud);
  max-width: 10ch;
}

.hero-lead {
  max-width: 40rem;
  margin: 1.4rem 0 0;
  color: rgba(249, 247, 245, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-highlights {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 34rem;
  color: rgba(249, 247, 245, 0.8);
}

.hero-highlights li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--moon));
  box-shadow: 0 0 0 0.45rem rgba(239, 193, 91, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.moon-panel {
  position: relative;
  height: 100%;
  min-height: 34rem;
  padding: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
}

.moon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, #fff6d8 0%, #f8e6b8 16%, #e8c98c 38%, rgba(232, 201, 140, 0.2) 72%, rgba(232, 201, 140, 0) 100%);
  box-shadow: 0 0 60px rgba(239, 193, 91, 0.24);
}

.phone-mockup {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: min(100%, 19rem);
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.3rem;
  background: linear-gradient(180deg, rgba(9, 17, 35, 0.96), rgba(25, 49, 95, 0.9));
  box-shadow: 0 26px 55px rgba(5, 12, 26, 0.42);
}

.phone-top,
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.phone-top p,
.panel-header small,
.hero-card small,
.hero-chip small,
.mockup-card span,
.pill,
.pill-light {
  margin: 0;
  color: rgba(249, 247, 245, 0.74);
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0.45rem rgba(239, 193, 91, 0.12);
}

.sleep-badge {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1.35rem 0;
  padding: 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
}

.sleep-badge-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(239, 193, 91, 0.16);
  font-size: 1.2rem;
}

.sleep-badge strong,
.hero-card strong,
.hero-chip strong,
.tracking-panel h3,
.mockup-card strong,
.stat-card strong {
  display: block;
  font-family: "Nunito", sans-serif;
}

.sleep-badge small {
  color: rgba(249, 247, 245, 0.72);
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.feed-grid article {
  padding: 0.95rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
}

.feed-grid span {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.82rem;
  color: rgba(249, 247, 245, 0.65);
}

.feed-grid strong {
  color: var(--cloud);
}

.hero-card,
.hero-chip {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 35px rgba(4, 10, 20, 0.22);
}

.hero-card {
  top: 3.2rem;
  left: 2rem;
}

.hero-card-floating {
  animation: bob 6.2s ease-in-out infinite;
}

.hero-chip-left {
  bottom: 3rem;
  left: 2rem;
}

.hero-chip-right {
  bottom: 5.5rem;
  right: 1.5rem;
}

.hero-backdrop {
  position: absolute;
  inset: auto auto 0;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-backdrop-one {
  top: 8rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(239, 193, 91, 0.15);
}

.hero-backdrop-two {
  right: -5rem;
  bottom: 10rem;
  width: 22rem;
  height: 22rem;
  background: rgba(230, 194, 165, 0.14);
}

.hero-wave {
  width: 100%;
  line-height: 0;
}

.trust-band {
  padding-top: 3rem;
}

.stats-grid,
.benefits-grid,
.services-grid,
.professional-grid,
.mockup-grid,
.steps-grid,
.admin-grid,
.expectation-grid {
  display: grid;
  gap: 1.2rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2.6rem;
}

.stat-card,
.benefit-card,
.service-card,
.professional-card,
.mockup-card,
.step-card,
.profile-panel,
.admin-card,
.expectation-card,
.booking-form,
.booking-aside article,
.tracking-panel {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.stat-card {
  padding: 1.45rem;
}

.stat-card strong {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--night);
}

.stat-card span {
  display: block;
  margin-top: 0.7rem;
  line-height: 1.6;
  color: rgba(51, 51, 51, 0.78);
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.service-card,
.mockup-card,
.step-card,
.admin-card,
.expectation-card {
  padding: 1.6rem;
}

.benefit-card p,
.service-card p,
.mockup-card p,
.step-card p,
.admin-card p,
.expectation-card p,
.professional-card p,
.booking-aside p {
  margin: 0;
  line-height: 1.66;
  color: rgba(51, 51, 51, 0.77);
}

.benefit-card,
.service-card,
.professional-card,
.mockup-card,
.step-card,
.admin-card,
.expectation-card,
.profile-panel,
.tracking-panel {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.benefit-card:hover,
.service-card:hover,
.professional-card:hover,
.mockup-card:hover,
.step-card:hover,
.admin-card:hover,
.expectation-card:hover,
.profile-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(10, 24, 52, 0.18);
  border-color: rgba(28, 58, 107, 0.16);
}

.benefit-card h2,
.service-card h3,
.professional-card h3,
.mockup-card strong,
.step-card h3,
.profile-panel h2,
.admin-card h3,
.expectation-card h3,
.cta-shell h2 {
  margin: 0 0 0.75rem;
  color: var(--night);
}

.icon-shell {
  display: inline-grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(239, 193, 91, 0.2), rgba(230, 194, 165, 0.3));
  box-shadow: inset 0 0 0 1px rgba(18, 34, 69, 0.08);
}

.icon-shell svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: var(--night);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--twilight);
}

.booking-section {
  background:
    linear-gradient(180deg, rgba(18, 34, 69, 0.06), rgba(18, 34, 69, 0)),
    radial-gradient(circle at 15% 15%, rgba(239, 193, 91, 0.08), transparent 26%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-aside {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.booking-aside article {
  padding: 1.2rem 1.25rem;
}

.booking-aside strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--night);
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

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

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--night);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 34, 69, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(18, 34, 69, 0.35);
  box-shadow: 0 0 0 0.25rem rgba(28, 58, 107, 0.08);
}

.professional-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.professional-card {
  padding: 1.45rem;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.avatar {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  font-weight: 800;
  color: var(--night);
}

.avatar-one {
  background: linear-gradient(135deg, #f1d39d, #fff0d2);
}

.avatar-two {
  background: linear-gradient(135deg, #d4e3ff, #f0f5ff);
}

.avatar-three {
  background: linear-gradient(135deg, #edd4c4, #fff1ea);
}

.profile-top p {
  margin-top: 0.2rem;
}

.profile-meta {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-meta li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(18, 34, 69, 0.08);
}

.profile-meta strong {
  color: var(--night);
}

.profile-meta span,
.profile-tags span,
.pill,
.pill-light {
  font-size: 0.93rem;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.profile-tags span,
.pill,
.pill-light {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.profile-tags span {
  background: rgba(28, 58, 107, 0.08);
  color: var(--twilight);
}

.card-actions {
  display: flex;
  gap: 0.75rem;
}

.card-actions .button {
  flex: 1;
}

.mockup-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mockup-card {
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(18, 34, 69, 0.06), rgba(18, 34, 69, 0.01)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 235, 0.88));
}

.mockup-card.is-visible {
  animation: mockupFloat 6.5s ease-in-out infinite;
}

.mockup-card:nth-child(2).is-visible {
  animation-delay: -1.2s;
}

.mockup-card:nth-child(3).is-visible {
  animation-delay: -2.4s;
}

.mockup-card:nth-child(4).is-visible {
  animation-delay: -0.8s;
}

.mockup-card:nth-child(5).is-visible {
  animation-delay: -3.1s;
}

.mockup-card span {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--twilight);
}

.tracking-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 1.5rem;
  align-items: start;
}

.tracking-panel {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  overflow: hidden;
}

.night-mode,
.timeline-panel {
  padding: 1.7rem;
}

.night-mode {
  background:
    radial-gradient(circle at top, rgba(239, 193, 91, 0.12), transparent 40%),
    linear-gradient(180deg, #122245, #19315f);
  color: var(--cloud);
}

.timeline-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 245, 0.92));
}

.tracking-panel h3 {
  margin: 1.2rem 0 0.35rem;
  font-size: 2rem;
  color: inherit;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.quick-actions button {
  min-height: 2.8rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: var(--cloud);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background-color 180ms ease;
}

.quick-actions button:hover,
.quick-actions button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.pill {
  color: var(--cloud);
  background: rgba(255, 255, 255, 0.12);
}

.pill-light {
  color: var(--twilight);
  background: rgba(28, 58, 107, 0.08);
}

.timeline {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(28, 58, 107, 0.05);
}

.timeline strong {
  color: var(--night);
}

.steps-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  margin-bottom: 0.95rem;
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(28, 58, 107, 0.22);
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.profile-panel {
  padding: 2rem;
}

.profile-panel ul {
  display: grid;
  gap: 0.95rem;
  padding-left: 1.15rem;
  margin: 1.4rem 0 0;
}

.admin-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expectation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 193, 91, 0.18), transparent 24%),
    linear-gradient(180deg, #112040, #0b1730 100%);
  color: var(--cloud);
}

.cta-shell {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.cta-shell h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--cloud);
}

.cta-shell p {
  margin: 1rem auto 1.7rem;
  max-width: 38rem;
  color: rgba(249, 247, 245, 0.8);
}

.constellation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
  animation: twinkle var(--duration, 4.6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.site-footer {
  padding: 2rem 0 3rem;
  color: rgba(249, 247, 245, 0.78);
  background: #0b1730;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.site-footer h3 {
  margin: 0 0 0.95rem;
  font-family: "Nunito", sans-serif;
  color: var(--cloud);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0.45rem 0 0;
  line-height: 1.6;
}

.brand-footer strong {
  color: var(--cloud);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.9);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes wingbeat {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(-8deg) translateY(2px);
  }
}

@keyframes mockupFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@media (max-width: 1120px) {
  .stats-grid,
  .benefits-grid,
  .services-grid,
  .mockup-grid,
  .steps-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .booking-grid,
  .tracking-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-top: 0.6rem;
  }

  .nav {
    position: relative;
    flex-wrap: wrap;
    border-radius: 1.75rem;
    background: rgba(9, 18, 39, 0.72);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-left: auto;
    padding: 0.4rem;
  }

  .nav-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    border-radius: 999px;
    background: var(--cloud);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-menu {
    display: none;
    width: 100%;
    padding-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .benefits-grid,
  .professional-grid,
  .expectation-grid,
  .dual-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tracking-panel {
    grid-template-columns: 1fr;
  }

  .card-actions {
    flex-direction: column;
  }

  .owl-flight {
    width: 5.8rem;
    opacity: 0.88;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 6.4rem;
  }

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

  .hero-copy,
  .hero-lead,
  .hero-highlights {
    width: min(100%, 21rem);
  }

  .hero h1 {
    font-size: clamp(2.7rem, 10vw, 4rem);
    max-width: 8ch;
  }

  .hero-actions,
  .quick-actions {
    flex-direction: column;
  }

  .button,
  .card-actions .button {
    width: 100%;
  }

  .moon-panel {
    padding: 1.6rem;
    min-height: 31rem;
  }

  .phone-mockup {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 6rem;
  }

  .hero-card {
    top: 1.1rem;
    left: 1rem;
  }

  .hero-chip-left,
  .hero-chip-right {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.75rem;
  }

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

  .stats-grid,
  .services-grid,
  .mockup-grid,
  .steps-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    padding: 2rem 1.4rem;
  }

  .owl-flight {
    width: 4.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
