:root {
  --ink: #111615;
  --graphite: #151a1d;
  --paper: #f6f8f2;
  --white: #ffffff;
  --muted: #626d68;
  --line: #dbe2dc;
  --blue: #245cff;
  --blue-deep: #1236ad;
  --cyan: #2ee8ff;
  --lime: #245cff;
  --amber: #ffb43d;
  --max: 1180px;
  --header: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
canvas {
  display: block;
}

img,
video {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  color: var(--white);
  background: var(--lime);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2rem;
  color: var(--white);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(246, 248, 242, 0.92);
  border-bottom: 1px solid rgba(17, 22, 21, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  border-color: rgba(17, 22, 21, 0.15);
}

.brand span {
  display: grid;
  line-height: 1;
}

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

.brand small {
  margin-top: 0.3rem;
  color: currentColor;
  opacity: 0.72;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.93rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.2rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  padding: 0.76rem 1rem;
  color: var(--white);
  background: var(--lime);
  border-radius: 6px;
}

.site-nav .nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  background: var(--white);
  border-color: rgba(17, 22, 21, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 8.5rem 2rem 5.2rem;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero-video,
.hero-shade,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -4;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.62);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(10, 13, 14, 0.88) 0%, rgba(10, 13, 14, 0.56) 46%, rgba(10, 13, 14, 0.26) 100%),
    linear-gradient(180deg, rgba(10, 13, 14, 0.42) 0%, rgba(10, 13, 14, 0.18) 46%, rgba(10, 13, 14, 0.82) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 120px);
}

.hero-canvas {
  z-index: -2;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--blue-deep);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 6rem;
  line-height: 0.9;
  font-weight: 950;
}

.hero-lead {
  max-width: 660px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--lime);
  box-shadow: 0 18px 42px rgba(36, 92, 255, 0.28);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-service-area {
  width: fit-content;
  max-width: min(620px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 1.05rem 0 0;
  padding: 0.72rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 12, 13, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  font-size: 0.96rem;
  line-height: 1.35;
  font-weight: 800;
}

.hero-service-area span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-service-area span::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.hero-proof div {
  width: 156px;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 13, 14, 0.28);
  backdrop-filter: blur(14px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 1.55rem;
  line-height: 1;
  color: var(--white);
}

.hero-proof span {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(110px, 13vw, 190px);
  background: linear-gradient(180deg, rgba(21, 26, 29, 0), rgba(246, 248, 242, 0.18) 42%, rgba(246, 248, 242, 0.72));
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: clamp(78px, 9vw, 132px);
  color: var(--paper);
  pointer-events: none;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(72px, 8vw, 108px);
  z-index: 4;
  width: 34px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 18px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 10px;
  border-radius: 3px;
  background: var(--lime);
  transform: translateX(-50%);
  animation: cue 1.7s ease-in-out infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.45;
  }
  50% {
    transform: translate(-50%, 14px);
    opacity: 1;
  }
}

section {
  position: relative;
}

.section-light,
.intro,
.advantages,
.proof,
.booking,
.faq {
  background: var(--paper);
}

.section-light,
.advantages,
.proof,
.booking {
  padding: 7rem 2rem;
}

.section-dark {
  padding: 7rem 2rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 92, 255, 0.18), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 116px),
    var(--graphite);
  overflow: hidden;
}

.section-grid,
.section-heading,
.advantage-grid,
.process-rail,
.service-grid,
.proof,
.video-band,
.booking,
.faq-list,
.final-copy,
.site-footer {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.proof-copy h2,
.video-copy h2,
.booking-copy h2,
.final-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 930;
}

.intro-copy p,
.proof-copy p,
.video-copy p,
.booking-copy p,
.final-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.media-stack {
  position: relative;
  min-height: 560px;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.media-frame {
  position: absolute;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.1);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(17, 22, 21, 0.18);
  transform:
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 160ms ease;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 22, 21, 0.1);
  border-radius: 6px;
  font-weight: 850;
}

.media-frame-large {
  top: 0;
  right: 0;
  width: 82%;
  height: 390px;
}

.media-frame-large figcaption {
  left: auto;
  right: 0.75rem;
  top: 0.75rem;
  bottom: auto;
}

.media-frame-small {
  left: 0;
  bottom: 0;
  width: 45%;
  height: 355px;
  transform:
    translateZ(42px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 760px;
}

.advantage-grid,
.service-grid {
  display: grid;
  gap: 1rem;
}

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

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

.advantage-card,
.service-card {
  position: relative;
  min-height: 245px;
  padding: 1.35rem;
  border-radius: 8px;
  border: 1px solid rgba(17, 22, 21, 0.1);
  background: var(--white);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.advantage-card::before,
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--cyan));
}

.advantage-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(36, 92, 255, 0.38);
  box-shadow: 0 22px 54px rgba(17, 22, 21, 0.13);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.78rem;
  color: var(--white);
  background: var(--graphite);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.advantage-card h3,
.service-card h3,
.process-step h3 {
  margin: 1.3rem 0 0.65rem;
  font-size: 1.28rem;
  line-height: 1.15;
}

.advantage-card p,
.service-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.advantage-card p + p {
  margin-top: 0.65rem;
}

.section-dark .process-step p,
.section-dark .video-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.process-rail {
  display: grid;
  gap: 0.8rem;
}

.process-step {
  min-height: 118px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  grid-template-areas:
    "tag title"
    "tag copy";
  column-gap: 1.55rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(21, 26, 29, 0.82);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.process-step:hover {
  transform: translateX(6px);
  border-color: rgba(36, 92, 255, 0.52);
  background: rgba(21, 26, 29, 0.95);
}

.process-step span {
  grid-area: tag;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.78rem;
  color: var(--white);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 950;
  white-space: nowrap;
}

.process-step h3 {
  grid-area: title;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.process-step p {
  grid-area: copy;
}

.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 9rem;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(246, 248, 242, 0.78), rgba(246, 248, 242, 0.38) 48%, rgba(246, 248, 242, 0.78)),
    rgba(246, 248, 242, 0.36);
  pointer-events: none;
}

.services-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(1.45) contrast(1.16) blur(0.25px);
  pointer-events: none;
}

.services > .section-heading,
.services > .service-grid {
  position: relative;
  z-index: 2;
}

.services-top-fade {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  height: clamp(76px, 9vw, 128px);
  background: linear-gradient(180deg, rgba(21, 26, 29, 0.34), rgba(246, 248, 242, 0));
  pointer-events: none;
}

.services-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  width: 100%;
  color: var(--paper);
  pointer-events: none;
}

.services-wave-top {
  top: -1px;
  height: clamp(48px, 5.8vw, 78px);
  color: var(--graphite);
  opacity: 0.96;
}

.services-wave:not(.services-wave-top) {
  bottom: -1px;
  height: clamp(54px, 7vw, 96px);
}

.service-grid {
  grid-template-columns: 1fr;
  gap: 2.2rem;
}

.service-card {
  width: min(64%, 760px);
  min-height: 176px;
  padding: 1.7rem 1.9rem;
  box-shadow: 0 18px 48px rgba(17, 22, 21, 0.08);
}

.service-card:nth-child(odd) {
  justify-self: start;
}

.service-card:nth-child(even) {
  justify-self: end;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 3rem;
  align-items: center;
}

.comparison-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 21, 0.12);
  box-shadow: 0 28px 80px rgba(17, 22, 21, 0.18);
  background: var(--graphite);
  cursor: ew-resize;
  touch-action: none;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-image.before {
  filter: saturate(0.95) contrast(1.03);
  clip-path: polygon(0 0, var(--split) 0, var(--split) 100%, 0 100%);
  z-index: 1;
}

.comparison-image.after {
  z-index: 0;
}

.comparison-label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  font-weight: 900;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 22, 21, 0.1);
  transition: opacity 180ms ease, transform 180ms ease;
}

.label-before {
  left: 1rem;
}

.label-after {
  right: 1rem;
}

.comparison-stage.is-at-start .label-before,
.comparison-stage.is-at-end .label-after {
  opacity: 0;
  transform: translateY(-0.25rem);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 4;
  width: 3px;
  background: var(--lime);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 22px rgba(36, 92, 255, 0.76);
}

.comparison-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--lime);
  border: 4px solid var(--white);
  box-shadow: 0 18px 36px rgba(17, 22, 21, 0.25);
}

.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-left: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: translate(-50%, -50%);
}

.laser-transition {
  position: relative;
  height: clamp(120px, 14vw, 220px);
  margin-top: -2rem;
  margin-bottom: -1px;
  overflow: hidden;
  isolation: isolate;
  background: var(--graphite);
}

.laser-transition video {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  width: 100%;
  height: 116%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(1.34) contrast(1.14);
}

.laser-transition::before,
.laser-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.laser-transition::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(246, 248, 242, 0.45) 0%, rgba(246, 248, 242, 0) 34%),
    linear-gradient(180deg, rgba(21, 26, 29, 0) 56%, rgba(21, 26, 29, 0.62) 100%);
}

.laser-transition::after {
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 116px),
    linear-gradient(90deg, rgba(21, 26, 29, 0.18), rgba(21, 26, 29, 0), rgba(21, 26, 29, 0.24));
}

.laser-transition-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

.laser-transition-wave-top {
  top: -1px;
  height: clamp(58px, 7vw, 104px);
  color: var(--paper);
}

.laser-transition-wave-bottom {
  bottom: -1px;
  height: clamp(64px, 7.5vw, 112px);
  color: var(--graphite);
}

.video-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 3rem;
  align-items: center;
}

.video-band.section-dark {
  padding-inline: clamp(5.2rem, 7.6vw, 8.25rem);
}

.video-band.section-dark::before,
.video-band.section-dark::after {
  content: none;
}

.video-side-wave {
  position: absolute;
  top: -1px;
  bottom: -1px;
  z-index: 0;
  width: clamp(72px, 6.8vw, 116px);
  color: var(--paper);
  pointer-events: none;
}

.video-side-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.video-side-wave-left {
  left: 0;
}

.video-side-wave-right {
  right: 0;
}

.video-band > :not(.video-side-wave) {
  position: relative;
  z-index: 1;
}

.video-shell {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #050707;
}

.soft-transition {
  position: relative;
  height: clamp(130px, 15vw, 230px);
  margin-top: -1px;
  margin-bottom: -2rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}

.soft-transition video {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.2) contrast(1.06) brightness(1.04);
}

.soft-transition::before,
.soft-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.soft-transition::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(21, 26, 29, 0.88), rgba(21, 26, 29, 0.2) 30%, rgba(246, 248, 242, 0) 58%),
    linear-gradient(180deg, rgba(246, 248, 242, 0) 42%, rgba(246, 248, 242, 0.78) 92%, var(--paper));
}

.soft-transition::after {
  z-index: 0;
  background: linear-gradient(90deg, rgba(246, 248, 242, 0.3), rgba(246, 248, 242, 0), rgba(246, 248, 242, 0.34));
}

.soft-transition-wave {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

.soft-transition-wave-top {
  top: -1px;
  height: clamp(58px, 6.8vw, 104px);
  color: var(--graphite);
}

.soft-transition-wave-bottom {
  bottom: -1px;
  height: clamp(68px, 7.8vw, 118px);
  color: var(--paper);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3.5rem;
}

.meetergo-slot {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(18, 54, 173, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 92, 255, 0.12), rgba(46, 232, 255, 0.14)),
    var(--white);
}

.meetergo-slot:not(.meetergo-slot-live) span {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  color: var(--blue-deep);
  background: rgba(36, 92, 255, 0.1);
  border-radius: 6px;
  font-weight: 900;
}

.meetergo-slot:not(.meetergo-slot-live) strong {
  font-size: 2rem;
}

.meetergo-slot:not(.meetergo-slot-live) p {
  margin: 0;
  color: var(--muted);
}

.meetergo-slot-live {
  width: min(100%, 760px);
  min-height: 520px;
  display: block;
  justify-self: center;
  align-self: start;
  padding: 0;
  text-align: left;
  overflow: hidden;
  border-style: solid;
  background: var(--white);
}

.meetergo-slot-live:not(.is-loaded) {
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
}

.meetergo-slot-live .meetergo-iframe {
  width: 100%;
  min-height: 520px;
}

.meetergo-slot-live iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
}

.meetergo-blocked {
  max-width: 520px;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.meetergo-blocked span {
  display: inline-flex;
  padding: 0.4rem 0.65rem;
  color: var(--blue-deep);
  background: rgba(36, 92, 255, 0.1);
  border-radius: 6px;
  font-weight: 900;
}

.meetergo-blocked strong {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.05;
  color: var(--ink);
}

.meetergo-blocked p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.meetergo-blocked .button {
  border: 0;
  cursor: pointer;
}

.faq {
  padding: 3.5rem 2rem 7rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(17, 22, 21, 0.1);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--graphite);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "-";
  background: var(--blue);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-panel p {
  padding-bottom: 1.25rem;
}

@media (min-width: 1180px) {
  .booking {
    width: min(1320px, calc(100% - 4rem));
    grid-template-columns: minmax(360px, 0.72fr) minmax(760px, 1.28fr);
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .meetergo-slot-live {
    width: min(100%, 860px);
  }
}

.final-cta {
  position: relative;
  isolation: isolate;
  padding: 8rem 2rem;
  color: var(--white);
  overflow: hidden;
  background: var(--graphite);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.final-cta::before {
  z-index: -3;
  background: url("assets/before.jpeg") center / cover no-repeat;
  filter: saturate(0.98) brightness(0.62);
}

.final-cta::after {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 13, 14, 0.9), rgba(10, 13, 14, 0.4)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px);
}

.final-copy {
  margin-left: auto;
  margin-right: auto;
}

.final-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-page {
  min-height: 100svh;
  padding: calc(var(--header) + 5rem) 2rem 7rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, rgba(36, 92, 255, 0.2), transparent 28%),
    radial-gradient(circle at 10% 24%, rgba(36, 92, 255, 0.15), transparent 28%),
    var(--paper);
}

.legal-hero,
.legal-card {
  width: min(980px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-hero {
  margin-bottom: 2rem;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

.legal-card {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid rgba(17, 22, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(17, 22, 21, 0.12);
  backdrop-filter: blur(14px);
}

.legal-card h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
}

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

.legal-grid article {
  padding: 1.1rem;
  border: 1px solid rgba(17, 22, 21, 0.09);
  border-radius: 8px;
  background: rgba(246, 248, 242, 0.72);
}

.legal-grid h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-grid a {
  color: var(--blue-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  padding: 1.1rem 2rem;
  color: rgba(255, 255, 255, 0.72);
  background: #0b0f0f;
}

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

.footer-logo {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
}

.footer-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

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

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-cookie-button {
  padding: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.footer-cookie-button:hover,
.site-footer a:hover {
  color: var(--lime);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-link-facebook {
  background: #1877f2;
}

.social-link-instagram {
  background:
    radial-gradient(circle at 30% 110%, #fdf497 0 12%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
}

.social-link-tiktok {
  background: #050505;
}

.social-link-tiktok svg {
  filter:
    drop-shadow(-1px 0 #25f4ee)
    drop-shadow(1px 0 #fe2c55);
}

.social-link-whatsapp {
  background: #25d366;
}

.cookie-banner {
  position: fixed;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  color: #0c2c2f;
  border: 1px solid rgba(18, 54, 173, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 251, 0.96);
  box-shadow:
    0 20px 60px rgba(7, 14, 16, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(18px);
}

.cookie-copy {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.cookie-copy strong {
  font-size: 1rem;
  font-weight: 950;
}

.cookie-copy p {
  max-width: 760px;
  margin: 0;
  color: #647476;
  line-height: 1.55;
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 950;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.cookie-button-ghost {
  color: #0c2c2f;
  border: 1px solid rgba(12, 44, 47, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.cookie-button-accept {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(36, 92, 255, 0.28);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 16, 0.56);
  backdrop-filter: blur(8px);
}

.cookie-modal-panel {
  position: relative;
  width: min(680px, 100%);
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(7, 14, 16, 0.34);
}

.cookie-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-modal-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.cookie-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(17, 22, 21, 0.08);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(17, 22, 21, 0.1);
  border-radius: 8px;
  background: rgba(246, 248, 242, 0.72);
}

.cookie-option strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 950;
}

.cookie-option p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-required {
  flex: 0 0 auto;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  color: var(--blue-deep);
  background: rgba(36, 92, 255, 0.1);
  font-weight: 900;
}

.cookie-option-toggle {
  cursor: pointer;
}

.cookie-option-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-option-toggle > span {
  width: 58px;
  height: 34px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(17, 22, 21, 0.18);
  transition: background 180ms ease;
}

.cookie-option-toggle > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(7, 14, 16, 0.18);
  transition: transform 180ms ease;
}

.cookie-option-toggle input:checked + span {
  background: var(--blue);
}

.cookie-option-toggle input:checked + span::after {
  transform: translateX(24px);
}

body.cookie-modal-open {
  overflow: hidden;
}

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

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

@media (max-width: 1060px) {
  .section-grid,
  .proof,
  .video-band,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-card {
    width: min(76%, 720px);
  }

  .proof,
  .video-band,
  .booking {
    width: min(var(--max), 100%);
  }
}

@media (max-width: 820px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding: 0 1rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header) + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 0.8rem;
    color: var(--ink);
    background: rgba(246, 248, 242, 0.97);
    border: 1px solid rgba(17, 22, 21, 0.12);
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(17, 22, 21, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.4rem;
    text-align: center;
  }

  .hero {
    min-height: 92svh;
    padding: 7.2rem 1rem 4.6rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-proof div {
    width: calc(50% - 0.4rem);
  }

  .section-light,
  .advantages,
  .proof,
  .booking,
  .section-dark,
  .faq,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .video-band.section-dark {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .video-band.section-dark::before,
  .video-band.section-dark::after {
    display: none;
  }

  .video-side-wave {
    display: none;
  }

  .intro-copy h2,
  .section-heading h2,
  .proof-copy h2,
  .video-copy h2,
  .booking-copy h2,
  .final-copy h2 {
    font-size: 2.25rem;
  }

  .media-stack {
    display: grid;
    gap: 1rem;
    min-height: 0;
  }

  .media-frame {
    position: relative;
  }

  .media-frame-large,
  .media-frame-small {
    width: 100%;
    height: auto;
  }

  .media-frame-large img,
  .media-frame-small img {
    aspect-ratio: 4 / 3;
  }

  .media-frame-small {
    transform:
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg));
  }

  .advantage-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 1rem;
  }

  .service-card {
    width: 100%;
    min-height: 0;
    padding: 1.35rem;
    justify-self: stretch;
  }

  .process-step {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "tag"
      "title"
      "copy";
    row-gap: 0.7rem;
  }

  .comparison-stage,
  .video-shell video {
    aspect-ratio: 4 / 5;
  }

  .booking {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .faq {
    padding-top: 2.5rem;
  }

  .meetergo-slot {
    min-height: 310px;
  }

  .meetergo-slot-live,
  .meetergo-slot-live .meetergo-iframe,
  .meetergo-slot-live iframe {
    width: 100%;
    min-height: 610px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
  }

  .cookie-actions,
  .cookie-modal-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-option-toggle {
    flex-direction: row;
    align-items: center;
  }

  .legal-page {
    padding: calc(var(--header) + 3rem) 1rem 5rem;
  }

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

  .site-footer {
    display: grid;
    gap: 1.1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-logo {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 5.9rem;
    padding-bottom: 3.2rem;
  }

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

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-lead {
    line-height: 1.45;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-top: 1.3rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-service-area {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
  }

  .hero-service-area span {
    width: 100%;
    justify-content: center;
  }

  .hero-proof {
    gap: 0.5rem;
    margin-top: 1.4rem;
  }

  .hero-proof div {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 76px;
    padding: 0.7rem;
  }

  .hero-proof strong {
    font-size: 1.12rem;
  }

  .hero-proof span {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .intro-copy h2,
  .section-heading h2,
  .proof-copy h2,
  .video-copy h2,
  .booking-copy h2,
  .final-copy h2 {
    font-size: 1.95rem;
  }

  .meetergo-slot strong {
    font-size: 1.55rem;
  }

  .faq-item button {
    align-items: flex-start;
  }

  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
    padding: 0.95rem;
  }

  .cookie-copy p {
    font-size: 0.95rem;
  }

  .cookie-modal {
    align-items: end;
    padding: 0;
  }

  .cookie-modal-panel {
    border-radius: 8px 8px 0 0;
  }
}

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

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