@import url("../fonts/poppins/poppins.css");

:root {
  --font-display: Poppins;
  --font-body: Poppins;
  --font-main: var(--font-display);
  --color-cyan: #00d8e4;
  --color-navy: #021231;
  --color-ice: #f6f7fb;
  --color-bg: var(--color-navy);
  --color-bg-cool: #f1f6fa;
  --color-surface: var(--color-ice);
  --color-surface-soft: var(--color-ice);
  --color-text: var(--color-navy);
  --color-body: var(--color-navy);
  --color-muted: #526078;
  --color-primary: var(--color-cyan);
  --color-primary-dark: var(--color-navy);
  --color-brand: var(--color-cyan);
  --color-brand-2: var(--color-navy);
  --color-accent: var(--color-navy);
  --color-lime: var(--color-cyan);
  --color-border: rgba(2, 18, 49, 0.12);
  --bg-base-layer: linear-gradient(
    180deg,
    var(--color-ice) 0%,
    var(--color-bg-cool) 100%
  );
  --bg-left-navy-fade: linear-gradient(
    90deg,
    rgba(2, 18, 49, 0.105) 0%,
    rgba(2, 18, 49, 0.058) 24%,
    rgba(2, 18, 49, 0.018) 46%,
    rgba(2, 18, 49, 0) 64%
  );
  --bg-right-cyan-glow: radial-gradient(
    ellipse 76% 92% at 100% 50%,
    rgba(0, 216, 228, 0.16) 0%,
    rgba(0, 216, 228, 0.095) 28%,
    rgba(0, 216, 228, 0.038) 54%,
    rgba(0, 216, 228, 0) 78%
  );
  --bg-ambient-system: var(--bg-right-cyan-glow), var(--bg-left-navy-fade),
    var(--bg-base-layer);
  --section-gradient: var(--color-navy);
  --section-gradient-dark: radial-gradient(
      circle at 78% 16%,
      rgba(0, 216, 228, 0.24),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 82%,
      rgba(0, 216, 228, 0.12),
      transparent 26rem
    ),
    linear-gradient(
      135deg,
      #021231 0%,
      #021231 62%,
      rgba(0, 216, 228, 0.18) 100%
    );
  --shadow-soft: 0 24px 70px rgba(2, 18, 49, 0.12);
  --shadow-card: 0 16px 40px rgba(2, 18, 49, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-strong: rgba(255, 255, 255, 0.16);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 44px rgba(2, 18, 49, 0.28);
  --glass-filter: blur(10px) saturate(130%);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --container: 1160px;
  --space-section: clamp(36px, 5vw, 49px);
  --anchor-offset: 116px;
  --ease: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  background: var(--color-navy);
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-body);
  font-size: 16px;
  font-weight: 400;
  background: var(--color-navy);
  line-height: 24px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

.ambient-bubbles {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
}

main {
  z-index: auto;
}

main > section > .container,
.site-footer .container {
  position: relative;
  z-index: 2;
}

.page-skeleton {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  color: var(--color-ice);
  background: radial-gradient(
      circle at 76% 18%,
      rgba(0, 216, 228, 0.18),
      transparent 28rem
    ),
    linear-gradient(135deg, var(--color-navy), #031936 72%, #05334a);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-skeleton.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.skeleton-shell {
  width: min(100% - 40px, 1280px);
  margin: 22px auto;
}

.skeleton-nav,
.skeleton-strip,
.skeleton-section,
.skeleton-stats span,
.skeleton-actions span,
.skeleton-cards span,
.skeleton-media span,
.skeleton-pill,
.skeleton-line,
.skeleton-logo,
.skeleton-menu,
.skeleton-cta {
  position: relative;
  overflow: hidden;
  background: rgba(246, 247, 251, 0.1);
  border: 1px solid rgba(0, 216, 228, 0.15);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.08);
}

.skeleton-nav::after,
.skeleton-strip::after,
.skeleton-section::after,
.skeleton-stats span::after,
.skeleton-actions span::after,
.skeleton-cards span::after,
.skeleton-media span::after,
.skeleton-pill::after,
.skeleton-line::after,
.skeleton-logo::after,
.skeleton-menu::after,
.skeleton-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(246, 247, 251, 0.18) 48%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.skeleton-nav {
  height: 78px;
  display: grid;
  grid-template-columns: 210px 1fr 150px;
  align-items: center;
  gap: 38px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
}

.skeleton-logo,
.skeleton-menu,
.skeleton-cta,
.skeleton-pill,
.skeleton-line,
.skeleton-actions span,
.skeleton-stats span,
.skeleton-cards span {
  display: block;
  border-radius: var(--radius-pill);
}

.skeleton-logo {
  width: 170px;
  height: 28px;
}

.skeleton-menu {
  width: min(100%, 460px);
  height: 18px;
  justify-self: center;
}

.skeleton-cta {
  width: 132px;
  height: 42px;
  justify-self: end;
}

.skeleton-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.skeleton-copy {
  display: grid;
  gap: 18px;
}

.skeleton-pill {
  width: 280px;
  height: 32px;
}

.skeleton-line {
  height: 28px;
}

.skeleton-line-xl {
  width: min(100%, 620px);
  height: 78px;
  border-radius: 18px;
}

.skeleton-line-lg {
  width: min(82%, 520px);
  height: 58px;
  border-radius: 18px;
}

.skeleton-line-md {
  width: min(72%, 430px);
}

.skeleton-line-sm {
  width: 150px;
  margin-inline: auto;
}

.skeleton-actions,
.skeleton-stats,
.skeleton-cards {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 14px;
}

.skeleton-actions span {
  width: 172px;
  height: 58px;
  border-radius: 18px;
}

.skeleton-stats span {
  width: 164px;
  height: 82px;
}

.skeleton-media {
  position: relative;
  min-height: 420px;
}

.skeleton-media span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
}

.skeleton-media span:nth-child(1) {
  transform: translate(-96%, -46%) rotate(-10deg);
  opacity: 0.58;
}

.skeleton-media span:nth-child(2) {
  transform: translate(-50%, -52%);
  opacity: 0.88;
}

.skeleton-media span:nth-child(3) {
  transform: translate(-4%, -44%) rotate(10deg);
  opacity: 0.58;
}

.skeleton-strip {
  height: 116px;
  border-radius: 18px;
}

.skeleton-section {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: 64px;
  padding: 38px;
  border-radius: 18px;
}

.skeleton-cards {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skeleton-cards span {
  height: 110px;
  border-radius: 18px;
}

@keyframes skeletonShimmer {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 640px) {
  .skeleton-shell {
    width: min(100% - 24px, var(--container));
    margin-top: 14px;
  }

  .skeleton-nav {
    height: 68px;
    grid-template-columns: 150px 44px;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .skeleton-logo {
    width: 132px;
    height: 24px;
  }

  .skeleton-menu {
    width: 42px;
    height: 42px;
    border-radius: 50%;
  }

  .skeleton-cta {
    display: none;
  }

  .skeleton-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 58px;
  }

  .skeleton-pill {
    width: 250px;
    height: 26px;
  }

  .skeleton-line-xl {
    width: 100%;
    height: 50px;
  }

  .skeleton-line-lg {
    width: 82%;
    height: 44px;
  }

  .skeleton-line-md {
    width: 94%;
    height: 22px;
  }

  .skeleton-actions {
    grid-auto-flow: row;
  }

  .skeleton-actions span {
    width: 100%;
    height: 58px;
  }

  .skeleton-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: initial;
  }

  .skeleton-stats span {
    width: auto;
    height: 82px;
    border-radius: 18px;
  }

  .skeleton-media {
    min-height: 330px;
  }

  .skeleton-media span {
    width: min(48vw, 176px);
  }

  .skeleton-strip {
    height: 88px;
    margin-top: 18px;
  }

  .skeleton-section {
    margin-top: 34px;
    padding: 24px 14px;
  }

  .skeleton-cards {
    grid-auto-flow: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skeleton-cards span {
    height: 92px;
  }
}

main {
  position: relative;
  z-index: 0;
  background: transparent;
}

main > section {
  position: relative;
  overflow: hidden;
  background: transparent;
}

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

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

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

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

.section-pad {
  padding-block: var(--space-section) 0;
}

main > section[id] {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 20px;
  z-index: 50;
  width: min(90%, 1480px);
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(9px) saturate(125%);
  -webkit-backdrop-filter: blur(9px) saturate(125%);
  transition: background var(--ease), box-shadow var(--ease),
    border-color var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 46px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.navbar {
  position: relative;
  width: 100%;
  min-height: 78px;
  padding-inline: clamp(10px, 1vw, 14px);
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) auto minmax(230px, 0.74fr);
  align-items: center;
  gap: clamp(24px, 3.2vw, 64px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-header .brand img {
  width: clamp(190px, 12vw, 228px);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-accent);
  border-radius: 50%;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.96rem, 1.08vw, 1.12rem);
  font-weight: 750;
  letter-spacing: 0.08em;
}

.nav-menu a:not(.btn) {
  transition: color var(--ease);
}

.nav-menu a:not(.btn):hover {
  color: #fff;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-pill);
  transition: transform var(--ease), opacity var(--ease);
}

.venture-text {
    color: aqua;
    font-size: 25px;
    font-weight: 500;
    margin-top: -5px;
    margin-bottom: 25px;
}

.no-max-width {
    max-width: none!important;
}


@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease),
    background var(--ease), color var(--ease);
}

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

.btn-primary {
  color: var(--color-navy);
  background: var(--color-primary);
  box-shadow: 0 14px 34px rgba(0, 216, 228, 0.28);
}

.btn-primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
}

.btn-primary:hover .btn-arrow {
  color: var(--color-navy);
  background: var(--color-primary);
}

.btn-ghost,
.btn-outline {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--color-border);
}

.btn-ghost:hover,
.btn-outline:hover {
  background: var(--color-text);
  color: #fff;
}

.btn-light {
  color: var(--color-text);
  background: #fff;
}

.btn-small {
  min-height: 44px;
  padding-inline: 20px 10px;
}

.btn-arrow {
  width: 30px;
  height: 30px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  margin-right: -4px;
  color: var(--color-primary);
  background: #fff;
  border-radius: 50%;
  line-height: 1;
  font-size: 0.96rem;
}

.btn-ghost .btn-arrow,
.btn-outline .btn-arrow {
  color: var(--color-navy);
  background: var(--color-primary);
}

.site-header .header-cta,
.site-header .mobile-menu-cta {
  justify-self: end;
  min-width: 170px;
  min-height: 52px;
  padding-inline: 26px 16px;
  color: #11151c;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.site-header .btn:hover {
  transform: none;
}

.site-header .btn-primary:hover {
  color: #11151c;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.site-header .btn-primary:hover .btn-arrow {
  color: currentColor;
  background: transparent;
}

.site-header .btn-arrow {
  width: auto;
  height: auto;
  margin: 0 0 0 2px;
  color: currentColor;
  background: transparent;
  border-radius: 0;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 0.8;
}

.mobile-menu-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(560px, 65vh, 940px);
  display: flex;
  align-items: center;
  padding-top: clamp(124px, 9vw, 168px);
  padding-bottom: clamp(100px, 5vw, 168px);
  overflow: hidden;
  background: var(--section-gradient-dark);
  isolation: isolate;
}

@media (min-width: 981px) {
  .hero.section-pad {
    padding-top: clamp(56px, 6vw, 88px);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(2, 18, 49, 0.92) 0%,
      rgba(2, 18, 49, 0.42) 52%,
      rgba(0, 216, 228, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 28%,
      rgba(0, 0, 0, 0.16) 100%
    );
  opacity: 0.94;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 216, 228, 0.48),
    transparent
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: clamp(64px, 7vw, 112px);
}

.hero .container {
  width: min(100% - 56px, 1420px);
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

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

h1,
h2,
h3,
.hero-title {
  font-family: var(--font-display);
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-title {
  max-width: 740px;
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 700;
}

.hero .hero-title {
  max-width: 760px;
  font-size: clamp(58px, 5.35vw, 92px);
  line-height: 0.92;
  font-weight: 600;
}

.section-copy .hero-title,
.section-heading .hero-title,
.booking-copy .hero-title,
.creator-box .hero-title {
  max-width: 820px;
  margin-top: 1.5rem;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-title-line {
  white-space: nowrap;
}

.text-gradient-brand {
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-2));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.15;
}

p {
  font-family: var(--font-body);
  color: var(--color-muted);
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-actions .btn {
  min-height: 58px;
  padding-inline: 28px 16px;
  gap: 10px;
}

.hero-actions .btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

.hero-actions .btn-ghost:hover {
  color: var(--color-navy);
  background: #fff;
}

.hero-actions .btn-arrow {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--color-primary);
  background: #fff;
  border-radius: 50%;
  font-size: 0.98rem;
  line-height: 1;
}

.hero-actions .btn-ghost .btn-arrow {
  color: var(--color-navy);
  background: var(--color-primary);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(165px, 1fr));
  max-width: 650px;
  margin-top: 38px;
  gap: 12px;
}

.stat-row div {
  min-width: 0;
  min-height: 82px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 10px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

.stat-row strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--color-text);
  font-size: clamp(28px, 2.15vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.stat-row .stat-suffix {
  color: var(--color-primary);
  font-size: 0.8em;
}

.stat-row small {
  display: block;
  margin-top: 6px;
  color: var(--color-ice);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  transform: translateY(-10px);
  width: 100%;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% 2% 9%;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.13),
      rgba(255, 255, 255, 0.04)
    ),
    rgba(0, 216, 228, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  pointer-events: none;
}

.hero-recent-work {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
}

.hero-recent-work .eyebrow {
  margin: 0 0 18px;
  text-align: center;
}

.hero-recent-work  {
  min-height: clamp(390px, 40vw, 520px);
  margin-top: 0;
}

.hero-recent-work  .reel-stage {
  height: clamp(330px, 34vw, 460px);
  max-width: 600px;
  overflow: visible;
}

.hero-recent-work  .reel-slide {
  width: clamp(170px, 15.5vw, 250px);
}

.brand-strip {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  padding-block: 16px 42px;
  color: var(--color-text);
}

.brand-strip .container {
  width: 100%;
}

.brand-strip .reveal {
  opacity: 1;
  transform: none;
}

.brand-strip::before,
.brand-strip::after {
  content: none;
}

.strip-marquee {
  width: 100%;
  min-height: 132px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 18px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px) clamp(20px, 4vw, 44px);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 247, 251, 0.95)
    ),
    #fff;
  border: 1px solid rgba(0, 216, 228, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 18, 49, 0.08);
}

.strip-marquee h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.strip-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.strip-window::before,
.strip-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 54px;
  pointer-events: none;
}

.strip-window::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.strip-window::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  animation: stripMarquee 24s linear infinite;
}

.strip-marquee:hover .strip-track,
.strip-marquee:focus-within .strip-track {
  animation-play-state: paused;
}

.strip-track span {
  min-width: clamp(190px, 18vw, 250px);
  min-height: 48px;
  display: grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

.strip-track i {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-primary-dark);
  background: rgba(0, 216, 228, 0.1);
  border-radius: 50%;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(0, 216, 228, 0.12);
}

.strip-track strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.18;
}

.strip-track small {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.15;
}

@keyframes stripMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .strip-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(34px, 7vw, 88px);
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

#services .split-layout {
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}

#services .section-copy {
  position: static;
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.about-actions .btn {
  min-height: 48px;
  padding-inline: 26px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
}

.about-actions .btn-primary {
  background: var(--color-primary);
  box-shadow: 0 12px 28px rgba(0, 216, 228, 0.24);
}

.about-actions .btn-primary:hover {
  background: var(--color-primary-dark);
}

.about-actions .btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 216, 228, 0.24);
  box-shadow: 0 10px 24px rgba(2, 18, 49, 0.08);
}

.about-actions .btn-outline:hover {
  color: #fff;
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.about-actions .btn-arrow {
  display: none;
}

.about-benefits {
  max-width: 1080px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  text-align: center;
}

.about-benefits h2 {
  margin: 0 0 clamp(26px, 3vw, 34px);
  color: var(--color-text);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.about-benefits h2 span {
  color: var(--color-primary);
}

.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.about-benefit {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.about-benefit-icon {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--color-primary);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(246, 247, 251, 0.72)
    ),
    #fff;
  border: 1px solid rgba(0, 216, 228, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(2, 18, 49, 0.1);
}

.about-benefit-icon::before,
.about-benefit-icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-benefit-icon::before {
  inset: auto 12px 11px;
  height: 4px;
  background: var(--color-lime);
  border-radius: var(--radius-pill);
}

/* .about-benefit-icon::after {
  right: -5px;
  top: -5px;
  width: 20px;
  height: 20px;
  background: var(--color-lime);
  box-shadow: 0 0 0 5px rgba(246, 247, 251, 0.95);
} */

.about-benefit-icon svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-benefit h3 {
  max-width: 190px;
  margin: 0 auto 8px;
  color: var(--color-text);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 800;
  line-height: 1.16;
}

.about-benefit p {
  max-width: 210px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.05rem;
}

.step-card,
.pricing-card,
.testimonial-card,
.booking-form,
.feature-list > div,
.faq-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.icon-chip {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--color-text);
  background: var(--color-lime);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

#work .section-heading,
#process .section-heading,
#packages .section-heading,
#testimonials .section-heading {
  margin-inline: auto;
  text-align: center;
}

#work .section-heading p,
#process .section-heading p,
#packages .section-heading p,
#testimonials .section-heading p {
  margin-inline: auto;
}

#testimonials .section-heading {
  margin-bottom: clamp(18px, 3vw, 30px);
}

#testimonials .hero-title {
  font-size: clamp(30px, 4vw, 48px);
}

#work.section-pad {
  color: var(--color-ice);
  background: var(--color-navy);
  padding-block: clamp(72px, 8vw, 50px) clamp(52px, 7vw, 96px);
}

#work .section-heading {
  margin-bottom: clamp(22px, 4vw, 44px);
}

#work .eyebrow {
  color: rgba(246, 247, 251, 0.72);
}

#work .hero-title {
  color: var(--color-ice);
}

.work-carousel {
  --work-card-width: clamp(190px, 18vw, 340px);
  --work-card-gap: clamp(76px, 5.6vw, 128px);
  --work-stage-height: clamp(420px, 39vw, 660px);
  --work-curve-depth: clamp(22px, 3.2vw, 54px);
  position: relative;
  width: 100vw;
  margin-top: clamp(20px, 3vw, 36px);
  margin-left: calc(50% - 50vw);
  cursor: grab;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.work-carousel.is-dragging {
  cursor: grabbing;
}

.work-viewport {
  position: relative;
  width: 100%;
  height: var(--work-stage-height);
  overflow: hidden;
  contain: layout paint;
}

.work-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.work-slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: var(--work-card-width);
  aspect-ratio: 9 / 16;
  display: block;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(26px, 2vw, 36px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34),
    0 8px 18px rgba(0, 216, 228, 0.08);
  transform: translate3d(0, -50%, 0) scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
}

.work-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.24),
      transparent 22%,
      transparent 72%,
      rgba(0, 0, 0, 0.16)
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16),
      transparent 18%,
      transparent 82%,
      rgba(0, 0, 0, 0.12)
    );
}

.work-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.94) saturate(0.98);
  pointer-events: none;
}

.work-slide.is-centered {
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.38),
    0 10px 24px rgba(0, 216, 228, 0.12);
}

.work-slide.is-centered video {
  filter: brightness(1.03) saturate(1.04);
}

@media (max-width: 980px) {
  .work-carousel {
    --work-card-width: clamp(162px, 28vw, 248px);
    --work-card-gap: clamp(44px, 7vw, 82px);
    --work-stage-height: clamp(360px, 64vw, 548px);
    --work-curve-depth: clamp(16px, 4vw, 34px);
  }
}

@media (max-width: 640px) {
  #work.section-pad {
    padding-block: clamp(28px, 7vw, 44px) clamp(26px, 6vw, 42px);
  }

  .work-carousel {
    --work-card-width: min(58vw, 208px);
    --work-card-gap: clamp(26px, 8vw, 48px);
    --work-stage-height: clamp(330px, 104vw, 460px);
    --work-curve-depth: clamp(12px, 5vw, 24px);
  }

  .work-slide {
    border-radius: 24px;
  }
}

.reel-slider {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  margin-top: clamp(26px, 4vw, 54px);
}

.reel-stage {
  position: relative;
  height: clamp(360px, 42vw, 540px);
  max-width: 1050px;
  margin-inline: auto;
  perspective: 1100px;
}

.reel-slide {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(190px, 22vw, 310px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(2, 18, 49, 0.18);
  border-radius: 36px;
  background: #111;
  box-shadow: 0 28px 70px rgba(2, 18, 49, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.74);
  transition: transform 520ms ease, opacity 520ms ease, filter 520ms ease;
}

.reel-slide::after {
  content: "moment";
  position: absolute;
  top: 22px;
  right: 18px;
  z-index: 2;
  color: var(--color-lime);
  font-size: 0.82rem;
  font-weight: 800;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
}

.reel-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reel-slide.is-active {
  z-index: 5;
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.reel-slide.is-prev {
  z-index: 4;
  opacity: 0.72;
  filter: saturate(0.9) brightness(1.08);
  transform: translateX(-96%) translateY(24px) rotate(-9deg) scale(0.9);
}

.reel-slide.is-next {
  z-index: 4;
  opacity: 0.72;
  filter: saturate(0.9) brightness(1.08);
  transform: translateX(-4%) translateY(24px) rotate(9deg) scale(0.9);
}

.reel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: clamp(20px, 3vw, 34px);
}

.reel-nav {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(2, 18, 49, 0.1);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.reel-nav:hover {
  color: var(--color-navy);
  background: var(--color-primary);
  transform: translateY(-2px);
}

.reel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.reel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(2, 18, 49, 0.18);
  cursor: pointer;
  transition: width var(--ease), background var(--ease);
}

.reel-dot.is-active {
  width: 42px;
  background: var(--color-primary);
}

.highlight-section,
.testimonials-section,
.faq-section {
  background: transparent;
}

.testimonials-section {
  padding-bottom: clamp(92px, 9vw, 132px);
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  background: transparent;
}

.process-section::before {
  content: none;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .reveal {
  opacity: 1;
  transform: none;
}

.process-section .section-heading {
  max-width: 820px;
}

.process-section .eyebrow {
  width: max-content;
  margin-inline: auto;
  padding: 10px 18px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 216, 228, 0.18);
  border-radius: var(--radius-pill);
}

.process-section .eyebrow::before {
  background: var(--color-lime);
  box-shadow: 0 0 18px rgba(0, 216, 228, 0.7);
}

.process-section .hero-title {
  color: var(--color-ice);
}

.process-section .section-heading p:not(.eyebrow) {
  color: var(--color-muted);
}

.process-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: clamp(22px, 5vw, 64px);
  max-width: 1050px;
  margin: clamp(26px, 5vw, 52px) auto 30px;
}

.process-icon-step {
  position: relative;
  display: grid;
  justify-items: center;
}

.process-icon-card {
  position: relative;
  width: clamp(104px, 10vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--color-lime);
  background: radial-gradient(
      circle at 35% 25%,
      rgba(0, 216, 228, 0.3),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(0, 216, 228, 0.22);
  border-radius: 30px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24),
    0 18px 44px rgba(0, 216, 228, 0.12);
  transform: rotate(-4deg);
}

.process-icon-step:nth-child(3) .process-icon-card,
.process-icon-step:nth-child(5) .process-icon-card {
  transform: translateY(8px) rotate(4deg);
}

.process-icon-card::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -20px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0, 216, 228, 0.58);
  filter: blur(10px);
}

.process-icon-card svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-section {
  padding-block: clamp(66px, 7vw, 92px);
}

.process-section .section-heading {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.process-section .hero-title {
  font-size: clamp(34px, 4.4vw, 58px);
}

.process-section .steps-grid {
  display: none;
}

.process-section .process-showcase {
  align-items: start;
  gap: clamp(24px, 4vw, 58px);
  max-width: 1030px;
  margin: 0 auto;
}

.process-section .process-icon-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-section .process-icon-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  left: calc(50% + 52px);
  width: clamp(54px, 6vw, 96px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    rgba(0, 216, 228, 0.14)
  );
}

.process-section .process-icon-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(50% + 52px + clamp(54px, 6vw, 96px));
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: rotate(45deg);
}

.process-section .process-icon-card {
  width: 74px;
  border-radius: 50%;
  transform: none;
  background: radial-gradient(
      circle at 35% 25%,
      rgba(216, 244, 90, 0),
      transparent 34%
    ),
    #ffffff;
  color: var(--color-primary);
  border-color: rgba(0, 216, 228, 0.2);
  box-shadow: 0 14px 34px rgba(2, 18, 49, 0.1);
}

.process-section .process-icon-step:nth-child(3) .process-icon-card,
.process-section .process-icon-step:nth-child(5) .process-icon-card {
  transform: none;
}

.process-section .process-icon-card::after {
  content: none;
}

.process-section .process-icon-card svg {
  width: 48%;
  height: 48%;
  stroke-width: 2.8;
}

.process-section .process-icon-step h4 {
  max-width: 150px;
  margin: 16px auto 7px;
  color: var(--color-ice);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.12;
}

.process-section .process-icon-step p {
  max-width: 175px;
  margin: 0 auto;
  color: var(--color-bg-cool);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  counter-reset: steps;
}

.step-card {
  position: relative;
  min-height: 258px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 30px);
  overflow: hidden;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(2, 18, 49, 0.1);
  box-shadow: 0 16px 36px rgba(2, 18, 49, 0.09);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -48px;
  width: 132px;
  aspect-ratio: 1;
  border: 12px solid rgba(0, 216, 228, 0.055);
  border-radius: 32px;
  transform: rotate(-10deg);
}

.step-card h3,
.step-card p,
.step-number,
.step-arrow {
  position: relative;
  z-index: 1;
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--color-lime);
  border: 1px solid rgba(0, 216, 228, 0.42);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--color-muted);
}

.step-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: auto;
  color: var(--color-primary);
  border: 1px solid rgba(0, 216, 228, 0.22);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: color var(--ease), background var(--ease), transform var(--ease);
}

.step-card:hover .step-arrow {
  color: var(--color-navy);
  background: var(--color-primary);
  transform: translateX(4px);
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

#packages {
  position: relative;
  overflow: hidden;
}

#packages::before,
#packages::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 440px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.38;
  animation: pricingSmoke 12s ease-in-out infinite alternate;
}

#packages::before {
  left: -140px;
  top: 24%;
  background: radial-gradient(circle, rgba(0, 216, 228, 0.2), transparent 68%);
}

#packages::after {
  right: -160px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(0, 216, 228, 0.24), transparent 70%);
  animation-delay: -4s;
}

@keyframes pricingSmoke {
  from {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  to {
    transform: translate3d(28px, -24px, 0) scale(1.08);
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 34px);
  cursor: pointer;
  outline: none;
  transition: transform var(--ease), border-color var(--ease),
    box-shadow var(--ease), background var(--ease), color var(--ease);
}

.pricing-card:hover,
.pricing-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 216, 228, 0.36);
  box-shadow: var(--shadow-soft);
}

.pricing-card.is-active {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-16px);
  border-color: rgba(0, 216, 228, 0.42);
  box-shadow: 0 28px 80px rgba(22, 17, 15, 0.22);
}

.pricing-card.is-active p,
.pricing-card.is-active li,
.pricing-card.is-active .package-label {
  color: rgba(255, 255, 255, 0.74);
}

.pricing-card.is-active .btn {
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 14px 34px rgba(0, 216, 228, 0.28);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  color: var(--color-text);
  background: var(--color-lime);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
}

.package-label {
  margin-bottom: 12px;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin-block: 18px;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: var(--color-muted);
}

.pricing-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--color-primary);
  font-weight: 800;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 8vw, 106px);
  background: transparent;
}

.pricing-section::before,
.pricing-section::after {
  display: none;
}

.pricing-panel {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pricing-panel .section-heading {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 42px);
}

.pricing-panel .hero-title {
  margin-top: 14px;
  font-size: clamp(34px, 4.4vw, 58px);
}

.pricing-panel .pricing-grid {
  gap: clamp(16px, 2vw, 24px);
}

.pricing-panel .pricing-card {
  min-height: 0;
  padding: clamp(22px, 3vw, 32px);
  border-color: rgba(2, 18, 49, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text);
  cursor: pointer;
  transform: none;
  box-shadow: 0 16px 34px rgba(2, 18, 49, 0.08);
}

.pricing-panel .pricing-card:hover,
.pricing-panel .pricing-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 216, 228, 0.28);
}

.pricing-panel .pricing-card.is-active {
  color: var(--color-text);
  background: #ffffff;
  border-color: rgba(0, 216, 228, 0.42);
  box-shadow: 0 18px 44px rgba(0, 216, 228, 0.13);
  transform: none;
}

.pricing-panel .pricing-card.is-active::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-lime));
  border-radius: 8px 8px 0 0;
}

.pricing-panel .pricing-card.is-active p,
.pricing-panel .pricing-card.is-active li,
.pricing-panel .pricing-card.is-active .package-label {
  color: var(--color-muted);
}

.pricing-panel .popular-badge {
  top: 16px;
  right: auto;
  left: 20px;
  color: var(--color-navy);
  background: var(--color-primary);
}

.pricing-panel .popular-badge + .package-label {
  margin-top: 34px;
}

.pricing-panel .package-label {
  margin-bottom: 8px;
  color: var(--color-primary-dark);
}

.pricing-panel h3 {
  margin-block: 0 6px;
  color: var(--color-primary-dark);
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  line-height: 1.08;
}

.pricing-panel .price {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.pricing-panel .pricing-card ul {
  gap: 13px;
  margin: 0 0 30px;
}

.pricing-panel .pricing-card li {
  font-size: 0.96rem;
  font-weight: 700;
}

.pricing-panel .pricing-card li::before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 10px;
  border: 3px solid var(--color-lime);
  border-radius: 50%;
  vertical-align: -1px;
}

.pricing-panel .btn {
  min-height: 48px;
  justify-content: center;
  border-radius: var(--radius-pill);
}


.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list > div {
  padding: 26px;
}

.testimonial-carousel {
  position: relative;
  min-height: clamp(290px, 28vw, 340px);
  margin-top: clamp(14px, 3vw, 28px);
}

.testimonial-stage {
  position: relative;
  height: clamp(200px, 19vw, 238px);
  max-width: 920px;
  margin-inline: auto;
  perspective: 1200px;
}

.testimonial-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(330px, 40vw, 460px);
  min-height: clamp(140px, 15vw, 176px);
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2vw, 24px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.84);
  transition: transform 540ms ease, opacity 540ms ease, filter 540ms ease,
    background 540ms ease, color 540ms ease;
}

.testimonial-card.is-active {
  z-index: 6;
  color: var(--color-text);
  background: #fff;
  border-color: rgba(0, 216, 228, 0.34);
  box-shadow: 0 20px 54px rgba(2, 18, 49, 0.14);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.testimonial-card.is-prev {
  z-index: 4;
  opacity: 0.58;
  filter: saturate(0.82) brightness(1.02);
  transform: translateX(-104%) translateY(16px) scale(0.86);
}

.testimonial-card.is-next {
  z-index: 4;
  opacity: 0.58;
  filter: saturate(0.82) brightness(1.02);
  transform: translateX(4%) translateY(16px) scale(0.86);
}

.testimonial-card {
  z-index: 2;
  opacity: 0.22;
  filter: saturate(0.72) brightness(1.04);
  transform: translateX(-154%) translateY(26px) scale(0.74);
}

.testimonial-card {
  z-index: 2;
  opacity: 0.22;
  filter: saturate(0.72) brightness(1.04);
  transform: translateX(54%) translateY(26px) scale(0.74);
}

.testimonial-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-primary);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
}

.testimonial-card.is-active .avatar {
  background: var(--color-lime);
  color: var(--color-text);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.45);
}

.rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1;
}

.testimonial-card.is-active .rating {
  color: #62a51f;
}

.testimonial-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  font-weight: 650;
  line-height: 1.35;
}

.testimonial-card.is-active p {
  color: var(--color-text);
  font-weight: 750;
}

.testimonial-author {
  display: block;
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.testimonial-card.is-active .testimonial-author {
  border-color: transparent;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.testimonial-card.is-active span {
  color: var(--color-muted);
}

.testimonial-card .rating span,
.testimonial-card.is-active .rating span {
  display: inline;
  color: inherit;
}

.testimonial-controls {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(2, 18, 49, 0.1);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  color: var(--color-navy);
  background: var(--color-primary);
  outline: none;
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(2, 18, 49, 0.18);
  cursor: pointer;
  transition: width var(--ease), background var(--ease);
}

.testimonial-dot.is-active {
  width: 28px;
  background: var(--color-primary);
}

.booking-section {
  background: transparent;
  color: var(--color-text);
}

.booking-section p,
.booking-section .eyebrow,
.booking-section li {
  color: var(--color-muted);
}

.booking-section .eyebrow,
.creator-box .eyebrow {
  color: var(--color-primary-dark);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(32px, 6vw, 70px);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(2, 18, 49, 0.09);
  border-radius: var(--radius-pill);
  font-weight: 750;
}

.booking-form {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  color: var(--color-text);
  border: 1px solid rgba(2, 18, 49, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 18, 49, 0.1);
}

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

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  color: var(--color-text);
  background: #f6f7fb;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease),
    background var(--ease);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 216, 228, 0.12);
}

.field-error {
  border-color: #d92d20;
}

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

.form-message {
  /* min-height: 24px;
  margin: 16px 0; */
  color: var(--color-primary-dark);
  font-weight: 750;
}

.form-message.error {
  color: #d92d20;
}

.form-message.success {
  color: #16803a;
}

.creator-cta {
  padding-block: 64px;
  background: transparent;
}

.creator-box {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 50px);
  overflow: hidden;
  color: #fff;
  background: radial-gradient(
      circle at 82% 20%,
      rgba(0, 216, 228, 0.28),
      transparent 22rem
    ),
    linear-gradient(135deg, var(--color-navy) 0%, #052556 100%);
  border: 1px solid rgba(0, 216, 228, 0.3);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(2, 18, 49, 0.2);
}

.creator-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-lime));
}

.creator-box > * {
  position: relative;
  z-index: 1;
}

.creator-box p,
.creator-box .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.creator-box h2 {
  margin-bottom: 0;
}

.creator-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.creator-perks span {
  padding: 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 216, 228, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 750;
}

.creator-box .btn-light {
  color: var(--color-navy);
  background: var(--color-primary);
  box-shadow: 0 14px 34px rgba(0, 216, 228, 0.24);
}

.creator-box .btn-light:hover {
  color: #fff;
  background: var(--color-primary-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 72px);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 0;
  border: 0;
  color: var(--color-text);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  color: var(--color-primary-dark);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px 60px;
}

.faq-item.active .faq-panel {
  max-height: 160px;
}

.nav-menu a.nav-active {
  color: #fff;
}

.terms-hero {
  padding-top: clamp(64px, 8vw, 104px);
}

.terms-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(28px, 6vw, 88px);
}

.terms-hero-copy,
.terms-update {
  min-width: 0;
}

.terms-hero-copy .hero-title {
  margin-bottom: 20px;
}

.terms-hero-copy .hero-title,
.terms-hero-copy .hero-text,
.terms-update p {
  overflow-wrap: anywhere;
}

.terms-update {
  padding: 24px;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.terms-update span,
.terms-sidebar strong,
.legal-number {
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.terms-update strong {
  display: block;
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.terms-update p {
  margin: 0;
}

.legal-section {
  background: transparent;
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.terms-sidebar {
  position: sticky;
  top: 110px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.terms-sidebar nav {
  display: grid;
  gap: 4px;
  margin-top: 16px;
}

.terms-sidebar a {
  padding: 9px 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(2, 18, 49, 0.08);
  transition: color var(--ease), transform var(--ease);
}

.terms-sidebar a:hover {
  color: var(--color-text);
  transform: translateX(3px);
}

.terms-content {
  display: grid;
}

.legal-block {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid rgba(2, 18, 49, 0.12);
  scroll-margin-top: 112px;
}

.legal-block:first-child {
  padding-top: 0;
}

.legal-block h2 {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.14;
}

.legal-block p,
.legal-block li {
  color: var(--color-ice);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-block p {
  max-width: 860px;
  margin-bottom: 0;
}

.legal-block ul {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-block li {
  position: relative;
  padding-left: 22px;
}

.legal-block li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.legal-block strong {
  color: var(--color-text);
}

main > section .hero-title,
main > section .section-heading .hero-title,
main > section .section-copy .hero-title,
main > section .eyebrow,
main > section .about-benefits h2,
main > section .about-benefit h3,
main > section .process-icon-step h3,
main > section .stat-row strong,
main > section .legal-block h2 {
  color: #fff;
}

main > section .hero-text,
main > section .section-heading p:not(.eyebrow),
main > section .section-copy p:not(.eyebrow),
main > section .about-benefit p,
main > section .process-icon-step p,
main > section .legal-block p,
main > section .legal-block li {
  color: rgba(255, 255, 255, 0.72);
}

main > section .text-gradient-brand {
  background: linear-gradient(90deg, var(--color-primary), #fff);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 86px) 0 26px;
  color: #fff;
  background: var(--section-gradient-dark);
}

.site-footer::before {
  content: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.2fr) minmax(140px, 0.52fr) minmax(190px, 0.72fr)
    minmax(250px, 0.88fr);
  align-items: start;
  gap: clamp(24px, 4vw, 54px);
  padding-bottom: clamp(34px, 5vw, 54px);
}

.footer-brand .brand-mark {
  color: var(--color-navy);
  background: var(--color-primary);
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand img {
  width: clamp(240px, 22vw, 330px);
}

.footer-main p {
  max-width: 430px;
  margin: 18px 0 24px;
  font-size: 1rem;
}

.footer-cta {
  width: max-content;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  margin: 4px 0 8px;
  color: var(--color-primary);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  transition: color var(--ease), transform var(--ease), border-color var(--ease),
    background var(--ease);
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 216, 228, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.footer-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-card span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 0 5px rgba(0, 216, 228, 0.18);
}

.footer-card strong {
  display: block;
  max-width: 260px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.footer-social {
  grid-template-columns: repeat(3, 44px);
  margin-top: 22px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 216, 228, 0.22);
  border-radius: 50%;
  font-size: 0.8rem;
}

.footer-social a:hover {
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.btn,
.nav-toggle,
.strip-marquee,
.about-benefit-icon,
.step-card,
.pricing-card,
.testimonial-card,
.booking-form,
.feature-list > div,
.faq-item,
.work-nav,
.reel-nav,
.testimonial-nav,
.process-icon-card,
.process-section .process-icon-card,
.contact-list li,
.terms-update,
.terms-sidebar,
.footer-card,
.footer-social a,
.creator-box,
.icon-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
}

.strip-marquee,
.booking-form,
.creator-box,
.terms-update,
.terms-sidebar,
.footer-card {
  border-radius: 24px;
}

.strip-marquee {
  color: #fff;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.08)
    ),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.strip-marquee h2,
.strip-track span,
.strip-track strong {
  color: #fff;
}

.strip-track small {
  color: rgba(255, 255, 255, 0.68);
}

.strip-track i {
  color: #fff;
  background: rgba(0, 216, 228, 0.2);
  box-shadow: 0 8px 20px rgba(0, 216, 228, 0.14);
}

.strip-window::before {
  background: linear-gradient(
    90deg,
    rgba(13, 31, 64, 0.74),
    rgba(13, 31, 64, 0)
  );
}

.strip-window::after {
  background: linear-gradient(
    270deg,
    rgba(13, 31, 64, 0.74),
    rgba(13, 31, 64, 0)
  );
}

.step-card,
.pricing-card,
.pricing-panel .pricing-card,
.testimonial-card,
.feature-list > div,
.faq-item {
  border-radius: 18px;
}

.btn-primary,
.hero-actions .btn-primary,
.pricing-card .btn-primary,
.pricing-panel .btn-primary,
.creator-box .btn-light,
.footer-cta {
  color: var(--color-navy);
  background: rgba(0, 216, 228, 0.82);
  border-color: rgba(0, 216, 228, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 34px rgba(0, 216, 228, 0.18);
}

.site-header .header-cta,
.site-header .mobile-menu-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover,
.hero-actions .btn-primary:hover,
.pricing-card .btn-primary:hover,
.pricing-panel .btn-primary:hover,
.creator-box .btn-light:hover,
.footer-cta:hover {
  color: #fff;
  background: rgba(0, 216, 228, 0.28);
  border-color: rgba(0, 216, 228, 0.55);
}

.site-header .header-cta:hover,
.site-header .mobile-menu-cta:hover {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-ghost,
.btn-outline,
.about-actions .btn-outline,
.pricing-card .btn-outline,
.pricing-panel .btn-outline {
  color: #fff;
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.btn-ghost:hover,
.btn-outline:hover,
.about-actions .btn-outline:hover,
.pricing-card .btn-outline:hover,
.pricing-panel .btn-outline:hover {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.86);
}

.btn-arrow,
.hero-actions .btn-arrow,
.btn-ghost .btn-arrow,
.btn-outline .btn-arrow,
.pricing-card .btn-arrow,
.pricing-panel .btn-arrow {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.9);
}

.step-card,
.pricing-card,
.pricing-panel .pricing-card,
.testimonial-card,
.testimonial-card.is-active,
.booking-form,
.feature-list > div,
.faq-item,
.terms-update,
.terms-sidebar,
.footer-card,
.creator-box {
  color: #fff;
}

.step-card h3,
.pricing-card h3,
.pricing-panel h3,
.pricing-panel .price,
.testimonial-card strong,
.testimonial-card.is-active strong,
.booking-form label span,
.feature-list h3,
.faq-item button,
.terms-update strong,
.legal-block strong,
.footer-card strong {
  color: #fff;
}

.step-card p,
.pricing-card p,
.pricing-card li,
.pricing-card .package-label,
.pricing-panel .pricing-card p,
.pricing-panel .pricing-card li,
.pricing-panel .pricing-card .package-label,
.pricing-panel .pricing-card.is-active p,
.pricing-panel .pricing-card.is-active li,
.pricing-panel .pricing-card.is-active .package-label,
.testimonial-card p,
.testimonial-card.is-active p,
.testimonial-card span,
.testimonial-card.is-active span,
.booking-form p,
.feature-list p,
.faq-panel p,
.terms-update p,
.terms-sidebar a,
.footer-card,
.contact-list li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-panel .pricing-card,
.pricing-panel .pricing-card.is-active,
.testimonial-card.is-active,
.booking-form,
.footer-card {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border);
}

.pricing-panel .pricing-card.is-active::before,
.creator-box::before {
  background: linear-gradient(
    90deg,
    rgba(0, 216, 228, 0.9),
    rgba(255, 255, 255, 0.58)
  );
}

.pricing-card,
.pricing-panel .pricing-card {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 34vw, 560px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(215px, 17vw, 245px) clamp(22px, 2.4vw, 30px)
    clamp(24px, 2.6vw, 32px);
  text-align: center;
  color: #fff;
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.08),
      rgba(2, 18, 49, 0.2) 44%,
      rgba(2, 18, 49, 0.86) 100%
    ),
    rgba(2, 18, 49, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
}

.pricing-section .container {
  width: min(100% - 48px, 1520px);
}

.pricing-panel {
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.pricing-panel .pricing-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: clamp(22px, 2.5vw, 40px);
}

.pricing-card::before,
.pricing-panel .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(195px, 16vw, 235px);
  z-index: 0;
  background: radial-gradient(
      circle at 50% 48%,
      rgba(0, 216, 228, 0.22),
      transparent 9rem
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(0, 216, 228, 0.24),
      transparent 10rem
    ),
    radial-gradient(rgba(0, 216, 228, 0.24) 1px, transparent 1px);
  background-size: auto, auto, 8px 8px;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 64%,
    transparent 100%
  );
  pointer-events: none;
}

.pricing-card::after,
.pricing-panel .pricing-card::after {
  content: "";
  position: absolute;
  top: 46px;
  left: 50%;
  z-index: 0;
  width: min(56%, 220px);
  height: 92px;
  border-top: 3px solid rgba(0, 216, 228, 0.82);
  border-right: 3px solid rgba(0, 216, 228, 0.58);
  border-radius: 0 70px 0 0;
  filter: drop-shadow(0 0 14px rgba(0, 216, 228, 0.42));
  transform: translateX(-50%) rotate(-6deg);
  pointer-events: none;
}

.pricing-card p
{
    margin-bottom:0px!important;
}


.pricing-card:nth-child(2)::after,
.pricing-panel .pricing-card:nth-child(2)::after {
  top: 0;
  width: 2px;
  height: 174px;
  border: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    180deg,
    rgba(0, 216, 228, 0),
    rgba(0, 216, 228, 0.8),
    rgba(0, 216, 228, 0)
  );
  box-shadow: -18px 120px 0 -6px rgba(255, 255, 255, 0.95),
    -18px 120px 0 -2px rgba(0, 216, 228, 0.42),
    18px 150px 0 -6px rgba(255, 255, 255, 0.9),
    18px 150px 0 -2px rgba(0, 216, 228, 0.34);
  filter: drop-shadow(0 0 14px rgba(0, 216, 228, 0.34));
  transform: translateX(-50%);
}

.pricing-card:nth-child(3)::after,
.pricing-panel .pricing-card:nth-child(3)::after {
  top: 104px;
  width: min(74%, 270px);
  height: 70px;
  border: 0;
  border-radius: 0;
  background: radial-gradient(
      circle at 8% 50%,
      var(--color-primary) 0 5px,
      transparent 6px
    ),
    radial-gradient(
      circle at 38% 20%,
      rgba(255, 255, 255, 0.92) 0 4px,
      transparent 5px
    ),
    radial-gradient(
      circle at 62% 76%,
      rgba(255, 255, 255, 0.84) 0 4px,
      transparent 5px
    ),
    radial-gradient(
      circle at 92% 50%,
      var(--color-primary) 0 5px,
      transparent 6px
    ),
    linear-gradient(
      22deg,
      transparent 0 36%,
      rgba(0, 216, 228, 0.54) 37% 39%,
      transparent 40%
    ),
    linear-gradient(
      -22deg,
      transparent 0 36%,
      rgba(0, 216, 228, 0.42) 37% 39%,
      transparent 40%
    ),
    linear-gradient(
      90deg,
      transparent 0 8%,
      rgba(0, 216, 228, 0.34) 9% 91%,
      transparent 92%
    );
  filter: drop-shadow(0 0 14px rgba(0, 216, 228, 0.28));
  transform: translateX(-50%);
}

.pricing-card > *,
.pricing-panel .pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card h3,
.pricing-panel .pricing-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.pricing-card .price,
.pricing-panel .pricing-card .price {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 3.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 0;
}

.pricing-card .package-label,
.pricing-panel .pricing-card .package-label {
  order: -1;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.pricing-card ul,
.pricing-panel .pricing-card ul {
  width: 100%;
  gap: 10px;
  margin: 16px 0 24px;
  text-align: left;
}

.pricing-card li,
.pricing-panel .pricing-card li,
.pricing-card p,
.pricing-panel .pricing-card p,
.pricing-card.is-active p,
.pricing-card.is-active li,
.pricing-card.is-active .package-label,
.pricing-panel .pricing-card.is-active p,
.pricing-panel .pricing-card.is-active li,
.pricing-panel .pricing-card.is-active .package-label {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card li::before,
.pricing-panel .pricing-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 10px;
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 216, 228, 0.45);
  vertical-align: 1px;
}

.pricing-card .btn,
.pricing-panel .pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-card.is-active,
.pricing-panel .pricing-card.is-active,
.pricing-card:hover,
.pricing-card:focus-visible,
.pricing-panel .pricing-card:hover,
.pricing-panel .pricing-card:focus-visible {
  color: #fff;
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.12),
      rgba(2, 18, 49, 0.24) 44%,
      rgba(2, 18, 49, 0.88) 100%
    ),
    rgba(2, 18, 49, 0.78);
  border-color: rgba(0, 216, 228, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 26px 76px rgba(0, 216, 228, 0.12);
  transform: translateY(-4px);
}

.pricing-card.is-active::before,
.pricing-panel .pricing-card.is-active::before {
  height: clamp(195px, 16vw, 235px);
  background: radial-gradient(
      circle at 50% 48%,
      rgba(0, 216, 228, 0.28),
      transparent 9rem
    ),
    radial-gradient(circle at 50% 0%, rgba(0, 216, 228, 0.3), transparent 10rem),
    radial-gradient(rgba(0, 216, 228, 0.28) 1px, transparent 1px);
  background-size: auto, auto, 8px 8px;
  border-radius: 0;
}

.popular-badge,
.pricing-panel .popular-badge {
  top: 18px;
  left: 18px;
  right: auto;
  z-index: 2;
  color: var(--color-navy);
  background: rgba(0, 216, 228, 0.86);
  box-shadow: 0 10px 24px rgba(0, 216, 228, 0.16);
}

input,
select,
textarea {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-border);
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

input:focus,
select:focus,
textarea:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(0, 216, 228, 0.62);
}

.reveal {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
  /* filter: blur(6px);
  will-change: opacity, transform, filter; */
}


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

@media (max-width: 980px) {
  :root {
    --anchor-offset: 104px;
  }

  .site-header {
    top: 14px;
    width: min(92%, var(--container));
    margin-top: 14px;
    border-radius: 18px;
  }

  .navbar {
    width: 100%;
    min-height: 76px;
    padding-inline: 10px;
    display: flex;
    justify-content: space-between;
  }

  .site-header .brand img {
    width: clamp(172px, 42vw, 220px);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 80;
    display: grid !important;
    background: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .nav-menu {
    position: fixed;
    inset: 104px 4% auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(22, 25, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--ease), transform var(--ease),
      visibility var(--ease);
  }

  .nav-menu a {
    padding: 12px 14px;
  }

  .nav-menu .btn {
    margin-top: 6px;
  }

  .mobile-menu-cta {
    display: inline-flex;
    width: 100%;
  }

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

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .booking-grid,
  .faq-grid,
  .terms-hero-grid,
  .terms-layout,
  .creator-box {
    grid-template-columns: 1fr;
  }

  .terms-sidebar {
    position: static;
  }

  .terms-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    min-height: 560px;
    transform: none;
  }

  .hero-recent-work {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .section-copy {
    position: static;
  }

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

  .about-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-inline: auto;
  }

  .process-showcase {
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }

  .process-section .process-icon-step::before,
  .process-section .process-icon-step::after {
    display: none;
  }

  .reel-stage {
    max-width: 720px;
  }

  .reel-slide.is-prev {
    transform: translateX(-82%) translateY(22px) rotate(-8deg) scale(0.86);
  }

  .reel-slide.is-next {
    transform: translateX(-18%) translateY(22px) rotate(8deg) scale(0.86);
  }

  .reel-slide {
    opacity: 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-panel {
    max-width: 680px;
  }

  .testimonial-stage {
    max-width: 720px;
  }

  .testimonial-card.is-prev {
    transform: translateX(-88%) translateY(28px) rotate(-8deg) scale(0.86);
  }

  .testimonial-card.is-next {
    transform: translateX(-12%) translateY(28px) rotate(8deg) scale(0.86);
  }

  .testimonial-card,
  .testimonial-card {
    opacity: 0;
  }

  .pricing-card.is-active {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(150px, 0.55fr) minmax(
        180px,
        0.7fr
      );
  }

  .footer-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
  }

  .footer-social {
    margin-top: 0;
  }

  .creator-box {
    text-align: left;
  }
}

@media (min-width: 981px) and (max-width: 1100px) and (orientation: portrait) {
  .navbar {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 80;
    display: grid !important;
    background: #fff;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .nav-menu {
    position: fixed;
    inset: 104px 4% auto;
    display: grid;
    gap: 6px;
    padding: 18px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(22, 25, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--ease), transform var(--ease),
      visibility var(--ease);
  }

  .nav-menu a {
    padding: 12px 14px;
  }

  .nav-menu .btn {
    margin-top: 6px;
  }

  .mobile-menu-cta {
    display: inline-flex;
    width: 100%;
  }

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

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 56px;
  }

  .hero .hero-title {
    font-size: 56px;
    line-height: 1;
  }

  .section-copy .hero-title,
  .section-heading .hero-title,
  .booking-copy .hero-title,
  .creator-box .hero-title {
    font-size: 56px;
  }
}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 92px;
    --space-section: 68px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero .container {
    width: min(100% - 24px, var(--container));
  }

  .navbar {
    min-height: 68px;
  }

  .nav-menu {
    inset: 94px 4% auto;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero .hero-title {
    font-size: 42px;
    line-height: 1.02;
  }

  .section-copy .hero-title,
  .section-heading .hero-title,
  .booking-copy .hero-title,
  .creator-box .hero-title {
    font-size: 42px;
    line-height: 1.05;
  }

  .terms-update,
  .terms-sidebar {
    padding: 18px;
  }

  .terms-hero-copy .hero-title {
    font-size: 38px;
    line-height: 1.08;
  }

  .terms-sidebar nav {
    grid-template-columns: 1fr;
  }

  .legal-block {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 30px;
  }

  .legal-number {
    width: max-content;
    padding: 6px 10px;
    background: rgba(0, 216, 228, 0.14);
    border-radius: var(--radius-pill);
  }

  .legal-block p,
  .legal-block li {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  #services .section-copy .hero-title {
    max-width: 360px;
    margin-inline: auto;
    font-size: 36px;
  }

  .about-actions {
    gap: 10px;
  }

  .about-actions .btn {
    min-height: 46px;
    padding-inline: 22px;
  }

  .about-benefits {
    margin-top: 38px;
  }

  .about-benefit-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-benefit {
    max-width: 300px;
    margin-inline: auto;
  }

  .hero-title-line {
    white-space: normal;
  }

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

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-text,
  .stat-row {
    max-width: 100%;
  }

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

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

  .stat-row div {
    min-width: 0;
    min-height: 82px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
  }

  .stat-row strong {
    font-size: 1.6rem;
  }

  .stat-row small {
    overflow-wrap: anywhere;
  }

  .hero-media {
   min-height: 340px;
    transform: none;
  }

  .hero-recent-work  {
    min-height: 460px;
  }

  .hero-recent-work  .reel-stage {
    height: 390px;
    max-width: min(100%, 480px);
    overflow: hidden;
  }

  .hero-recent-work  .reel-slide {
    width: min(64vw, 210px);
  }

  .brand-strip {
    margin-top: -28px;
    padding-block: 12px 32px;
  }

  .strip-marquee {
    min-height: 112px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 16px;
  }

  .strip-marquee h2 {
    text-align: center;
  }

  .strip-window::before,
  .strip-window::after {
    width: 34px;
  }

  .strip-track span {
    min-width: 162px;
  }

  .strip-track i {
    width: 28px;
    height: 28px;
  }

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

  .process-section .section-heading {
    margin-bottom: 28px;
  }

  .process-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    margin: 24px auto 28px;
  }

  .process-section .process-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-section .hero-title {
    max-width: 330px;
    margin-inline: auto;
    font-size: 32px;
    line-height: 1.08;
  }

  .process-icon-card {
    width: min(34vw, 116px);
    border-radius: 24px;
  }

  .process-section .process-icon-card {
    width: 72px;
    border-radius: 50%;
  }

  .pricing-panel {
    padding: 0;
    border-radius: 0;
  }

  .pricing-panel .hero-title {
    font-size: 34px;
  }

  .reel-slider {
    min-height: 500px;
  }

  .reel-stage {
    height: 390px;
    max-width: 100%;
    overflow: hidden;
  }

  .reel-slide {
    width: min(68vw, 230px);
    border-radius: 28px;
  }

  .work-nav {
    width: 42px;
    height: 42px;
  }

  .reel-slide.is-prev {
    transform: translateX(-70%) translateY(28px) rotate(-7deg) scale(0.78);
  }

  .reel-slide.is-next {
    transform: translateX(-30%) translateY(28px) rotate(7deg) scale(0.78);
  }

  .reel-nav {
    width: 48px;
    height: 48px;
  }

  .testimonial-carousel {
    min-height: 330px;
  }

  .testimonial-stage {
    height: 224px;
    max-width: 100%;
    overflow: hidden;
  }

  .testimonial-card {
    width: min(86vw, 380px);
    min-height: 174px;
    border-radius: 18px;
  }

  .testimonial-card.is-prev {
    transform: translateX(-104%) translateY(18px) scale(0.78);
  }

  .testimonial-card.is-next {
    transform: translateX(4%) translateY(18px) scale(0.78);
  }

  .testimonial-topline {
    margin-bottom: 12px;
  }

  .testimonial-card p {
    font-size: 0.92rem;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
  }

  .step-card,
  .pricing-card,
  .testimonial-card,
  .feature-list > div,
  .booking-form {
    border-radius: 20px;
  }

  .step-card {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 28px;
  }

  .step-arrow {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .popular-badge {
    position: static;
    width: max-content;
    margin-bottom: 16px;
  }

  .creator-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .creator-box .btn {
    width: 100%;
  }

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

  .faq-panel p {
    padding: 0 18px 18px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
  }

  .site-footer {
    margin-top: -48px;
    padding-top: calc(54px + 48px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 30px;
  }

  .footer-main p,
  .footer-card strong {
    max-width: none;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-links {
    gap: 9px;
  }

  .footer-card {
    display: block;
    padding: 20px;
    border-radius: 20px;
  }

  .footer-social {
    margin-top: 20px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    max-width: 342px;
  }
}

@media (min-width: 520px) and (max-width: 640px) {
  .hero-copy {
    max-width: 560px;
  }
}

.pricing-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.pricing-card,
.pricing-panel .pricing-card {
  width: 100%;
  min-height: clamp(520px, 34vw, 560px);
}

.pricing-card .popular-badge,
.pricing-panel .popular-badge {
  position: absolute;
}

@media (max-width: 980px) {
  .pricing-panel {
    max-width: 680px;
    margin-inline: auto;
  }

  .pricing-card,
  .pricing-panel .pricing-card {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .pricing-section .container {
    width: min(100% - 24px, var(--container));
  }

  .pricing-card,
  .pricing-panel .pricing-card {
    min-height: 500px;
    padding-top: 205px;
  }

  .pricing-card::before,
  .pricing-panel .pricing-card::before {
    height: 190px;
  }
}

@keyframes pricingTopDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 24px -18px, -18px 14px, 28px 28px;
  }
}

@keyframes pricingTraceFloat {
  from {
    opacity: 0.28;
    transform: translateX(-50%) translateY(0) rotate(-6deg);
  }

  to {
    opacity: 0.52;
    transform: translateX(-50%) translateY(12px) rotate(-3deg);
  }
}

@keyframes pricingStraightFloat {
  from {
    opacity: 0.24;
    transform: translateX(-50%) translateY(0);
  }

  to {
    opacity: 0.46;
    transform: translateX(-50%) translateY(10px);
  }
}

.pricing-card,
.pricing-panel .pricing-card {
  min-height: clamp(470px, 30vw, 510px);
  padding-top: clamp(150px, 12vw, 176px);
}

.pricing-card::before,
.pricing-panel .pricing-card::before,
.pricing-card.is-active::before,
.pricing-panel .pricing-card.is-active::before {
  height: clamp(145px, 12vw, 176px);
  opacity: 0.38;
  animation: pricingTopDrift 9s linear infinite;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 58%,
    transparent 100%
  );
}

.pricing-card::after,
.pricing-panel .pricing-card::after {
  top: 28px;
  opacity: 0.36;
  animation: pricingTraceFloat 4.8s ease-in-out infinite alternate;
}

.pricing-card:nth-child(2)::after,
.pricing-panel .pricing-card:nth-child(2)::after {
  height: 132px;
  animation-name: pricingStraightFloat;
  animation-delay: -1.4s;
}

.pricing-card:nth-child(3)::after,
.pricing-panel .pricing-card:nth-child(3)::after {
  top: 70px;
  opacity: 0.32;
  animation-name: pricingStraightFloat;
  animation-delay: -2.6s;
}

.process-section .process-showcase {
  align-items: stretch;
}

.process-section .process-icon-step {
  grid-template-rows: 74px minmax(44px, auto) 1fr;
  align-content: start;
  row-gap: 14px;
}

.process-section .process-icon-card {
  align-self: start;
  justify-self: center;
}

.process-section .process-icon-step h3 {
  min-height: 44px;
  display: grid;
  place-items: end center;
  margin: 0 auto;
}

.process-section .process-icon-step p {
  max-width: 190px;
  min-height: 58px;
  margin: 0 auto;
  text-align: center;
}

.booking-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 8vw, 110px);
}

.booking-section::before,
.booking-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.booking-section::before {
  inset: 8% -12% auto auto;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 216, 228, 0.18), transparent 68%);
  filter: blur(18px);
  animation: pricingSmoke 13s ease-in-out infinite alternate;
}

/* .booking-section::after {
  left: 0;
  right: 0;
  bottom: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 216, 228, 0.34), transparent);
  opacity: 0.7;
} */

.booking-section .container {
  position: relative;
  z-index: 1;
}

.booking-heading {
  max-width: 860px;
  margin: 0 auto clamp(32px, 4.5vw, 54px);
  text-align: center;
}

.booking-heading .eyebrow {
  width: max-content;
  margin-inline: auto;
}

.booking-heading .hero-title {
  margin-inline: auto;
}

.booking-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

.booking-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(22px, 4vw, 46px);
}

.booking-details {
  display: grid;
  gap: 14px;
}

.booking-detail-card,
.booking-note {
  position: relative;
  overflow: hidden;
  padding: 18px;
  color: var(--color-ice);
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.12),
      rgba(246, 247, 251, 0.06)
    ),
    rgba(2, 18, 49, 0.62);
  border: 1px solid rgba(0, 216, 228, 0.2);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 18px 44px rgba(2, 18, 49, 0.24);
}

.booking-detail-card::before,
.booking-note::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    rgba(255, 255, 255, 0.22)
  );
}

.booking-detail-card span,
.booking-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 440;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-detail-card a,
.booking-detail-card strong {
  display: block;
  color: var(--color-ice);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 440;
  line-height: 1.2;
}

.booking-detail-card small,
.booking-note p {
  display: block;
  margin: 8px 0 0;
  color: rgba(246, 247, 251, 0.66);
  font-size: 0.88rem;
  font-weight: 450;
  line-height: 1.45;
}

.booking-note {
  min-height: 150px;
  align-content: end;
  display: grid;
  background: radial-gradient(
      circle at 88% 18%,
      rgba(0, 216, 228, 0.22),
      transparent 9rem
    ),
    linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.12),
      rgba(246, 247, 251, 0.06)
    ),
    rgba(2, 18, 49, 0.66);
}

.booking-form {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.booking-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 216, 228, 0.95),
    rgba(255, 255, 255, 0.36)
  );
}

.booking-form > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card::before,
  .pricing-panel .pricing-card::before,
  .pricing-card::after,
  .pricing-panel .pricing-card::after,
  .booking-section::before {
    animation: none;
  }
}

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

  .pricing-card,
  .pricing-panel .pricing-card {
    min-height: 480px;
    padding-top: 154px;
  }

  .pricing-card::before,
  .pricing-panel .pricing-card::before,
  .pricing-card.is-active::before,
  .pricing-panel .pricing-card.is-active::before {
    height: 150px;
  }
}

@media (max-width: 640px) {
  .pricing-card,
  .pricing-panel .pricing-card {
    min-height: 450px;
    padding-top: 140px;
  }

  .pricing-card::before,
  .pricing-panel .pricing-card::before,
  .pricing-card.is-active::before,
  .pricing-panel .pricing-card.is-active::before {
    height: 136px;
  }

  .pricing-card:nth-child(2)::after,
  .pricing-panel .pricing-card:nth-child(2)::after {
    height: 112px;
  }

  .process-section .process-icon-step {
    grid-template-rows: 72px auto auto;
  }

  .process-section .process-icon-step h3,
  .process-section .process-icon-step p {
    min-height: 0;
  }

  .booking-heading {
    text-align: left;
  }

  .booking-heading .eyebrow,
  .booking-heading .hero-title,
  .booking-heading p:not(.eyebrow) {
    margin-inline: 0;
  }

  .booking-grid {
    gap: 20px;
  }

  .booking-detail-card,
  .booking-note {
    padding: 16px;
    border-radius: 16px;
  }
}

.btn,
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-light,
.site-header .header-cta,
.site-header .mobile-menu-cta,
.hero-actions .btn,
.about-actions .btn,
.pricing-card .btn,
.pricing-panel .btn,
.creator-box .btn-light,
.footer-cta {
  min-height: 58px;
  padding: 0 30px;
  gap: 14px;
  color: #fff;
  background: linear-gradient(
      180deg,
      rgba(2, 18, 49, 0.88),
      rgba(2, 18, 49, 0.72)
    ),
    rgba(2, 18, 49, 0.72);
  border: 1px solid rgba(0, 216, 228, 0.48);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(0, 216, 228, 0.08), 0 14px 34px rgba(0, 216, 228, 0.1);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn:hover,
.btn-primary:hover,
.btn-ghost:hover,
.btn-outline:hover,
.btn-light:hover,
.site-header .header-cta:hover,
.site-header .mobile-menu-cta:hover,
.hero-actions .btn:hover,
.about-actions .btn:hover,
.pricing-card .btn:hover,
.pricing-panel .btn:hover,
.creator-box .btn-light:hover,
.footer-cta:hover {
  color: #fff;
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.18),
      rgba(2, 18, 49, 0.82)
    ),
    rgba(2, 18, 49, 0.78);
  border-color: rgba(0, 216, 228, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(0, 216, 228, 0.14), 0 18px 42px rgba(0, 216, 228, 0.16);
}

.btn-small {
  min-height: 52px;
  padding-inline: 26px;
}

.btn-arrow,
.hero-actions .btn-arrow,
.btn-ghost .btn-arrow,
.btn-outline .btn-arrow,
.pricing-card .btn-arrow,
.pricing-panel .btn-arrow,
.site-header .btn-arrow {
  width: auto;
  height: auto;
  margin: 0;
  color: currentColor;
  background: transparent;
  border-radius: 0;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 0.8;
}

.pricing-card .btn,
.pricing-panel .pricing-card .btn,
.booking-form .btn,
.footer-cta {
  width: 100%;
}

.site-header .header-cta,
.site-header .mobile-menu-cta {
  width: auto;
  min-width: 154px;
  min-height: 48px;
  padding: 0 20px 0 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 22px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px) saturate(125%);
  -webkit-backdrop-filter: blur(8px) saturate(125%);
}

.site-header .header-cta:hover,
.site-header .mobile-menu-cta:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(0, 216, 228, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 26px rgba(0, 216, 228, 0.1);
}

.site-header .header-cta .btn-arrow,
.site-header .mobile-menu-cta .btn-arrow {
  margin-left: 2px;
  color: var(--color-primary);
}

.site-header {
  background: rgba(2, 18, 49, 0.46);
  border-color: rgba(0, 216, 228, 0.2);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 16px 42px rgba(2, 18, 49, 0.12);
  backdrop-filter: blur(14px) saturate(132%);
  -webkit-backdrop-filter: blur(14px) saturate(132%);
}

.site-header.is-scrolled {
  background: rgba(2, 18, 49, 0.58);
  border-color: rgba(0, 216, 228, 0.24);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 18px 44px rgba(2, 18, 49, 0.16);
}

html,
body,
main {
  background: var(--color-navy);
}

body {
  color: var(--color-ice);
}

main > section {
  background: radial-gradient(
      circle at 14% 18%,
      rgba(0, 216, 228, 0.08),
      transparent 32rem
    ),
    var(--color-navy);
}

.hero,
.site-footer {
  background: radial-gradient(
      circle at 78% 16%,
      rgba(0, 216, 228, 0.24),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 82%,
      rgba(0, 216, 228, 0.12),
      transparent 26rem
    ),
    linear-gradient(
      135deg,
      var(--color-navy) 0%,
      var(--color-navy) 62%,
      rgba(0, 216, 228, 0.18) 100%
    );
}

.hero::before {
  background: linear-gradient(
    180deg,
    rgba(2, 18, 49, 0.24) 0%,
    transparent 34%,
    rgba(2, 18, 49, 0.18) 100%
  );
}

.reel-slide {
  background: var(--color-navy);
}

.site-header,
.strip-marquee,
.hero .eyebrow,
.hero-media::before,
.stat-row div,
.about-benefit-icon,
.step-card,
.pricing-card,
.pricing-panel .pricing-card,
.testimonial-card,
.testimonial-card.is-active,
.booking-form,
.feature-list > div,
.faq-item,
.terms-update,
.terms-sidebar,
.footer-card,
.creator-box,
.process-icon-card,
.process-section .process-icon-card,
.contact-list li {
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.12),
      rgba(246, 247, 251, 0.06)
    ),
    rgba(2, 18, 49, 0.58);
  border-color: rgba(0, 216, 228, 0.18);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 18px 44px rgba(2, 18, 49, 0.3);
}

.hero-media::before {
  content: none;
}

.pricing-card,
.pricing-panel .pricing-card {
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.1),
      rgba(2, 18, 49, 0.28) 44%,
      rgba(2, 18, 49, 0.9) 100%
    ),
    rgba(2, 18, 49, 0.78);
}

.pricing-card.is-active,
.pricing-panel .pricing-card.is-active,
.pricing-card:hover,
.pricing-card:focus-visible,
.pricing-panel .pricing-card:hover,
.pricing-panel .pricing-card:focus-visible {
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.16),
      rgba(2, 18, 49, 0.32) 44%,
      rgba(2, 18, 49, 0.92) 100%
    ),
    rgba(2, 18, 49, 0.82);
}

.hero-title,
main > section .hero-title,
main > section .section-heading .hero-title,
main > section .section-copy .hero-title,
.step-card h3,
.pricing-card h3,
.pricing-panel h3,
.pricing-panel .price,
.testimonial-card strong,
.testimonial-card.is-active strong,
.booking-form label span,
.feature-list h3,
.faq-item button,
.terms-update strong,
.footer-card strong {
  color: var(--color-ice);
}

.hero-text,
main > section .hero-text,
main > section .section-heading p:not(.eyebrow),
main > section .section-copy p:not(.eyebrow),
p,
.step-card p,
.pricing-card p,
.pricing-card li,
.pricing-card .package-label,
.testimonial-card p,
.testimonial-card span,
.feature-list p,
.faq-panel p,
.terms-update p,
.terms-sidebar a,
.contact-list li {
  color: rgba(246, 247, 251, 0.72);
}

.eyebrow,
.strip-marquee h2,
.text-gradient-brand,
main > section .text-gradient-brand {
  background: linear-gradient(90deg, var(--color-primary), var(--color-ice));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-menu a.nav-active {
  color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.strip-track i {
  color: var(--color-primary);
  background: rgba(0, 216, 228, 0.14);
  box-shadow: 0 8px 20px rgba(0, 216, 228, 0.16);
}

.btn,
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-light,
.hero-actions .btn,
.about-actions .btn,
.pricing-card .btn,
.pricing-panel .btn,
.creator-box .btn-light,
.footer-cta {
  color: var(--color-ice);
  background: linear-gradient(
      180deg,
      rgba(2, 18, 49, 0.92),
      rgba(2, 18, 49, 0.74)
    ),
    rgba(2, 18, 49, 0.74);
  border-color: rgba(0, 216, 228, 0.5);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 14px 34px rgba(0, 216, 228, 0.12);
}

.btn:hover,
.btn-primary:hover,
.btn-ghost:hover,
.btn-outline:hover,
.btn-light:hover,
.hero-actions .btn:hover,
.about-actions .btn:hover,
.pricing-card .btn:hover,
.pricing-panel .btn:hover,
.creator-box .btn-light:hover,
.footer-cta:hover {
  color: var(--color-ice);
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.18),
      rgba(2, 18, 49, 0.86)
    ),
    rgba(2, 18, 49, 0.82);
  border-color: rgba(0, 216, 228, 0.82);
}

.site-header .header-cta,
.site-header .mobile-menu-cta {
  color: var(--color-ice);
  background: rgba(246, 247, 251, 0.1);
  border-color: rgba(246, 247, 251, 0.24);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.16),
    0 8px 22px rgba(2, 18, 49, 0.18);
}

input,
select,
textarea {
  color: var(--color-ice);
  background: rgba(2, 18, 49, 0.58);
  border-color: rgba(0, 216, 228, 0.2);
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(2, 18, 49, 0.72);
  border-color: rgba(0, 216, 228, 0.62);
}

@media (max-width: 640px) {
  .about-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .about-benefit {
    max-width: none;
    margin: 0;
    align-content: start;
  }

  .about-benefit-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    border-radius: 18px;
  }

  .about-benefit-icon svg {
    width: 30px;
    height: 30px;
  }

  .about-benefit h3 {
    max-width: 150px;
    margin-bottom: 6px;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .about-benefit p {
    max-width: 150px;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .process-section .process-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
    max-width: 420px;
  }

  .process-section .process-icon-step {
    grid-template-rows: 62px minmax(40px, auto) auto;
    row-gap: 10px;
  }

  .process-section .process-icon-card {
    width: 58px;
  }

  .process-section .process-icon-step h3 {
    max-width: 130px;
    min-height: 40px;
    font-size: 0.9rem;
    line-height: 1.14;
  }

  .process-section .process-icon-step p {
    max-width: 138px;
    min-height: 0;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .feature-list {
    gap: 12px;
  }

  .feature-list > div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 4px 14px;
    padding: 18px;
  }

  .feature-list .icon-chip {
    grid-row: 1 / span 2;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .feature-list h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .feature-list p {
    grid-column: 2;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .booking-form {
    order: 1;
    width: 100%;
  }

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

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

  .booking-detail-card,
  .booking-note {
    min-height: 64px;
    padding: 13px;
  }

  .booking-detail-card span,
  .booking-note strong {
    margin-bottom: 7px;
    font-size: 0.64rem;
  }

  .booking-detail-card a,
  .booking-detail-card strong {
    font-size: 0.82rem;
    overflow-wrap: anywhere;
  }

  .booking-detail-card small,
  .booking-note p {
    font-size: 0.68rem;
    line-height: 1.38;
  }

  .booking-note {
    align-content: start;
  }
}

.eyebrow,
.hero .eyebrow,
.process-section .eyebrow,
.booking-section .eyebrow,
.creator-box .eyebrow {
  width: auto;
  max-width: 100%;
  display: block;
  padding: 0;
  color: var(--color-ice);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.reel-dots,
.work-dots,
.testimonial-dots,
.work-controls {
  display: none;
}

.reel-controls,
.testimonial-controls {
  gap: 14px;
}

#work .work-controls,
#work .work-dots {
  display: flex;
}

#work .work-controls .reel-nav {
  display: inline-flex;
}

.reel-nav,
.work-nav,
.testimonial-nav {
  color: var(--color-primary);
  background: rgba(0, 216, 228, 0.1);
  border-color: rgba(0, 216, 228, 0.58);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 12px 30px rgba(0, 216, 228, 0.12);
}

.reel-nav:hover,
.reel-nav:focus-visible,
.work-nav:hover,
.work-nav:focus-visible,
.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: var(--color-primary);
  outline: none;
}

.feature-list .icon-chip {
  color: var(--color-primary);
  background: rgba(0, 216, 228, 0.1);
  border: 1px solid rgba(0, 216, 228, 0.5);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 0 18px rgba(0, 216, 228, 0.28), 0 10px 24px rgba(0, 216, 228, 0.12);
  text-shadow: 0 0 12px rgba(0, 216, 228, 0.75);
}

.faq-item button span {
  width: 38px;
  height: 38px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-primary);
  background: rgba(0, 216, 228, 0.1);
  border: 1px solid rgba(0, 216, 228, 0.44);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 0 18px rgba(0, 216, 228, 0.2);
  font-size: 0.76rem;
  line-height: 1;
}

.faq-item.active button span,
.faq-item:hover button span {
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 216, 228, 0.12),
    0 0 22px rgba(0, 216, 228, 0.35);
}

.reel-nav,
.work-nav,
.testimonial-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 800;
  text-align: center;
}

.reel-nav {
  width: 56px;
  height: 56px;
  font-size: 1.75rem;
  line-height: 1;
}

.testimonial-nav,
.work-nav {
  width: 46px;
  height: 46px;
  font-size: 0;
}

.work-nav::before {
  display: block;
  margin-top: -2px;
  font-size: 1.9rem;
  line-height: 1;
}

#work .work-nav,
#work .work-controls,
#work .work-controls .reel-nav,
#work .work-dots {
  display: none !important;
}

.testimonial-nav {
  font-size: 1.65rem;
  line-height: 1;
}

html {
  background-color: var(--color-navy);
}

body {
  background: transparent;
}

main {
  background: transparent;
}

main > section {
  background: var(--color-navy);
}

main > section:nth-of-type(even) {
  background: radial-gradient(
      ellipse 30% 30% at 14% 52%,
      rgba(0, 216, 228, 0.075),
      rgba(0, 216, 228, 0.022) 36%,
      transparent 70%
    ),
    var(--color-navy);
}

.hero {
   margin-top: -50px;
  padding-top: calc(clamp(112px, 11vw, 168px) + 122px);
  background: radial-gradient(
      ellipse 30% 30% at 18% 52%,
      rgba(0, 216, 228, 0.08),
      rgba(0, 216, 228, 0.025) 34%,
      transparent 70%
    ),
    var(--color-navy);
}

.hero.section-pad {
  padding-top: calc(clamp(56px, 6vw, 58px) + 10px);
}

.hero::before {
  z-index: 0;
}

.hero::after {
  z-index: 0;
  content: none;
}

.site-header,
.container,
.hero .container,
.pricing-section .container,
.site-footer .container {
  width: min(90%, 1480px);
}

.site-header {
  background: rgba(2, 18, 49, 0.46);
  border-color: rgba(0, 216, 228, 0.2);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 16px 42px rgba(2, 18, 49, 0.12);
  backdrop-filter: blur(14px) saturate(132%);
  -webkit-backdrop-filter: blur(14px) saturate(132%);
}

.site-header.is-scrolled {
  background: rgba(2, 18, 49, 0.58);
  border-color: rgba(0, 216, 228, 0.24);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 18px 44px rgba(2, 18, 49, 0.16);
}

.stat-value
{
  color: var(--color-ice)!important;
}

#services.highlight-section {
  background: radial-gradient(
      ellipse 30% 30% at 14% 28%,
      rgba(0, 216, 228, 0.075),
      rgba(0, 216, 228, 0.022) 36%,
      transparent 70%
    ),
    var(--color-navy);
    margin-bottom:75px!important;
}

main > section:last-of-type {
  padding-bottom: calc(var(--space-section) + 0px);
}

.site-footer {
  margin-top: -64px;
  padding-top: calc(clamp(56px, 7vw, 86px) + 64px);
  background: var(--color-navy);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(2, 18, 49, 0) 0%,
      rgba(2, 18, 49, 0) 23%,
      rgba(0, 216, 228, 0.045) 38%,
      rgba(0, 216, 228, 0.075) 50%,
      rgba(0, 216, 228, 0.045) 62%,
      rgba(2, 18, 49, 0) 77%,
      rgba(2, 18, 49, 0) 100%
    ),
    radial-gradient(
      ellipse 62% 92% at 84% 50%,
      rgba(0, 216, 228, 0.18) 0%,
      rgba(0, 216, 228, 0.1) 24%,
      rgba(0, 216, 228, 0.035) 48%,
      rgba(0, 216, 228, 0) 70%
    ),
    radial-gradient(
      ellipse 44% 82% at 12% 50%,
      rgba(0, 216, 228, 0.06) 0%,
      rgba(0, 216, 228, 0.025) 44%,
      rgba(0, 216, 228, 0) 68%
    );
  opacity: 0.9;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 30%,
    #000 70%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 30%,
    #000 70%,
    transparent 100%
  );
  pointer-events: none;
}

h1,
h2,
.hero-title,
.hero .hero-title,
.section-copy .hero-title,
.section-heading .hero-title,
.booking-copy .hero-title,
.creator-box .hero-title,
.about-benefits h2,
.legal-block h2,
.strip-marquee h2 {
  font-weight: 560;
}

.hero {
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
}

.hero-grid {
  width: 100%;
}

.hero .brand-strip,
.brand-strip.container {
  position: relative;
  z-index: 1;
  width: min(90%, 1480px);
  margin: 0 auto;
  padding: 0;
  color: #fff;
}

.brand-strip .container {
  width: 100%;
}

.hero .strip-marquee,
.strip-marquee {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(10px, 1.2vw, 14px);
  padding: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.strip-window {
  position: relative;
  overflow: hidden;
  padding-block: 3px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.strip-window::before,
.strip-window::after {
  width: clamp(42px, 7vw, 92px);
  background: linear-gradient(90deg, rgba(2, 18, 49, 0.72), rgba(2, 18, 49, 0));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.strip-window::after {
  background: linear-gradient(
    270deg,
    rgba(2, 18, 49, 0.72),
    rgba(2, 18, 49, 0)
  );
}

.strip-track {
  gap: clamp(12px, 1.6vw, 22px);
  animation-duration: 30s;
}

.strip-track-reverse {
  animation-direction: reverse;
}

.strip-track span {
  min-width: clamp(210px, 17vw, 270px);
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
  white-space: nowrap;
}

.strip-track i {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-grid;
  flex: 0 0 32px;
  place-items: center;
  color: var(--color-primary);
  background: rgba(0, 216, 228, 0.14);
  border: 1px solid rgba(0, 216, 228, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 216, 228, 0.16);
}

.strip-track i::before {
  content: "";
  width: 11px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(-45deg);
}

.strip-track strong,
.strip-track small {
  display: block;
}

.strip-track strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.12;
}

.strip-track small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.12;
}

@media (max-width: 980px) {
  .site-header,
  .container,
  .hero .container,
  .pricing-section .container,
  .site-footer .container,
  .hero .brand-strip,
  .brand-strip.container {
    width: min(92%, 1480px);
  }

  .hero.section-pad {
    padding-top: calc(clamp(88px, 12vw, 128px) + 104px);
  }
}

.site-header .navbar {
  width: 100%;
}

@media (max-width: 980px),
  (min-width: 981px) and (max-width: 1100px) and (orientation: portrait) {
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: -104px;
    padding-top: calc(clamp(112px, 11vw, 168px) + 104px);
    gap: 16px;
  }

  .hero.section-pad {
    padding-top: calc(clamp(96px, 16vw, 128px) + 96px);
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-text,
  .hero-actions,
  .stat-row {
    margin-inline: auto;
  }

  .hero-actions {
    justify-items: center;
  }

  .strip-track span {
    min-width: 210px;
    min-height: 50px;
    padding: 9px 15px 9px 10px;
  }

  .strip-track i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .strip-track,
  .strip-track-reverse {
    animation: none;
    transform: translate3d(0, 0, 0);
  }
}

.pricing-panel {
  max-width: 1180px;
  margin-inline: auto;
}

.pricing-panel .section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.pricing-panel .pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(320px, 1fr));
  align-items: stretch;
  gap: clamp(20px, 1.8vw, 28px);
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(12px, 1.2vw, 16px);
  /* background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.07),
      rgba(246, 247, 251, 0.035)
    ),
    rgba(2, 18, 49, 0.44); */
  border: 1px solid rgba(0, 216, 228, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.1),
    0 24px 70px rgba(0, 0, 0, 0.16);
}

.pricing-panel .pricing-card {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(30px, 3vw, 42px);
  text-align: left;
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.08),
      rgba(246, 247, 251, 0.035)
    ),
    rgba(2, 18, 49, 0.64);
  border: 1px solid rgba(246, 247, 251, 0.1);
  border-radius: 8px;
  box-shadow: none;
  transform: none;
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
}

.pricing-panel .pricing-card::before,
.pricing-panel .pricing-card::after,
.pricing-panel .pricing-card.is-active::before {
  content: none;
}

.pricing-panel .pricing-card:nth-child(1),
.pricing-panel .pricing-card:nth-child(2) {
  grid-column: 1;
}

.pricing-panel .pricing-card:nth-child(1) {
  grid-row: 1;
}

.pricing-panel .pricing-card:nth-child(2) {
  grid-row: 2;
}

.pricing-panel .pricing-card-featured {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-content: space-between;
}

.pricing-panel .pricing-card:hover,
.pricing-panel .pricing-card:focus-visible,
.pricing-panel .pricing-card.is-active {
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.12),
      rgba(246, 247, 251, 0.04) 42%,
      rgba(2, 18, 49, 0.72) 100%
    ),
    rgba(2, 18, 49, 0.68);
  border-color: rgba(0, 216, 228, 0.34);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 20px 54px rgba(0, 216, 228, 0.08);
  transform: none;
}

.pricing-panel .popular-badge {
  position: static;
  order: -2;
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 7px 11px;
  color: var(--color-navy);
  background: rgba(0, 216, 228, 0.9);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 216, 228, 0.14);
}

.pricing-panel .popular-badge + .package-label {
  margin-top: 0;
}

.pricing-panel .pricing-card .package-label,
.pricing-panel .pricing-card.is-active .package-label {
  order: 0;
  align-self: flex-start;
  width: max-content;
  max-width: 100%;
  margin: 0 0 16px;
  margin-inline: 0;
  padding: 0;
  color: rgba(246, 247, 251, 0.66);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: clamp(0.78rem, 0.74vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-panel .pricing-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  font-weight: 600;
  line-height: 1.14;
}

.pricing-panel .pricing-card .plan-summary {
  max-width: 48ch;
  margin: 0 0 clamp(18px, 1.7vw, 28px);
  color: rgba(246, 247, 251, 0.7);
  font-size: clamp(1rem, 0.95vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
}

.pricing-panel .pricing-card-featured .plan-summary {
  max-width: 52ch;
  margin-bottom: clamp(24px, 2.6vw, 42px);
  font-size: clamp(1.05rem, 1.08vw, 1.22rem);
}

.pricing-panel .pricing-card .price {
  margin: clamp(20px, 1.7vw, 28px) 0;
  padding-block: clamp(22px, 2vw, 34px);
  color: #fff;
  border-top: 1px solid rgba(246, 247, 251, 0.12);
  border-bottom: 1px solid rgba(246, 247, 251, 0.12);
  font-family: var(--font-body);
  font-size: clamp(3.1rem, 4.6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.pricing-panel .pricing-card-featured .price {
  font-size: clamp(4rem, 4.3vw, 7rem);
}

.pricing-panel .pricing-card ul {
  display: grid;
  gap: clamp(12px, 1vw, 16px);
  margin: 0 0 clamp(28px, 2.5vw, 42px);
  padding: 0;
  list-style: none;
}

.pricing-panel .pricing-card-featured ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: clamp(16px, 1.4vw, 22px);
  margin-bottom: clamp(34px, 3.4vw, 62px);
}

.pricing-panel .pricing-card li,
.pricing-panel .pricing-card.is-active li,
.pricing-panel .pricing-card p,
.pricing-panel .pricing-card.is-active p,
.pricing-panel .pricing-card .package-label,
.pricing-panel .pricing-card.is-active .package-label {
  color: rgba(246, 247, 251, 0.68);
}

.pricing-panel .pricing-card li {
  position: relative;
  padding-left: 26px;
  font-size: clamp(1rem, 0.95vw, 1.12rem);
  font-weight: 600;
  line-height: 1.45;
}

.pricing-panel .pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 10px;
  height: 10px;
  margin: 0;
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 216, 228, 0.4);
}

.pricing-panel .pricing-card .btn {
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  border-radius: 8px;
  font-size: clamp(1rem, 0.95vw, 1.1rem);
}

.pricing-panel .pricing-card-featured .btn {
  margin-top: 0;
}

@media (max-width: 980px) {
  .pricing-panel {
    max-width: 720px;
  }

  .pricing-panel .pricing-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .pricing-panel .pricing-card,
  .pricing-panel .pricing-card:nth-child(1),
  .pricing-panel .pricing-card:nth-child(2),
  .pricing-panel .pricing-card-featured {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
  }

  .pricing-panel .pricing-card-featured .price {
    font-size: clamp(2.35rem, 9vw, 4.4rem);
  }

  .pricing-panel .pricing-card-featured ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-panel .pricing-grid {
    padding: 8px;
  }

  .pricing-panel .pricing-card {
    padding: 22px;
  }
}

.testimonials-section .review-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.testimonials-section .review-heading p:not(.eyebrow) {
  max-width: 520px;
  margin-inline: auto;
}

.review-wall {
  --review-gap: clamp(12px, 1.1vw, 16px);
  --review-card-height: clamp(132px, 11vw, 158px);
  position: relative;
  max-width: 1180px;
  height: calc((var(--review-card-height) * 5) + (var(--review-gap) * 4));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--review-gap);
  margin: clamp(34px, 4.5vw, 64px) auto 0;
  overflow: hidden;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.review-wall::before,
.review-wall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 96px;
  pointer-events: none;
}

.review-wall::before {
  top: 0;
  background: linear-gradient(180deg, var(--color-navy), rgba(2, 18, 49, 0));
}

.review-wall::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--color-navy), rgba(2, 18, 49, 0));
}

.review-lane {
  min-width: 0;
  overflow: hidden;
}

.review-track {
  display: grid;
  gap: var(--review-gap);
  will-change: transform;
  animation: reviewSlideUp 34s linear infinite;
}

.review-lane-down .review-track {
  animation-name: reviewSlideDown;
  transform: translate3d(0, -50%, 0);
}

.review-lane:hover .review-track,
.review-lane:focus-within .review-track {
  animation-play-state: paused;
}

.review-card {
  height: var(--review-card-height);
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(7px, 0.7vw, 10px);
  padding: clamp(14px, 1.2vw, 18px);
  color: #fff;
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.08),
      rgba(246, 247, 251, 0.035)
    ),
    rgba(2, 18, 49, 0.66);
  border: 1px solid rgba(246, 247, 251, 0.1);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.12);
  transition: border-color var(--ease), background var(--ease),
    transform var(--ease), box-shadow var(--ease);
}

.review-card:hover,
.review-card:focus-visible {
  border-color: rgba(0, 216, 228, 0.46);
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.12),
      rgba(246, 247, 251, 0.045)
    ),
    rgba(2, 18, 49, 0.74);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 22px 58px rgba(0, 216, 228, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.review-card-featured {
  background: radial-gradient(
      circle at 92% 0%,
      rgba(255, 124, 104, 0.36),
      transparent 9rem
    ),
    linear-gradient(180deg, rgba(246, 247, 251, 0.1), rgba(246, 247, 251, 0.04)),
    rgba(2, 18, 49, 0.7);
}

.review-author {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 0 0 5px rgba(0, 216, 228, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.review-author strong {
  display: block;
  color: #fff;
  font-size: clamp(0.84rem, 0.82vw, 0.98rem);
  font-weight: 700;
  line-height: 1.15;
}

.review-author small {
  display: block;
  margin-top: 2px;
  color: rgba(246, 247, 251, 0.56);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.2;
}

.review-rating {
  display: inline-flex;
  gap: 4px;
}

.review-rating span {
  width: 6px;
  height: 6px;
  display: block;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 216, 228, 0.4);
}

.review-card p {
  margin: 0;
  color: rgba(246, 247, 251, 0.72);

  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  line-clamp: 3;          /* Standard property */
  -webkit-line-clamp: 3;  /* Current browser support */

  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  font-weight: 550;
  line-height: 1.42;
}

@keyframes reviewSlideUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes reviewSlideDown {
  from {
    transform: translate3d(0, -50%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .review-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --review-card-height: 150px;
  }

  .review-lane:nth-child(3) {
    display: none;
  }
}

@media (max-width: 640px) {
  .review-wall {
    grid-template-columns: 1fr;
    --review-card-height: 152px;
  }

  .review-lane:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-track,
  .review-lane-down .review-track {
    animation: none;
    transform: none;
  }
}

#services .about-benefits {
  max-width: none;
  margin-top: clamp(30px, 4vw, 46px);
  text-align: left;
}

#services .about-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

#services .about-benefit {
  --about-card-rise: 0%;
  --about-card-delay: 0ms;
  position: relative;
  width: 100%;
  min-height: 248px;
  padding: clamp(20px, 2vw, 26px);
  overflow: hidden;
  display: grid;
  justify-items: start;
  align-content: start;
  justify-self: stretch;
  align-self: stretch;
  text-align: left;
  background: radial-gradient(
      circle at 86% 8%,
      rgba(0, 216, 228, 0.2),
      transparent 8.5rem
    ),
    linear-gradient(
      135deg,
      rgba(9, 39, 83, 0.9),
      rgba(2, 18, 49, 0.78) 48%,
      rgba(0, 110, 132, 0.58)
    );
  border: 1px solid rgba(0, 216, 228, 0.2);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.08),
    0 18px 44px rgba(2, 18, 49, 0.24);
  transform-origin: center center;
  transition: border-color 220ms ease, box-shadow 220ms ease,
    background 220ms ease;
}

#services .about-benefits.reveal {
  transform: none;
  filter: none;
}

#services .about-benefits.reveal .about-benefit {
  opacity: 0;
  transform: translate3d(0, var(--about-card-rise), 0) rotateX(16deg)
    scale(0.96);
}

#services .about-benefits.reveal.is-visible .about-benefit {
  animation: aboutCardRiseIn 1280ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--about-card-delay);
}

#services .about-benefits.reveal.is-visible.is-about-settled .about-benefit {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  animation: none;
}

#services .about-benefit:nth-child(1) {
  --about-card-rise: 100%;
  --about-card-delay: 0ms;
}

#services .about-benefit:nth-child(2) {
  --about-card-rise: 75%;
  --about-card-delay: 210ms;
}

#services .about-benefit:nth-child(3) {
  --about-card-rise: 50%;
  --about-card-delay: 420ms;
}

#services .about-benefit:nth-child(4) {
  --about-card-rise: 0%;
  --about-card-delay: 630ms;
}

#services .about-benefit::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 216, 228, 0.7),
    transparent
  );
  opacity: 0.55;
  pointer-events: none;
}

#services .about-benefits.is-about-settled .about-benefit:hover,
#services .about-benefits.is-about-settled .about-benefit:focus-within {
  border-color: rgba(0, 216, 228, 0.58);
  background: radial-gradient(
      circle at 86% 8%,
      rgba(0, 216, 228, 0.32),
      transparent 9rem
    ),
    linear-gradient(
      135deg,
      rgba(12, 51, 101, 0.94),
      rgba(2, 18, 49, 0.82) 48%,
      rgba(0, 132, 154, 0.68)
    );
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 22px 54px rgba(0, 216, 228, 0.18), 0 18px 44px rgba(2, 18, 49, 0.3);
}

#services .about-benefit-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 18px;
  color: var(--color-primary);
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.12),
      rgba(246, 247, 251, 0.04)
    ),
    rgba(0, 216, 228, 0.08);
  border-color: rgba(0, 216, 228, 0.26);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 12px 28px rgba(0, 216, 228, 0.12);
}

#services .about-benefit-icon::before {
  inset: auto 12px 10px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-lime));
}

#services .about-benefit h3 {
  max-width: none;
  margin: 0 0 10px;
  color: var(--color-ice);
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  font-weight: 700;
}

#services .about-benefit p {
  max-width: none;
  margin: 0;
  color: rgba(246, 247, 251, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

@keyframes aboutCardRiseIn {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--about-card-rise), 0) rotateX(16deg)
      scale(0.96);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, -8px, 0) rotateX(-3deg) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
  }
}

@media (max-width: 980px) {
  #services .about-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 640px) {
  #services .about-benefits {
    margin-top: 24px;
  }

  #services .about-benefit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #services .about-benefit {
    min-height: 0;
    padding: 20px;
  }

  #services .about-benefit-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
  }

  #services .about-benefit h3,
  #services .about-benefit p {
    max-width: none;
  }
}

#packages.pricing-section {
  padding-block: clamp(28px, 3.6vw, 46px);
  background: var(--color-navy);
}

#packages::before,
#packages::after,
.pricing-section::before,
.pricing-section::after {
  content: none;
}

#packages .container {
  position: relative;
  z-index: 1;
}

#packages .pricing-panel {
  max-width: 1120px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#packages .pricing-panel .section-heading {
  max-width: 640px;
  margin-bottom: clamp(14px, 2vw, 24px);
}

#packages .pricing-panel .hero-title {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

#packages .pricing-panel .pricing-grid {
  grid-template-rows: repeat(2, minmax(172px, auto));
  gap: clamp(12px, 1.2vw, 18px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#package .eyebrow {
    font-weight: 800 !important;
}

#packages .pricing-panel .pricing-card {
  min-height: 0;
  padding: clamp(18px, 1.8vw, 24px);
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.1),
      rgba(246, 247, 251, 0.035)
    ),
    rgba(2, 18, 49, 0.66);
  border-color: rgba(246, 247, 251, 0.12);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px) saturate(125%);
  -webkit-backdrop-filter: blur(10px) saturate(125%);
}

#packages .pricing-panel .pricing-card:hover,
#packages .pricing-panel .pricing-card:focus-visible,
#packages .pricing-panel .pricing-card.is-active {
  background: linear-gradient(
      180deg,
      rgba(0, 216, 228, 0.12),
      rgba(246, 247, 251, 0.04) 46%,
      rgba(2, 18, 49, 0.72)
    ),
    rgba(2, 18, 49, 0.72);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.14),
    0 16px 42px rgba(0, 216, 228, 0.1);
}

#packages .pricing-panel .popular-badge {
  margin-bottom: 10px;
  padding: 6px 10px;
  font-size: 0.62rem;
}

#packages .pricing-panel .pricing-card .package-label,
#packages .pricing-panel .pricing-card.is-active .package-label {
  margin-bottom: 8px;
  font-size: clamp(0.68rem, 0.66vw, 0.78rem);
}

#packages .pricing-panel .pricing-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.28rem, 1.5vw, 1.8rem);
}

#packages .pricing-panel .pricing-card .plan-summary {
  max-width: 54ch;
  margin-bottom: clamp(10px, 1vw, 14px);
  font-size: clamp(1.1rem, 0.78vw, 0.95rem);
  line-height: 1.52;
}

#packages .pricing-panel .pricing-card .price {
  margin: clamp(10px, 1vw, 14px) 0;
  padding-block: clamp(10px, 1vw, 14px);
  font-size: clamp(2rem, 3.1vw, 3.6rem);
}

#packages .pricing-panel .pricing-card-featured .price {
  font-size: clamp(2.8rem, 4.6vw, 5.2rem);
}

#packages .pricing-panel .pricing-card ul {
  gap: 8px;
  margin-bottom: clamp(14px, 1.4vw, 20px);
}

#packages .pricing-panel .pricing-card-featured ul {
  gap: 9px 16px;
  margin-bottom: clamp(12px, 1.4vw, 18px);
}

#packages .pricing-panel .pricing-card li {
  padding-left: 20px;
  font-size: clamp(1.1rem, 0.78vw, 0.95rem);
  line-height: 1.52;
}

#packages .pricing-panel .pricing-card li::before {
  top: 0.42em;
  width: 7px;
  height: 7px;
}

#packages .pricing-panel .plan-support {
  margin: 0 0 clamp(14px, 1.2vw, 18px);
  padding: 12px 14px;
  color: rgba(246, 247, 251, 0.76);
  background: rgba(0, 216, 228, 0.08);
  border: 1px solid rgba(0, 216, 228, 0.18);
  border-radius: 8px;
  font-size: clamp(1.1rem, 0.78vw, 0.95rem);
  font-weight: 600;
  line-height: 1.52;
}

#packages .pricing-panel .pricing-card .btn {
  min-height: 46px;
  font-size: clamp(0.86rem, 0.78vw, 0.96rem);
}

@media (max-width: 980px) {
  #packages .pricing-panel {
    max-width: 720px;
  }

  #packages .pricing-panel .pricing-grid {
    grid-template-rows: none;
  }

  #packages .pricing-panel .pricing-card-featured ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #packages.pricing-section {
    padding-block: 40px;
  }

  #packages .pricing-panel .section-heading {
    margin-bottom: 20px;
  }

  #packages .pricing-panel .pricing-grid {
    gap: 12px;
  }

  #packages .pricing-panel .pricing-card {
    padding: 18px;
  }
}

@media (min-width: 981px) {
  #packages .pricing-panel .pricing-grid {
    grid-template-rows: repeat(2, minmax(172px, 1fr));
  }

  #packages .pricing-panel .pricing-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 18px;
    align-content: start;
    padding: 16px;
  }

  #packages .pricing-panel .popular-badge,
  #packages .pricing-panel .pricing-card .package-label,
  #packages .pricing-panel .pricing-card h3,
  #packages .pricing-panel .pricing-card .plan-summary {
    grid-column: 1;
  }

  #packages .pricing-panel .popular-badge {
    margin-bottom: 0;
  }

  #packages .pricing-panel .pricing-card .package-label,
  #packages .pricing-panel .pricing-card.is-active .package-label {
    margin-bottom: 0;
  }

  #packages .pricing-panel .pricing-card h3 {
    margin-bottom: 0;
  }

  #packages .pricing-panel .pricing-card .plan-summary {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 1;          /* Standard property */
    -webkit-line-clamp: 1;  /* Chrome, Safari, Edge */
    -webkit-box-orient: vertical;
    margin-bottom: 2px;
}

  .plan-summary {
    max-width: 500px!important;
    width: 100%!important;
    word-wrap: break-word!important;
    overflow-wrap: break-word!important;
    word-break: normal!important;
    white-space: normal!important;
}

  #packages .pricing-panel .pricing-card .price {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
    margin: 0;
    padding: 0;
    border: 0;
    white-space: nowrap;
    font-size: clamp(1.8rem, 2.35vw, 2.85rem);
  }

  #packages .pricing-panel .pricing-card-featured .price {
    font-size: clamp(2.35rem, 2.35vw, 4.15rem);
  }

  #packages .pricing-panel .pricing-card ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 5px 12px;
    margin: 6px 0 8px;
  }

  #packages .pricing-panel .pricing-card-featured ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 6px 14px;
  }

  #packages .pricing-panel .pricing-card li {
    font-size: clamp(1rem, 0.68vw, 0.84rem);
    line-height: 1.24;
  }

  #packages .pricing-panel .plan-support {
    grid-column: 1 / -1;
    margin-bottom: 6px;
    padding: 8px 10px;
    font-size: clamp(1.2rem, 0.7vw, 0.86rem);
    line-height: 1.32;
  }

  #packages .pricing-panel .pricing-card .btn {
    grid-column: 1 / -1;
    min-height: 38px;
  }
}

@media (max-width: 640px) {
  #packages .pricing-panel .pricing-card .price {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  #packages .pricing-panel .pricing-card-featured .price {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  #packages .pricing-panel .pricing-card ul {
    gap: 7px;
  }
}

/* Required UI refinements */
.hero::before,
.hero::after {
  z-index: 0;
  pointer-events: none;
}

.hero-grid,
.hero .brand-strip,
.brand-strip.container {
  position: relative;
  z-index: 2;
}

.hero-copy,
.hero-media,
.hero-recent-work,
.hero-recent-work ,
.hero-recent-work .reel-stage {
  position: relative;
  z-index: 3;
}

.hero-media {
  isolation: isolate;
}

.hero-media::before {
  z-index: 0;
  opacity: 0.58;
}

.hero-recent-work .reel-stage {
  z-index: 4;
}

.hero-recent-work .reel-slide.is-active {
  z-index: 8;
}

.hero-recent-work .reel-slide.is-prev,
.hero-recent-work .reel-slide.is-next {
  z-index: 6;
}

.strip-window {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
}

.strip-window::before,
.strip-window::after {
  content: none;
}

.strip-track {
  --strip-gap: clamp(10px, 1.4vw, 18px);
  gap: var(--strip-gap);
  animation-duration: 34s;
}

.strip-track span {
  min-width: clamp(132px, 12vw, 176px);
  min-height: 40px;
  display: inline-flex;
  justify-content: center;
  padding: 9px 16px;
  gap: 0;
}

.strip-track i,
.strip-track small {
  display: none;
}

.strip-track strong {
  color: #fff;
  font-size: clamp(0.76rem, 0.76vw, 0.9rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

#services .about-benefit-icon {
  margin: 0 auto 18px;
}

#services .about-benefit {
  justify-items: center;
  text-align: center;
}

#services .about-benefit h3,
#services .about-benefit p {
  margin-inline: auto;
}

@keyframes stripMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-25% - (var(--strip-gap) * 0.25)), 0, 0);
  }
}

@keyframes softFloat {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}



.reveal.is-visible {
  filter: blur(0);
  will-change: auto;
}

/* .float-soft {
  animation: softFloat 7s ease-in-out infinite;
} */

#packages .pricing-panel .pricing-card {
  height: 100%;
}

#packages .pricing-panel .pricing-card .btn {
  margin-top: auto;
  align-self: end;
}

#packages .pricing-panel .pricing-card-featured .btn {
  margin-top: auto;
}

@media (min-width: 981px) {
  #packages .pricing-panel .pricing-card {
    align-content: stretch;
    grid-template-rows: auto auto auto auto minmax(0, 1fr) auto auto;
  }

  #packages .pricing-panel .pricing-card ul {
    grid-row: 5;
    align-self: start;
  }

  #packages .pricing-panel .plan-support {
    grid-row: 6;
    align-self: end;
  }

  #packages .pricing-panel .pricing-card .btn {
    grid-row: 7;
    align-self: end;
  }
}

@media (max-width: 980px) {
  #packages .pricing-panel .pricing-card {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 360px);
  }

  .hero-actions .btn {
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.88rem;
  }

  .hero-actions .btn-arrow {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .strip-track span {
    min-width: 136px;
    min-height: 38px;
    padding: 8px 14px;
  }

  .strip-window::before,
  .strip-window::after {
    width: 46px;
  }
}

main {
  z-index: auto;
}

main > section > .container,
.site-footer .container {
  position: relative;
  z-index: 2;
}

body,
p,
li,
small,
input,
select,
textarea {
  font-weight: 300;
}

h1,
h2,
h3,
.hero-title,
.section-copy .hero-title,
.section-heading .hero-title,
.booking-copy .hero-title,
.creator-box .hero-title,
main > section .hero-title,
main > section .section-heading .hero-title,
main > section .section-copy .hero-title {
  font-weight: 400;
}

.hero .hero-title {
  font-weight: 500;
}

strong,
.stat-row strong,
.footer-card strong,
.review-author strong,
.pricing-card h3,
.pricing-panel h3,
#packages .pricing-panel .pricing-card h3,
#services .about-benefit h3 {
  font-weight: 500;
}

.nav-menu a,
.btn,
.btn-primary,
.btn-ghost,
.btn-outline,
.btn-light,
.hero-actions .btn,
.about-actions .btn,
.pricing-card .btn,
.pricing-panel .btn,
.creator-box .btn-light,
.booking-form .btn,
.faq-item button,
.booking-form label span {
  font-weight: 400;
}

.eyebrow,
.package-label,
.popular-badge,
.pricing-panel .package-label,
#packages .pricing-panel .popular-badge,
#packages .pricing-panel .pricing-card .package-label,
.review-avatar {
  font-weight: 500;
}

.strip-track strong {
  font-size: clamp(0.9rem, 0.9vw, 1.08rem);
  font-weight: 500;
}

.pricing-card .price,
.pricing-panel .price,
#packages .pricing-panel .pricing-card .price,
#packages .pricing-panel .pricing-card-featured .price {
  font-weight: 500;
}

.pricing-card p,
.pricing-card li,
.pricing-card .package-label,
.pricing-panel .pricing-card p,
.pricing-panel .pricing-card li,
.pricing-panel .pricing-card .package-label,
.pricing-panel .plan-support,
#packages .pricing-panel .plan-support,
#packages .pricing-panel .pricing-card li,
#services .about-benefit p,
.review-card p,
.faq-panel p {
  font-weight: 300;
}

#faq .faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4.8vw, 58px);
  max-width: 1120px;
  margin-inline: auto;
}

#faq .section-copy {
  position: static;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

#faq .section-copy .eyebrow,
#faq .section-copy .hero-title,
#faq .section-copy p {
  margin-inline: auto;
}

#faq .section-copy .hero-title,
#why .section-copy .hero-title,
.booking-heading .hero-title {
  max-width: 980px;
  margin-top: clamp(10px, 1.2vw, 16px);
  margin-bottom: clamp(20px, 2.4vw, 34px);
  font-size: clamp(2.45rem, 4.8vw, 4.9rem);
  line-height: 1.12;
}

#faq .section-copy p,
#why .section-copy p,
.booking-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}

#faq .faq-list {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  gap: clamp(14px, 1.6vw, 20px);
}

#faq .faq-item {
  --faq-item-delay: 0ms;
  width: 100%;
  border: 1px solid rgba(0, 216, 228, 0.16);
  border-radius: 14px;
  background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.08),
      rgba(246, 247, 251, 0.035)
    ),
    rgba(2, 18, 49, 0.58);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.08),
    0 18px 44px rgba(2, 18, 49, 0.16);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: opacity 1250ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 420ms ease,
    box-shadow 420ms ease, background 420ms ease;
  transition-delay: var(--faq-item-delay), var(--faq-item-delay), 0ms, 0ms, 0ms;
  will-change: opacity, transform;
}

#faq.is-faq-staged:not(.is-faq-ready) .faq-item {
  opacity: 0;
  transform: translate3d(clamp(96px, 12vw, 180px), clamp(72px, 8vw, 132px), 0)
    scale(0.94);
}

#faq.is-faq-locking .faq-item,
#faq.is-faq-locking .faq-panel {
  transition: none;
}

#faq .faq-item:nth-child(2) {
  --faq-item-delay: 160ms;
}

#faq .faq-item:nth-child(3) {
  --faq-item-delay: 320ms;
}

#faq .faq-item:nth-child(4) {
  --faq-item-delay: 480ms;
}

#faq.is-faq-ready .faq-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

#faq .faq-item button {
  min-height: 72px;
  align-items: flex-start;
  color: var(--color-ice);
  line-height: 1.35;
  white-space: normal;
}

#faq .faq-panel p {
  max-width: 920px;
  padding: 2px 28px 28px 78px;
  color: rgba(246, 247, 251, 0.7);
  line-height: 1.65;
}

#faq .faq-panel {
  opacity: 0;
  transform: translate3d(56px, 40px, 0);
  transition: max-height 980ms cubic-bezier(0.16, 1, 0.3, 1), opacity 760ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

#faq .faq-item.active .faq-panel {
  max-height: 520px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#faq.is-faq-ready .faq-item.active {
  border-color: rgba(0, 216, 228, 0.34);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.1),
    0 0 0 1px rgba(0, 216, 228, 0.08), 0 20px 50px rgba(0, 216, 228, 0.13);
}

#why .split-layout,
#why .split-layout.reverse {
  grid-template-columns: 1fr;
  gap: clamp(56px, 6vw, 88px);
}

#why .section-copy {
  position: static;
  order: 1;
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

#why .section-copy .eyebrow,
#why .section-copy .hero-title,
#why .section-copy p {
  margin-inline: auto;
}

#why .feature-list {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 0;
  perspective: 1200px;
}

#why .feature-list > div {
  min-height: clamp(220px, 13vw, 286px);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: center;
  text-align: center;
  row-gap: 0;
  padding: clamp(26px, 2.8vw, 5px);
  border: 1px solid rgba(0, 216, 228, 0.2);
  border-radius: 14px;
  background: radial-gradient(
      circle at 82% 10%,
      rgba(0, 216, 228, 0.18),
      transparent 8rem
    ),
    linear-gradient(180deg, rgba(246, 247, 251, 0.1), rgba(246, 247, 251, 0.04)),
    rgba(2, 18, 49, 0.62);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.1),
    0 18px 44px rgba(2, 18, 49, 0.18);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: transform 520ms ease, border-color 220ms ease,
    box-shadow 220ms ease;
}

#why .feature-list.reveal > div {
  opacity: 0;
  transform: rotateY(-74deg) translateY(18px);
}

#why .feature-list.reveal.is-visible > div {
  animation: whyCardFlipIn 820ms cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

#why .feature-list.reveal.is-visible > div:nth-child(2) {
  animation-delay: 120ms;
}

#why .feature-list.reveal.is-visible > div:nth-child(3) {
  animation-delay: 240ms;
}

#why .feature-list > div:hover,
#why .feature-list > div:focus-within {
  border-color: rgba(0, 216, 228, 0.56);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 0 28px rgba(0, 216, 228, 0.14), 0 22px 54px rgba(2, 18, 49, 0.24);
  transform: translateY(-6px) rotateY(6deg);
}

#why .feature-list .icon-chip {
  grid-row: auto;
  margin: 0 auto clamp(20px, 2vw, 26px);
}

#why .feature-list h3 {
  margin: 0 0 12px;
  color: var(--color-ice);
  line-height: 1.25;
}

#why .feature-list p {
  grid-column: auto;
  margin: 0;
  color: rgba(246, 247, 251, 0.68);
  line-height: 1.62;
}

.booking-form {
  padding: clamp(24px, 3vw, 38px);
  border-color: rgba(0, 216, 228, 0.24);
  box-shadow: 0 0 0 1px rgba(0, 216, 228, 0.08),
    0 18px 44px rgba(2, 18, 49, 0.16);
  transition: border-color 220ms ease, box-shadow 220ms ease,
    transform 220ms ease;
}

.booking-form::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(
      120deg,
      transparent 0 28%,
      rgba(0, 255, 255, 0.18) 42%,
      rgba(66, 161, 255, 0.16) 54%,
      transparent 70%
    ),
    linear-gradient(180deg, rgba(0, 216, 228, 0.06), transparent);
  opacity: 0.34;
  background-size: 220% 100%, auto;
  pointer-events: none;
  animation: bookingGlowSweep 5.6s ease-in-out infinite;
}

.booking-form:focus-within {
  border-color: rgba(0, 216, 228, 0.66);
  box-shadow: 0 0 0 4px rgba(0, 216, 228, 0.1), 0 0 30px rgba(0, 216, 228, 0.18),
    0 22px 54px rgba(2, 18, 49, 0.18);
  transform: translateY(-2px);
}

.booking-form label:focus-within span {
  color: var(--color-primary);
}

.booking-form label {
  min-width: 0;
}

.booking-form label span {
  margin-bottom: 10px;
  line-height: 1.25;
}

.booking-form .form-grid {
  gap: clamp(18px, 2vw, 24px);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(0, 216, 228, 0.12), 0 0 18px rgba(0, 216, 228, 0.1);
}

.booking-details {
  perspective: 1200px;
}

.booking-detail-card,
.booking-note {
  min-height: 102px;
  padding: 30px 16px 12px 12px!important;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    border-color 220ms ease, box-shadow 220ms ease;
}

.booking-detail-card > *,
.booking-note > * {
  position: relative;
  z-index: 1;
}

.booking-detail-card a,
.booking-detail-card strong,
.booking-detail-card small,
.booking-note p {
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.booking-detail-card::after,
.booking-note::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.36),
    rgba(0, 216, 228, 0.1) 58%,
    transparent 70%
  );
  border: 1px solid rgba(0, 216, 228, 0.24);
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 220ms ease, transform 520ms ease, box-shadow 220ms ease;
}

.booking-detail-card:hover,
.booking-detail-card:focus-within,
.booking-note:hover,
.booking-note:focus-within {
  border-color: rgba(0, 216, 228, 0.58);
  box-shadow: inset 0 1px 0 rgba(246, 247, 251, 0.12),
    0 0 28px rgba(0, 216, 228, 0.16), 0 22px 54px rgba(2, 18, 49, 0.28);
  transform: rotateY(-9deg) translateY(-4px);
}

.booking-detail-card:hover::after,
.booking-detail-card:focus-within::after,
.booking-note:hover::after,
.booking-note:focus-within::after {
  opacity: 1;
  transform: rotateY(180deg) scale(1.08);
  box-shadow: 0 0 0 5px rgba(0, 216, 228, 0.1), 0 0 24px rgba(0, 255, 255, 0.24);
}

.creator-box-redesign {
  min-height: clamp(190px, 17vw, 230px);
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(260px, 0.72fr) minmax(
      390px,
      1fr
    ) auto;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: clamp(24px, 3.2vw, 42px) clamp(28px, 4vw, 58px);
  overflow: visible;
  background: radial-gradient(
      circle at 18% 50%,
      rgba(0, 216, 228, 0.14),
      transparent 15rem
    ),
    linear-gradient(135deg, rgba(2, 18, 49, 0.98), rgba(0, 54, 62, 0.92));
  border-color: rgba(0, 216, 228, 0.24);
  border-radius: 24px;
}

.creator-box-redesign::before {
  content: none;
}

.creator-visual {
  position: relative;
  align-self: end;
  min-height: clamp(170px, 18vw, 242px);
  margin: 0 0 -28px;
}

.creator-visual img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(170px, 18vw, 254px);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.28));
}

.creator-box-redesign .creator-copy {
  min-width: 0;
}

.creator-box-redesign .eyebrow {
  margin-bottom: 8px;
}

.creator-box-redesign .hero-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1.04;
}

.creator-box-redesign .creator-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 0;
  color: rgba(246, 247, 251, 0.8);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.5;
}

.creator-box-redesign .creator-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 18px 28px;
}

.creator-box-redesign .creator-perks span {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  white-space: normal;
}

.creator-box-redesign .creator-perk-icon {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  background: rgba(0, 216, 228, 0.12);
  border: 1px solid rgba(0, 216, 228, 0.18);
  border-radius: 14px;
  font-style: normal;
  font-size: 1.1rem;
}

.creator-box-redesign .creator-perks strong {
  color: var(--color-ice);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.2;
}

.creator-box-redesign .creator-perks small {
  color: rgba(246, 247, 251, 0.68);
  font-size: 0.86rem;
  line-height: 1.25;
}

.creator-box-redesign .btn-light {
  min-width: 162px;
  min-height: 56px;
  justify-self: end;
  padding-inline: 26px 14px;
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: rgba(0, 216, 228, 0.82);
  border-radius: var(--radius-pill);
}

.creator-box-redesign .btn-light:hover {
  color: var(--color-navy);
  background: #7ef6ff;
}

.creator-cta-plus {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

.booking-detail-card a {
  font-weight: 440;
}

@media (max-width: 1180px) {
  .creator-box-redesign {
    grid-template-columns: minmax(150px, 220px) 1fr auto;
  }

  .creator-box-redesign .creator-perks {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .creator-box-redesign {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-inline: 22px;
  }

  .creator-visual {
    width: min(100%, 250px);
    margin-bottom: -24px;
  }

  .creator-box-redesign .creator-copy p:not(.eyebrow),
  .creator-box-redesign .creator-copy .hero-title,
  .creator-box-redesign .eyebrow {
    margin-inline: auto;
  }

  .creator-box-redesign .creator-perks {
    grid-column: auto;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 340px;
    text-align: left;
  }

  .creator-box-redesign .btn-light {
    justify-self: center;
  }
}

@keyframes whyCardFlipIn {
  0% {
    opacity: 0;
    transform: rotateY(-74deg) translateY(18px);
  }

  68% {
    opacity: 1;
    transform: rotateY(8deg) translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: rotateY(0) translateY(0);
  }
}

@keyframes bookingGlowSweep {
  0%,
  100% {
    background-position: -140% 0, 0 0;
    opacity: 0.24;
  }

  48% {
    background-position: 140% 0, 0 0;
    opacity: 0.5;
  }
}

@media (max-width: 980px) {
  #why .feature-list {
    grid-template-columns: 1fr;
  }

  #why .feature-list > div {
    min-height: 0;
  }

  .booking-detail-card,
  .booking-note {
    min-height: 136px;
  }
}

@media (max-width: 640px) {
  #faq .section-copy,
  #why .section-copy,
  .booking-heading {
    text-align: center;
  }

  #faq .section-copy .eyebrow,
  #faq .section-copy .hero-title,
  #faq .section-copy p,
  #why .section-copy .eyebrow,
  #why .section-copy .hero-title,
  #why .section-copy p,
  .booking-heading .eyebrow,
  .booking-heading .hero-title,
  .booking-heading p:not(.eyebrow) {
    margin-inline: auto;
  }

  #faq .faq-item button {
    /* min-height: 64px; */
    padding: 18px;
    gap: 12px;
    font-size: 0.92rem;
  }

  #faq .faq-panel p {
    padding: 0 18px 22px;
  }

  #why .feature-list > div {
    padding: 22px;
  }

  .booking-form {
    padding: 20px;
  }

  .booking-detail-card,
  .booking-note {
    min-height: 0;
    padding: 18px 64px 18px 18px;
  }

  .booking-detail-card:hover,
  .booking-detail-card:focus-within,
  .booking-note:hover,
  .booking-note:focus-within {
    transform: translateY(-3px);
  }
}

.process-section .process-icon-step:not(:last-child)::after {
  top: 36px;
  left: calc(50% + 48px);
  width: clamp(62px, 6.4vw, 106px);
  height: 6px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 216, 228, 0) 18%,
        rgba(0, 216, 228, 0.78) 40%,
        #9bf8ff 50%,
        rgba(66, 161, 255, 0.78) 60%,
        rgba(0, 216, 228, 0) 82%,
        transparent 100%
      ) -120% 0 / 210% 100% no-repeat,
    linear-gradient(90deg, rgba(5, 22, 54, 0.92), rgba(8, 38, 82, 0.86));
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(0, 216, 228, 0.08),
    inset 0 1px 2px rgba(246, 247, 251, 0.08);
  filter: brightness(0.94);
  animation: none;
}

.process-section .process-icon-step:not(:last-child)::before {
  top: 30px;
  left: calc(50% + 48px + clamp(62px, 6.4vw, 106px) - 8px);
  width: 14px;
  height: 14px;
  border-top: 4px solid rgba(31, 78, 122, 0.9);
  border-right: 4px solid rgba(31, 78, 122, 0.9);
  opacity: 0.62;
  filter: brightness(0.94);
  transform: rotate(45deg);
  animation: none;
}

.process-section.is-flow-active .process-icon-step:not(:last-child)::after {
  animation: processLinearTrackOnce 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.process-section.is-flow-active .process-icon-step:not(:last-child)::before {
  animation: processLinearArrowOnce 0.52s ease-out forwards;
}

.process-section.is-flow-active .process-icon-step:nth-child(2)::before,
.process-section.is-flow-active .process-icon-step:nth-child(2)::after {
  animation-delay: 1.6s;
}

.process-section.is-flow-active .process-icon-step:nth-child(3)::before,
.process-section.is-flow-active .process-icon-step:nth-child(3)::after {
  animation-delay: 3.2s;
}

.process-section.is-flow-active .process-icon-step:nth-child(1)::before {
  animation-delay: 1.08s;
}

.process-section.is-flow-active .process-icon-step:nth-child(2)::before {
  animation-delay: 2.68s;
}

.process-section.is-flow-active .process-icon-step:nth-child(3)::before {
  animation-delay: 4.28s;
}

.process-section .process-icon-step:nth-child(1) .process-icon-card,
.process-section .process-icon-step:nth-child(2) .process-icon-card,
.process-section .process-icon-step:nth-child(3) .process-icon-card,
.process-section .process-icon-step:nth-child(4) .process-icon-card {
  animation: none;
}

.process-section.is-flow-active .process-icon-step .process-icon-card {
  animation: processNodeGlowOnce 0.72s ease-out forwards;
}

.process-section.is-flow-active
  .process-icon-step:nth-child(2)
  .process-icon-card {
  animation-delay: 1.6s;
}

.process-section.is-flow-active
  .process-icon-step:nth-child(3)
  .process-icon-card {
  animation-delay: 3.2s;
}

.process-section.is-flow-active
  .process-icon-step:nth-child(4)
  .process-icon-card {
  animation-delay: 4.8s;
}

@keyframes processLinearTrackOnce {
  0% {
    background-position: 152% 0, 0 0;
    filter: brightness(0.94);
    box-shadow: inset 0 0 0 1px rgba(0, 216, 228, 0.08),
      inset 0 1px 2px rgba(246, 247, 251, 0.08);
  }

  62% {
    background-position: 15% 0, 0 0;
    filter: brightness(1.22);
    box-shadow: inset 0 0 0 1px rgba(0, 255, 255, 0.18),
      0 0 10px rgba(0, 255, 255, 0.3), 0 0 22px rgba(0, 216, 228, 0.18);
  }

  100% {
    background-position: -120% 0, 0 0;
    filter: brightness(1.06);
    box-shadow: inset 0 0 0 1px rgba(0, 216, 228, 0.12),
      0 0 8px rgba(0, 216, 228, 0.16);
  }
}

@keyframes processNodeGlowOnce {
  0% {
    filter: brightness(1);
  }

  100% {
    color: #00f6ff;
    border-color: rgba(155, 248, 255, 0.86);
    box-shadow: 0 0 0 7px rgba(0, 216, 228, 0.12),
      0 0 22px rgba(0, 255, 255, 0.42), 0 18px 44px rgba(0, 216, 228, 0.26);
    filter: brightness(1.18) drop-shadow(0 0 10px rgba(0, 255, 255, 0.34));
  }
}

@keyframes processLinearArrowOnce {
  0% {
    border-color: rgba(31, 78, 122, 0.9);
    opacity: 0.62;
    filter: brightness(0.94);
  }

  100% {
    border-color: #8ff8ff;
    opacity: 1;
    filter: brightness(1.4) drop-shadow(0 0 8px rgba(0, 255, 255, 0.54))
      drop-shadow(0 0 18px rgba(66, 161, 255, 0.28));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-bubbles {
    display: none;
  }

  #why .feature-list.reveal > div,
  #why .feature-list.reveal.is-visible > div {
    opacity: 1;
    transform: none;
    animation: none;
  }

  #services .about-benefits.reveal .about-benefit,
  #services .about-benefits.reveal.is-visible .about-benefit,
  #services .about-benefit:hover,
  #services .about-benefit:focus-within {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .booking-form::after {
    animation: none;
  }

  .process-section .process-icon-step:not(:last-child)::before,
  .process-section .process-icon-step:not(:last-child)::after,
  .process-section .process-icon-step .process-icon-card {
    animation: none;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  #faq.is-faq-staged:not(.is-faq-ready) .faq-item,
  #faq .faq-item,
  #faq .faq-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-soft {
    animation: none;
  }
}

.site-footer {
  margin-top: 0;
  padding: clamp(72px, 8vw, 112px) 0 28px;
  color: var(--color-ice);
  background: var(--color-navy);
}

.site-footer::before {
  content: none;
}

.footer-grid-redesign {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
  padding-bottom: clamp(52px, 7vw, 86px);
}

.footer-contact-block {
  display: grid;
  gap: 22px;
}

.footer-brand img {
  width: clamp(180px, 22vw, 260px);
}

.footer-contact-group {
  display: grid;
  gap: 4px;
}

.footer-contact-group strong,
.footer-links h3 {
  margin: 0 0 8px;
  color: var(--color-ice);
  font-size: 1.00rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.footer-contact-group p,
.footer-contact-group a,
.footer-links a {
  margin: 0;
  color: rgba(246, 247, 251, 0.58);
  font-size: 1.00rem;
  font-weight: 400;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer-links a:hover,
.footer-contact-group a:hover {
  color: var(--color-primary);
  transform: none;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: rgba(246, 247, 251, 0.72);
  background: transparent;
  border: 1px solid rgba(246, 247, 251, 0.32);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 400;
}

.footer-social a:hover {
  color: var(--color-navy);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.footer-wordmark {
  display: flex;
  justify-content: center;
  gap: clamp(0.28em, 2.7vw, 0.48em);
  padding: clamp(10px, 2vw, 22px) 0 clamp(42px, 5vw, 64px);
  color: rgba(246, 247, 251, 0.12);
  font-size: clamp(4.8rem, 13vw, 12rem);
  font-weight: 500;
  line-height: 0.85;
  text-align: center;
  white-space: nowrap;
}

.footer-wordmark span {
  display: inline-block;
  animation: footerLetterFlip 3.8s ease-in-out infinite;
  transform-origin: center bottom;
}

.footer-wordmark span:nth-child(2) {
  animation-delay: 0.16s;
}

.footer-wordmark span:nth-child(3) {
  animation-delay: 0.32s;
}

.footer-wordmark span:nth-child(4) {
  animation-delay: 0.48s;
}

.footer-wordmark span:nth-child(5) {
  animation-delay: 0.64s;
}

.footer-wordmark span:nth-child(6) {
  animation-delay: 0.8s;
}

.footer-wordmark span:nth-child(7) {
  animation-delay: 0.96s;
}

@keyframes footerLetterFlip {
  0%,
  12%,
  100% {
    color: rgba(246, 247, 251, 0.12);
    transform: translateY(0) rotateX(0deg);
  }

  5% {
    color: rgba(0, 216, 228, 0.32);
    transform: translateY(-0.08em) rotateX(180deg);
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 247, 251, 0.12);
  color: rgba(246, 247, 251, 0.54);
  font-size: 0.76rem;
  font-weight: 300;
}

.footer-bottom span:last-child {
  display: inline-flex;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom a {
  color: rgba(246, 247, 251, 0.58);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

@media (max-width: 980px) {
  .footer-grid-redesign {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
  }

  .footer-contact-block,
  .footer-links {
    justify-items: start;
    text-align: left;
  }

  .footer-contact-block {
    grid-column: 1 / -1;
  }

  .footer-wordmark {
    gap: 0.26em;
  }
}

@media (max-width: 640px) {
  .site-footer {
    margin-top: 0;
    padding-top: 64px;
  }

  .footer-grid-redesign {
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }

  .footer-wordmark {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding-inline: 0;
    font-size: clamp(2.35rem, 13vw, 3.75rem);
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom span:last-child {
    justify-content: flex-start;
  }
}

/* qwertyuiop */

/* ===================================
   HERO PHONE SHOWCASE
=================================== */

.showcase-wrapper {
  position: relative;

  width: 100%;
  height: 650px;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================================
   BADGES
=================================== */

.badge-group {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 50;
}

.left-badges-white {
  left: -35px !important;
  top: 390px;
}

.left-badges-glass {
  left: 45px !important;
  top: 120px;
}

.right-badges-white {
  right: 0px;
  top: 470px;
}

.right-badges-cyan {
  right: 65px;
  top: 240px;
}



.badge {
  min-width: 80px;
  padding: 2px 2px;
  text-align: center;
  border-radius: 5px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glass-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.white-badge {
  background: #fff;
  color: #021231;
}

.cyan-badge {
  background: #00d8e4;
  color: #021231;
}

.badge-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.badge-sub {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: -12px;
}

/* ===================================
   HAND MOBILE IMAGE
=================================== */

.phone-showcase-bg {
  position: relative;
  width: 560px;
  height: 650px;
}

/* ACTUAL HAND PNG */

.showcase-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 5;

   -webkit-mask-image: linear-gradient(
        to bottom,
        #000 75%,
        transparent 100%
    )!important;

    mask-image: linear-gradient(
        to bottom,
        #000 75%,
        transparent 100%
    )!important;
}
/* ===================================
   VIDEO SCREEN FINAL ALIGNMENT
=================================== */

.phone-screen {
    position: absolute;
    width: 262px;
    height: 514px;
    top: 75px;
    left: 116px;
    background: #000;
    overflow: hidden;
    /* iPhone curved corners */
    border-radius: 36px;
    z-index: 20;
    border: 5px solid black;
    /* smooth edge like real screen */
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 15px rgba(0,0,0,0.8);
}


.phone-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.phone-video.active {
  opacity: 1;
}

/* ===================================
   REMOVE DUPLICATE IPHONE UI
   (PNG already has notch)
=================================== */

.dynamic-island {
  display: none;
}

.status-bar {
  display: none;
}

/* ===================================
   INSTAGRAM REEL OVERLAY
=================================== */

.insta-overlay {
  position: absolute;
  inset: 0;
  color: white;
  z-index: 40;
  pointer-events: none;
}

.right-actions {
  position: absolute;
  right: 12px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.action-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 22px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

.action-icon span {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
}

.action-icon svg {
  width: 26px;
  height: 26px;
  fill: white;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}

.action-icon.heart:hover svg {
  fill: #ff3040;
}

/* ===================================
   BOTTOM NAV
=================================== */

.bottom-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.nav-item {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.nav-profile {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: url("../img/man.svg");
  background-size: cover;
  background-position: center;
}


/* ===================================
   IPHONE DYNAMIC ISLAND
=================================== */

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 25px;
    background: #000;
    border-radius: 50px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: all .35s ease;
}
/* hover interaction */
/* camera lens */

.camera-dot {
    width: 8px;
    height: 8px;
    background: radial-gradient(
        circle,
        #183b70,
        #02040a
    );
    border-radius: 50%;
    box-shadow:
        inset 0 0 3px #5ba8ff,
        0 0 5px rgba(70,120,255,.5);
}
/* ===================================
   RESPONSIVE MOBILE
=================================== */

@media (max-width: 900px) {
  .showcase-wrapper {
    height: 340px;
  }

  .phone-showcase-bg {
    width: 345px;
    height: 500px;
  }

  .phone-screen {
        width: 155px;
        height: 321px;
        top: 94px;
        left: 74px;
        border: 0px!important;
        border-radius: 20px;
  }
  .iphone-status-bar {
    display:none!important;
  }

  .right-actions {
    position: absolute;
    right: 12px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.bottom-nav {
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 0px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

}

/* Tablets & Mobile */
@media (max-width: 991px) {
    .left-badges-white,
    .left-badges-glass,
    .right-badges-white,
    .right-badges-cyan,
    .badge-group {
        display: none !important;
    }
}
/* ===================================
   IPHONE STATUS BAR
=================================== */

.iphone-status-bar {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 28px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 90;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.status-time {
    letter-spacing: .3px;
}
.status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.status-icons svg {
    width: 17px;
    height: 17px;
    fill: white;
    filter:
        drop-shadow(
            0 2px 4px rgba(0,0,0,.5)
        );
}


/* Battery */

.battery {
    position: relative;
    width: 24px;
    height: 12px;
    border: 1.8px solid white;
    border-radius: 4px;
    padding: 2px;
}

.battery::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 3px;
    width: 2px;
    height: 5px;
    background: white;
    border-radius: 2px;
}
.battery-level {
    width: 70%;
    height: 100%;
    background: white;
    border-radius: 2px;
}

.floating-contact{
    position:fixed;
    right:24px;
    bottom:24px;
    display:flex;
    flex-direction:column;
    gap:14px;
    z-index:9999;
}
.floating-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:none;
    cursor:pointer;
    color:#fff;
    font-size:28px;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.3s ease;
}
.floating-btn:hover{
    transform:translateY(-4px) scale(1.06);
}
.whatsapp{
    background:#25D366;
}
.tawk{
    background:linear-gradient(135deg,#ff7b00,#ffb000);
}