:root {
  --ink: #102a38;
  --ink-soft: #49616d;
  --navy: #12384a;
  --teal: #008da1;
  --teal-dark: #007487;
  --mint: #eaf7f5;
  --sky: #eef7fb;
  --white: #ffffff;
  --line: #dbe6e9;
  --orange: #ec6b2d;
  --shadow: 0 16px 42px rgba(16, 42, 56, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 230, 233, 0.86);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 32px, 1160px);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.brand img {
  width: 112px;
  mix-blend-mode: multiply;
}

.brand span {
  display: none;
}

.menu-toggle {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-icon {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon i {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 72px);
  padding: 18px 16px 24px;
  display: grid;
  gap: 6px;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-panel a {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--teal-dark);
  background: var(--mint);
}

.nav-panel .nav-call {
  margin-top: 8px;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--sky);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 52%, rgba(255,255,255,0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 13vw, 4.6rem);
  line-height: 1.02;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.button {
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 141, 161, 0.24);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.trust-row {
  margin-top: 26px;
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-row span::before {
  margin-right: 8px;
  color: var(--teal);
  content: "✓";
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 9vw, 3.35rem);
  line-height: 1.1;
}

.section-heading > p:last-child,
.about-copy > p,
.contact-panel > div > p:last-child {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 42, 56, 0.07);
}

.service-number {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--mint);
}

.service-card:nth-child(3n + 2) .service-number {
  color: #ad461c;
  background: #fff0e8;
}

.service-card h3,
.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.service-card p,
.benefit p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.about-section {
  background: var(--sky);
}

.about-layout {
  display: grid;
  gap: 36px;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap > img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: 70% center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-note {
  width: calc(100% - 28px);
  margin: -38px auto 0;
  position: relative;
  padding: 18px;
  display: grid;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.experience-note strong {
  color: var(--teal-dark);
}

.experience-note span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.about-copy > p {
  line-height: 1.75;
}

.text-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.why-section {
  color: var(--white);
  background: var(--navy);
}

.section-heading-light .eyebrow {
  color: #73d3dc;
}

.section-heading-light > p:last-child,
.benefit p {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.check {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  font-weight: 800;
  background: #73d3dc;
}

.contact-section {
  background: var(--mint);
}

.contact-panel {
  display: grid;
  gap: 30px;
}

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

.contact-method {
  min-width: 0;
  min-height: 74px;
  padding: 14px 16px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  background: var(--white);
}

.contact-method span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-method strong {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b2634;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 6px;
  background: var(--white);
}

.footer-brand p {
  max-width: 390px;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  min-height: 42px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .container,
  .header-inner {
    width: min(100% - 48px, 1160px);
  }

  .brand img {
    width: 130px;
  }

  .brand span {
    max-width: 150px;
    display: block;
  }

  .hero {
    min-height: 650px;
    align-items: center;
  }

  .hero-content {
    padding-block: 78px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
  }

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

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

  .contact-actions .button {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.8fr;
  }
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }

  body.menu-open {
    overflow: auto;
  }

  .header-inner {
    min-height: 88px;
  }

  .brand img {
    width: 142px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    max-height: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    overflow: visible;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-panel a {
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .nav-panel .nav-call {
    margin: 0 0 0 8px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 670px;
  }

  .hero-image {
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 35%, rgba(255,255,255,0.4) 59%, rgba(255,255,255,0) 76%);
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    gap: 72px;
    align-items: center;
  }

  .about-image-wrap > img {
    min-height: 490px;
  }

  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1fr);
    gap: 72px;
    align-items: center;
  }
}

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

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

.video-page {
  min-height: 100vh;
  background:
    linear-gradient(140deg, rgba(238, 247, 251, 0.92), rgba(234, 247, 245, 0.72)),
    var(--white);
}

.private-video-main {
  min-height: 100vh;
  padding: 24px 0;
  display: grid;
  place-items: center;
}

.private-video-shell {
  width: min(100% - 32px, 980px);
}

.private-video-brand {
  width: fit-content;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.private-video-brand img {
  width: 58px;
  height: auto;
}

.private-video-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.private-video-card h1 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.12;
}

.private-video-card p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.private-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 42, 56, 0.14);
}

.private-video-button {
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 700px) {
  .private-video-main {
    padding: 48px 0;
  }

  .private-video-card {
    padding: 32px;
  }

  .private-video-card h1 {
    font-size: 2.5rem;
  }

  .private-video-button {
    width: fit-content;
  }
}
