:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #4d5a68;
  --soft: #f5f7fa;
  --surface: #ffffff;
  --line: #dde5ec;
  --blue: #285d73;
  --deep-blue: #14235c;
  --green: #21a66f;
  --red: #ef4d55;
  --gold: #d99b1f;
  --shadow: 0 18px 55px rgba(18, 35, 62, 0.11);
  --radius: 8px;
  --max: 680px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 460px),
    radial-gradient(circle at top left, rgba(33, 166, 111, 0.09), transparent 360px);
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: white;
  padding: 0.65rem 0.85rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 18px 0;
}

.brand,
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--blue);
  color: white;
}

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.section,
.section-tight {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0;
  text-align: center;
}

.section-tight {
  padding-top: 24px;
}

.hero {
  display: grid;
  align-content: start;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue);
  padding: 0.46rem 0.86rem;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(18, 35, 62, 0.06);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.05rem, 7vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 span {
  color: var(--blue);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 5vw, 2.72rem);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy,
.section-copy,
.final-section p {
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.32rem);
  text-wrap: pretty;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  padding: 0.9rem 1.22rem;
  background: linear-gradient(135deg, var(--deep-blue), var(--blue));
  color: white;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(20, 35, 92, 0.22);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(20, 35, 92, 0.27);
}

.button:active {
  transform: translateY(0);
}

.video-embed {
  position: relative;
  width: 100%;
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #14235c;
  box-shadow: var(--shadow);
}

.video-embed::before {
  display: block;
  padding-bottom: 58.88767720828789%;
  content: "";
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-cta {
  margin-top: 18px;
}

.stacked-cards,
.solution-grid {
  display: grid;
  gap: 14px;
}

.problem-card,
.solution-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 34px rgba(18, 35, 62, 0.08);
}

.problem-card span {
  color: var(--red);
  font-size: 1.5rem;
  line-height: 1;
}

.problem-card p,
.solution-card p {
  margin: 0;
  color: #334155;
  font-weight: 700;
}

.alt-band {
  position: relative;
}

.alt-band::before,
.contact-band::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background: rgba(255, 255, 255, 0.68);
}

.solution-card {
  position: relative;
  align-items: center;
  gap: 18px;
  min-height: 0;
  padding: 24px;
}

.icon-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 7px solid #eaf1ff;
  border-radius: 8px;
  background: #dbeafe;
  color: #2f63db;
}

.icon-badge.green {
  border-color: #dcfce7;
  background: #d1fae5;
  color: var(--green);
}

.icon-badge.gold {
  border-color: #fff7db;
  background: #fef3c7;
  color: var(--gold);
}

.booking-widget {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.iclosed-widget {
  width: 100%;
  min-height: 620px;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 111, 134, 0.35);
  outline-offset: 3px;
}

.final-section {
  text-align: left;
}

.final-section h2 {
  text-align: center;
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

@media (min-width: 760px) {
  .section,
  .section-tight {
    padding-block: 38px;
  }

  .section-tight {
    padding-top: 28px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .brand {
    max-width: 48%;
  }

  .header-cta {
    max-width: 48%;
    text-align: center;
  }

  .eyebrow {
    border-radius: 8px;
    font-size: 0.82rem;
  }

  .button {
    width: 100%;
  }

  .iclosed-widget {
    min-height: 620px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
