:root {
  --bg: #f6f7f4;
  --text: #11232d;
  --muted: #5f727c;
  --line: rgba(17, 35, 45, 0.12);
  --accent: #4aa6bc;
  --accent-dark: #143a49;
  --shadow: 0 24px 80px rgba(5, 20, 28, 0.08);
  --card: #ffffff;
  --card-muted: #f4f7fa;
  --radius-lg: 28px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Satoshi", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(74, 166, 188, 0.16), transparent 30%),
    linear-gradient(180deg, #fbfcfa 0%, var(--bg) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 35%),
    radial-gradient(circle at 20% 20%, rgba(74, 166, 188, 0.12), transparent 28%);
  opacity: 0.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
}

p {
  margin: 0 0 14px;
}

.small-muted {
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: none;
  background: transparent;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(720px, calc(100% - 24px));
  margin: 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(39, 56, 66, 0.92), rgba(27, 43, 52, 0.9));
  box-shadow: 0 12px 40px rgba(7, 24, 32, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  flex-wrap: nowrap;
}

.site-nav a:not(.button) {
  padding: 10px 14px;
  color: #b8dde4;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a.active,
.site-nav a:hover:not(.button) {
  color: #f4f8fa;
  background: rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid #0b9ac0;
  outline-offset: 2px;
}

.button:hover,
.story-card:hover,
.feature-card:hover,
.price-card:hover,
.timeline-item:hover,
.dashboard-window:hover {
  transform: translateY(-4px);
}

.button-dark {
  color: #f9fbfc;
  background: #2294b0;
  box-shadow: 0 10px 30px rgba(24, 131, 154, 0.28);
}

.button-light {
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
}

.hero,
.page-hero {
  position: relative;
  padding: 48px 0 36px;
}

.hero {
  overflow: clip;
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: center;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 28, 35, 0.78) 0%, rgba(10, 28, 35, 0.48) 42%, rgba(10, 28, 35, 0.2) 100%),
    linear-gradient(180deg, rgba(246, 247, 244, 0.16), rgba(246, 247, 244, 0.04));
}

.hero-grid,
.story-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: #f8fbfc;
}

.page-hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--text);
}

.hero-copy h1 span {
  color: var(--accent-dark);
}

.hero-highlight {
  color: #f9c300;
}

.hero .hero-copy,
.hero .hero-copy h1,
.hero .hero-copy p,
.hero .hero-proof span {
  color: #f6fbfc;
}

.hero .hero-copy h1 span {
  color: #bde5ef;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #d9f2f7;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-text,
.page-hero p,
.section-heading p,
.feature-card p,
.price-card p,
.story-body p,
.timeline-item p,
.about-stat span,
.article p,
.article li,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.hero .hero-text {
  color: #d8e8ed;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  margin-top: 22px;
}

.hero-proof span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero .button-light {
  color: #f6fbfc;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.dashboard-window,
.timeline-card,
.about-panel,
.article,
.faq-list details,
.price-card,
.feature-card,
.story-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(24, 46, 58, 0.08);
  border-radius: var(--radius-lg);
}

.dashboard-window {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  animation: float-card 8s ease-in-out infinite;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 246, 244, 0.9);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 35, 45, 0.22);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.dash-card {
  min-height: 170px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f3f7f5);
  border: 1px solid rgba(17, 35, 45, 0.08);
}

.dash-card h3 {
  margin: 8px 0 10px;
  font-size: 2.7rem;
  line-height: 1;
}

.dash-card h4,
.feature-card h3,
.price-card .plan-name,
.timeline-item h3,
.story-body h3,
.about-stat strong {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.dash-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-card p,
.dash-card li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dash-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.dash-card.accent {
  color: #f5fbfc;
  background: linear-gradient(135deg, #123441, #4aa6bc);
}

.dash-card.accent .dash-label,
.dash-card.accent p,
.dash-card.dark .dash-label,
.dash-card.dark p,
.price-card.featured p,
.price-card.featured li {
  color: rgba(247, 251, 252, 0.82);
}

.dash-card.wide {
  grid-column: span 2;
}

.dash-card.dark,
.price-card.featured,
.footer-grid {
  background: linear-gradient(180deg, #163846, #11232d);
  color: #f6fbfc;
}

.logo-strip {
  padding: 10px 0 56px;
}

.logo-strip p {
  margin: 0 0 16px;
  color: var(--muted);
  text-align: center;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.logo-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-dark);
  font-weight: 700;
}

.section {
  padding: 46px 0 108px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(230, 238, 235, 0.7));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2,
.article h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading > div {
  max-width: 640px;
}

.section-heading p {
  max-width: 540px;
}

.feature-grid,
.cards-grid,
.pricing-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.feature-card,
.price-card,
.about-panel,
.article,
.faq-list details {
  padding: 28px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.stack,
.timeline-card,
.about-panel,
.faq-list {
  display: grid;
  gap: 18px;
}

.timeline-card {
  gap: 4px;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: var(--card-muted);
  border: 1px solid #d4e0ea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 14px 0;
  align-items: start;
  border-top: 1px solid rgba(17, 35, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:first-of-type {
  border-top: 0;
  padding-top: 6px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #0e3a4c;
  color: #f5fbfc;
  font-weight: 700;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

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

.story-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.local-company-card {
  display: block;
  min-height: 300px;
}

.local-company-card .story-body {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 34px;
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
}

.story-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card.large img {
  height: 360px;
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-body {
  padding: 24px;
}

.story-tag,
.plan-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 58, 76, 0.14);
  color: #0e3a4c;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card.featured .plan-badge {
  background: #fdfdfd;
  color: #0e3a4c;
  border: 1px solid rgba(14, 58, 76, 0.12);
}

.price-card .plan-price {
  margin: 18px 0 12px;
  font-size: 3rem;
  line-height: 1;
}

.price-card .plan-price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-card.featured .plan-price span,
.brand-footer,
.site-footer p,
.footer-links a {
  color: rgba(246, 251, 252, 0.82);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.page-hero.compact h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.story-hero img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-hero-panel {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
  box-shadow: var(--shadow);
}

.story-hero-panel img {
  width: min(180px, 100%);
  height: auto;
}

.article {
  max-width: 920px;
}

.article h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 2rem;
}

.article ul {
  padding-left: 18px;
  color: var(--muted);
}

.article blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(74, 166, 188, 0.08);
  border-radius: 18px;
  color: var(--accent-dark);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-stat {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(243, 247, 245, 0.82);
  border: 1px solid rgba(17, 35, 45, 0.08);
}

.site-footer {
  padding: 28px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 30px;
  align-items: center;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: 360px;
  text-align: right;
}

.footer-cta .small-muted {
  max-width: 360px;
  line-height: 1.4;
}

.footer-cta .button {
  border-radius: 999px;
  padding: 12px 20px;
  min-height: 44px;
  box-shadow: none;
  background: #0c3647;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .story-hero-grid,
  .section-heading,
  .split-layout,
  .pricing-preview,
  .cards-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero {
    min-height: auto;
  }

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

  .footer-cta {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    position: relative;
    width: min(100% - 24px, 720px);
    padding: 12px 14px;
    border-radius: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

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

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dash-card.wide {
    grid-column: span 1;
  }

  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(10, 28, 35, 0.74), rgba(10, 28, 35, 0.42)),
      linear-gradient(180deg, rgba(246, 247, 244, 0.08), rgba(246, 247, 244, 0.02));
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-proof,
  .hero-actions {
    gap: 10px;
  }

  .logo-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

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

.booking-shell {
  background: linear-gradient(180deg, #f4f7fa 0%, #edf2f6 100%);
}

.booking-header {
  background: transparent;
}

.booking-page {
  padding: 34px 0 80px;
}

.booking-top {
  display: grid;
  justify-items: center;
  gap: 26px;
  margin-bottom: 38px;
}

.booking-steps {
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  color: #a3b1bf;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-step.is-active {
  color: #173f55;
}

.booking-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #cbd8e4;
  background: #fff;
}

.booking-step.is-active .booking-step-dot {
  border-color: #ff6b47;
}

.booking-step-line {
  width: 150px;
  height: 2px;
  background: #cbd8e4;
}

.booking-logo {
  font-weight: 700;
  color: #173f55;
  letter-spacing: -0.03em;
}

.booking-card {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(34, 54, 77, 0.08);
  border: 1px solid #dce7ef;
}

.booking-card {
  display: grid;
  grid-template-columns: 420px 1fr;
}

.booking-pane {
  min-height: 700px;
}

.booking-pane-calendar {
  padding: 48px 36px 34px;
  background: linear-gradient(180deg, #42a7bf 0%, #4aa4be 100%);
  color: #fff;
}

.booking-host {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 34px;
}

.booking-host img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.22);
}

.booking-host h1 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.booking-month-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.month-nav {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.18s ease, color 0.18s ease;
}

.month-nav:hover,
.month-nav:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
}

.calendar-head,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-head {
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.calendar-head span {
  text-align: center;
}

.calendar-grid {
  gap: 10px 6px;
}

.calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-size: 1.05rem;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.calendar-day.is-available {
  color: #fff;
}

.calendar-day.is-available:hover,
.calendar-day.is-available:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(16, 64, 82, 0.18);
}

.calendar-day.is-selected {
  background: #fff;
  color: #2f7f9c;
}

.calendar-day.is-selected:hover,
.calendar-day.is-selected:focus-visible {
  background: #ffffff;
  color: #2f7f9c;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(22, 90, 112, 0.22);
}

.calendar-day.is-disabled {
  pointer-events: none;
  opacity: 0.38;
  cursor: default;
}

.booking-pane-details,
.booking-pane-form,
.booking-pane-success {
  padding: 36px 32px;
  background: #fff;
}

.meeting-meta h2,
.booking-form-wrap h2,
.success-card h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #31455d;
}

.meeting-link,
.selected-summary,
.booking-selected-date,
.timezone-row {
  color: #4f6480;
}

.meeting-link {
  margin: 0;
  font-size: 1.02rem;
}

.booking-section-block {
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e6edf3;
}

.booking-section-block h3,
.privacy-box h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  color: #31455d;
}

.duration-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 120px));
  border: 1px solid #c9d6e1;
  border-radius: 4px;
  overflow: hidden;
}

.duration-option {
  min-height: 42px;
  border: 0;
  background: #fff;
  color: #48617d;
  font-weight: 500;
}

.duration-option.is-active {
  background: #cfd9e5;
  color: #244765;
}

.booking-selected-date {
  margin: 0 0 10px;
}

.timezone-row {
  padding: 10px 0 18px;
  color: #0088b8;
  font-weight: 700;
}

.time-slot-list {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.time-slot {
  min-height: 48px;
  border: 1px solid #d0dbe7;
  border-radius: 4px;
  background: #fff;
  color: #2784a7;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.time-slot:hover,
.time-slot:focus-visible {
  transform: translateY(-2px);
  border-color: #7fc5d8;
  background: #f7fcfe;
  box-shadow: 0 10px 18px rgba(40, 137, 169, 0.14);
}

.time-slot.is-selected {
  background: #edf8fc;
  border-color: #58b4cb;
  box-shadow: 0 8px 20px rgba(40, 137, 169, 0.16);
}

.time-slot.is-selected:hover,
.time-slot.is-selected:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(40, 137, 169, 0.18);
}

.is-hidden {
  display: none;
}

.booking-pane-form,
.booking-pane-success {
  grid-column: 1 / -1;
}

.booking-form-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.selected-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
}

.inline-action {
  border: 0;
  background: transparent;
  color: #00a0c7;
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #334b63;
  font-weight: 700;
}

.booking-form input {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #ccd8e4;
  border-radius: 4px;
  font: inherit;
}

.privacy-box {
  padding: 18px;
  border: 1px solid #d7e1ea;
  border-radius: 8px;
  background: #f7fafc;
}

.privacy-box p {
  margin: 0 0 14px;
  color: #50657f;
  font-weight: 400;
  line-height: 1.8;
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
}

.checkbox-row input {
  min-height: 16px;
  width: 16px;
  margin-top: 5px;
}

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

.success-card {
  max-width: 720px;
  margin: 40px auto;
  padding: 48px;
  border: 1px solid #dbe5ee;
  border-radius: 16px;
  background: #fbfdff;
  text-align: center;
}

.success-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e7f6fb;
  color: #1886ab;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

#successSummary {
  margin: 16px 0 10px;
  font-size: 1.05rem;
  color: #4f6480;
}

@media (max-width: 980px) {
  .booking-card {
    grid-template-columns: 1fr;
  }

  .booking-pane {
    min-height: auto;
  }

  .booking-pane-calendar {
    padding-bottom: 24px;
  }

  .booking-step-line {
    width: 90px;
  }
}

@media (max-width: 760px) {
  .booking-page {
    padding-top: 18px;
  }

  .booking-card {
    width: min(100% - 24px, 1320px);
  }

  .booking-pane-calendar,
  .booking-pane-details,
  .booking-pane-form,
  .booking-pane-success {
    padding: 24px 18px;
  }

  .booking-steps {
    gap: 12px;
  }

  .booking-step {
    min-width: 108px;
    font-size: 0.76rem;
  }

  .booking-step-line {
    width: 36px;
  }

  .booking-month-nav {
    font-size: 1.6rem;
  }

  .form-grid,
  .booking-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .time-slot-list {
    max-width: none;
  }
}

.booking-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.booking-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.button-arrow {
  gap: 12px;
  padding-right: 12px;
  flex-wrap: nowrap;
}

.button-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  color: #2294b0;
  font-size: 1rem;
  line-height: 1;
}

.footer-brand-block {
  max-width: 320px;
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.15fr) minmax(140px, 0.55fr) minmax(290px, 1fr);
  gap: 38px;
  padding: 34px 38px;
  align-items: start;
  background: linear-gradient(180deg, #163846, #102a37);
  box-shadow: 0 24px 60px rgba(8, 25, 34, 0.2);
}

.footer-links {
  gap: 14px;
  justify-self: center;
}

.footer-links a {
  font-weight: 500;
}

.footer-cta {
  justify-self: end;
  gap: 16px;
  max-width: 360px;
}

.footer-cta .small-muted {
  line-height: 1.6;
}

.footer-mail-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.home-page {
  background: #ffffff;
}

body.home-page::before {
  display: none;
}

.home-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0 0;
  background: transparent;
  backdrop-filter: none;
}

.home-nav-shell {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}

.home-nav {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
}

.home-header .site-nav {
  gap: 4px;
}

.home-header .site-nav a:not(.button) {
  color: #d7edf3;
}

.home-header .site-nav a.active,
.home-header .site-nav a:hover:not(.button) {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-home {
  min-height: 100vh;
  padding: 180px 0 120px;
}

.hero-home-overlay {
  background:
    linear-gradient(180deg, rgba(4, 22, 31, 0.24) 0%, rgba(4, 22, 31, 0.56) 56%, rgba(4, 22, 31, 0.76) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.hero-center {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
}

.hero-copy-centered {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy-centered h1 {
  max-width: none;
  font-size: clamp(3.6rem, 7vw, 6.3rem);
  text-align: center;
}

.hero-highlight-warm {
  display: block;
  color: #ffc81b !important;
}

.hero-text-centered {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions-centered {
  justify-content: center;
}

.home-partners {
  padding: 76px 0 44px;
  background: #ffffff;
}

.partner-heading {
  margin: 0 0 44px;
  text-align: center;
  color: #11232d;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.partner-heading span {
  color: #46acc6;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 26px 18px;
  align-items: start;
}

.partner-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 72px;
  color: #162933;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
}

.partner-item strong {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.partner-item-wordmark strong {
  font-size: 1.65rem;
}

.partner-note {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf8fb;
  color: #4aa6bc;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-feature {
  padding: 62px 0;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(400px, 1.05fr);
  gap: 44px;
  align-items: center;
}

.home-feature-grid.reverse {
  grid-template-columns: minmax(420px, 1.05fr) minmax(320px, 0.95fr);
}

.home-copy-block h2 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-copy-block p {
  max-width: 560px;
  margin: 0;
  color: #667681;
  font-size: 1.12rem;
  line-height: 1.72;
}

.home-asset-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.home-asset-card img {
  width: 100%;
  height: auto;
}

.home-asset-card-plain img {
  max-width: 620px;
}

.home-asset-card-floating {
  align-items: flex-start;
}

.home-asset-card-floating img {
  max-width: 560px;
  filter: drop-shadow(0 24px 44px rgba(23, 64, 82, 0.18));
}

.home-platform {
  padding: 96px 0 112px;
  background: #052635;
}

.home-platform-heading {
  margin-bottom: 56px;
  text-align: center;
}

.home-platform-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.home-platform-heading span {
  color: #48a8c2;
}

.home-platform-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.platform-steps {
  display: grid;
  gap: 22px;
}

.platform-step {
  padding-left: 24px;
  border-left: 2px solid rgba(88, 179, 207, 0.22);
}

.platform-step h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.platform-step p {
  margin: 0;
  color: rgba(223, 236, 241, 0.76);
  font-size: 1.04rem;
  line-height: 1.7;
}

.platform-step:not(.is-active) {
  opacity: 0.56;
}

.platform-screen {
  width: min(100%, 760px);
}

.platform-screen-shell {
  padding: 18px 18px 26px;
  border-radius: 24px;
  border: 1px solid rgba(188, 225, 234, 0.3);
  background: linear-gradient(180deg, #f5fbfd, #edf7fa);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.screen-pill {
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #dff4f8;
  color: #3a7187;
  font-size: 0.92rem;
  font-weight: 500;
}

.screen-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.screen-box,
.screen-list-box {
  padding: 18px;
  border: 1px solid #d8edf2;
  border-radius: 18px;
  background: #ffffff;
}

.screen-box-title {
  margin-bottom: 12px;
  color: #22485a;
  font-size: 0.95rem;
  font-weight: 700;
}

.screen-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.screen-chip-row span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf8fb;
  color: #4f8aa0;
  font-size: 0.88rem;
  font-weight: 700;
}

.platform-base {
  width: 84%;
  height: 18px;
  margin: 0 auto;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #183d4d, #0b2a37);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.12);
}

.site-footer-home {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 108px 0 60px;
  background:
    linear-gradient(180deg, rgba(4, 22, 31, 0.58) 0%, rgba(4, 22, 31, 0.78) 52%, rgba(4, 22, 31, 0.9) 100%),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80")
      center center / cover no-repeat;
}

.home-footer-inner {
  position: relative;
  z-index: 1;
}

.home-footer-copy {
  max-width: 620px;
  padding: 0 0 54px;
}

.home-footer-copy h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.home-footer-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(233, 244, 247, 0.82);
  font-size: 1.14rem;
  line-height: 1.7;
}

.home-footer-divider {
  height: 1px;
  margin-bottom: 42px;
  background: rgba(255, 255, 255, 0.16);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(120px, 0.5fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
}

.home-footer-brand {
  max-width: 360px;
}

.home-footer-brand .brand {
  margin-bottom: 18px;
}

.home-footer-brand p {
  margin: 0 0 22px;
  color: rgba(233, 244, 247, 0.82);
}

.home-footer-links {
  justify-self: center;
}

.home-footer-links a {
  color: #ffffff;
}

.home-footer-legal {
  justify-self: end;
  max-width: 360px;
}

.home-footer-legal .small-muted {
  color: rgba(233, 244, 247, 0.8);
}

@media (max-width: 1200px) {
  .partner-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-feature-grid,
  .home-feature-grid.reverse,
  .home-platform-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .home-copy-block,
  .home-footer-copy,
  .home-footer-legal,
  .home-footer-brand {
    max-width: none;
  }

  .home-footer-links,
  .home-footer-legal,
  .footer-links,
  .footer-cta {
    justify-self: start;
    text-align: left;
  }

  .home-platform {
    padding-top: 84px;
  }
}

@media (max-width: 760px) {
  .home-header {
    padding-top: 14px;
  }

  .home-nav {
    width: min(100%, 660px);
    padding: 10px 14px;
    border-radius: 24px;
  }

  .home-header .menu-toggle {
    display: block;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .home-header .menu-toggle span {
    background: #ffffff;
  }

  .home-header .site-nav {
    background: rgba(10, 34, 45, 0.96);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .hero-home {
    min-height: auto;
    padding: 150px 0 88px;
  }

  .hero-center {
    min-height: auto;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
  }

  .screen-columns {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .home-footer-grid {
    gap: 24px;
  }

  .home-footer-copy {
    padding-bottom: 38px;
  }
}
