:root {
  --navy: #181c1f;
  --navy-mid: #1e2428;
  --blue: #1a9e8f;
  --blue-bright: #22b5a4;
  --blue-electric: #2cc4b0;
  --accent: #2cc4b0;
  --accent-light: #3dd6c2;
  --white: #ffffff;
  --off-white: #ebf5f3;
  --gray-100: #d9edea;
  --text-body: #1a2422;
  --text-muted: #4a706a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 4px 32px rgba(24, 28, 31, 0.1);
  --shadow-elevated: 0 16px 64px rgba(24, 28, 31, 0.18);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-electric);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue-electric);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(37px, 5vw, 57px);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  line-height: 1.05;
  color: var(--navy);
  -webkit-text-stroke: 0.45px currentColor;
  paint-order: stroke fill;
}

.section-title span {
  font-weight: inherit;
  font-variation-settings: inherit;
  color: var(--blue-electric);
  -webkit-text-stroke: 0.45px currentColor;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 196, 176, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: transparent;
  isolation: isolate;
}

/* Background panel — slides up from below on scroll */
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 28, 53, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(100%);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

nav.scrolled::before {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

nav:not(.scrolled)::before {
  transition-delay: 0s;
  transition-duration: 0.42s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.68, 0.06);
}

/* Teal divider — grows upward from the bottom edge */
nav::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(44, 196, 176, 0) 0%,
    var(--blue-electric) 18%,
    var(--blue-electric) 82%,
    rgba(44, 196, 176, 0) 100%
  );
  box-shadow: 0 0 14px rgba(44, 196, 176, 0.55);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

nav.nav-border::after {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0s;
}

nav:not(.nav-border)::after {
  transition-delay: 0.08s;
  transition-duration: 0.38s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.68, 0.06);
}

nav > .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  nav::before,
  nav::after {
    transition: opacity 0.2s ease;
    transform: none !important;
  }

  nav.scrolled::before,
  nav.nav-border::after {
    transform: none;
  }
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}

.nav-inner .logo {
  justify-self: start;
}

.nav-inner .nav-cta {
  justify-self: end;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.92;
}

.logo-text .name {
  font-family: var(--font-body);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  font-size: 24px;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
}

.logo-text .sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  font-variation-settings: 'wght' 500;
  line-height: 1;
  margin-top: -1px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-electric);
}

nav .logo-text {
  gap: 1px;
}

footer .logo-text {
  gap: 1px;
}

nav .logo-text .name {
  font-size: 22px;
}

footer .logo-text .name {
  font-size: 22px;
}

nav .logo-text .sub {
  font-size: 10px;
  margin-top: 0;
}

footer .logo-text .sub {
  font-size: 10px;
  margin-top: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  list-style: none;
  justify-self: center;
  grid-column: 2;
  transform: translateX(-64px);
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.03em;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 14px rgba(61, 214, 194, 0.5);
}

nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: none;
}

nav.scrolled .nav-links a:hover {
  color: var(--accent-light);
  text-shadow: 0 0 10px rgba(61, 214, 194, 0.35);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(11, 28, 53, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px 28px 32px;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.mobile-menu a:hover {
  color: var(--white);
}

.mobile-menu .btn-nav {
  display: inline-flex;
  margin-top: 8px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 112vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: var(--navy);
  padding-bottom: 168px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 32%;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(24, 28, 31, 0.88) 0%,
      rgba(24, 28, 31, 0.72) 38%,
      rgba(24, 28, 31, 0.4) 62%,
      rgba(24, 28, 31, 0.68) 100%
    ),
    radial-gradient(ellipse 70% 55% at 85% 55%, rgba(24, 28, 31, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(44, 196, 176, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(24, 28, 31, 0.38) 0%, transparent 55%),
    linear-gradient(270deg, rgba(24, 28, 31, 0.62) 0%, rgba(24, 28, 31, 0.25) 35%, transparent 58%),
    linear-gradient(0deg, rgba(24, 28, 31, 0.45) 0%, transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44, 196, 176, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 196, 176, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-routes {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 56px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 196, 176, 0.12);
  border: 1px solid rgba(44, 196, 176, 0.28);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  color: #7adfd4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #2cc4b0;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(60px, 10vw, 112px);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-headline__accent {
  color: var(--accent);
}

.hero-headline__blue {
  color: var(--blue-electric);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 44px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* Proven Results stats bar (hero) */
.proven-results {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  z-index: 20;
  padding: 0 16px;
  animation: fadeUp 0.6s ease 0.4s both;
}

.proven-results__bar {
  display: flex;
  flex-direction: column;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(44, 196, 176, 0.35);
  background: rgba(24, 32, 30, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.proven-results__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-electric) 100%);
  border-bottom: 1px solid rgba(44, 196, 176, 0.25);
}

.proven-results__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proven-results__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(44, 196, 176, 0.12);
}

.proven-results__stat:nth-child(odd) {
  border-right: 1px solid rgba(44, 196, 176, 0.12);
}

.proven-results__stat:nth-last-child(-n + 2) {
  border-bottom: none;
}

.proven-results__tag {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 700;
  font-variation-settings: 'wght' 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--accent-light);
}

.proven-results__accent,
.proven-results__suffix {
  color: var(--blue-electric);
}

.proven-results__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proven-results__num {
  color: var(--white);
}

.proven-results__suffix {
  font-size: 0.58em;
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .proven-results {
    bottom: 32px;
    padding: 0 24px;
  }

  .proven-results__bar {
    flex-direction: row;
    border-radius: 16px;
  }

  .proven-results__heading {
    flex-shrink: 0;
    min-width: 11rem;
    padding: 24px 28px;
    font-size: 22px;
    border-bottom: none;
    border-right: 1px solid rgba(44, 196, 176, 0.25);
  }

  .proven-results__value {
    font-size: clamp(2.4rem, 3vw, 3.5rem);
  }

  .proven-results__stats {
    display: flex;
    flex: 1;
    min-width: 0;
  }

  .proven-results__stat {
    flex: 1;
    min-width: 0;
    padding: 24px 20px;
    border-bottom: none;
    border-right: 1px solid rgba(44, 196, 176, 0.12);
  }

  .proven-results__stat:nth-child(odd) {
    border-right: 1px solid rgba(44, 196, 176, 0.12);
  }

  .proven-results__stat:last-child {
    border-right: none;
  }
}

/* Hero video (replaces Active Loads card) */
.hero-video {
  position: absolute;
  right: 12px;
  bottom: 14rem;
  z-index: 40;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-video__frame {
  position: relative;
  padding: 3px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 25%,
    var(--blue-bright) 50%,
    var(--accent) 75%,
    var(--accent-light) 100%
  );
  background-size: 220% 220%;
  animation: videoBorderShine 5s ease infinite;
  box-shadow:
    0 0 0 1px rgba(61, 214, 194, 0.35),
    0 10px 36px rgba(44, 196, 176, 0.28),
    0 0 56px rgba(44, 196, 176, 0.14);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-video__frame::before,
.hero-video__frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
}

.hero-video__frame::before {
  top: 8px;
  left: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.85);
  border-left: 2px solid rgba(255, 255, 255, 0.85);
}

.hero-video__frame::after {
  right: 8px;
  bottom: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.hero-video:hover .hero-video__frame {
  box-shadow:
    0 0 0 1px rgba(61, 214, 194, 0.55),
    0 14px 44px rgba(44, 196, 176, 0.38),
    0 0 72px rgba(44, 196, 176, 0.22);
  transform: translateY(-2px);
}

.hero-video__inner {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(44, 196, 176, 0.08);
}

.hero-video__control {
  position: absolute;
  top: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(44, 196, 176, 0.5);
  background: rgba(24, 28, 31, 0.85);
  color: var(--accent);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-video__toggle {
  left: 10px;
}

.hero-video__mute {
  right: 10px;
}

.hero-video__control:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--navy);
}

.hero-video__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-video__icon--play,
.hero-video__icon--volume-on {
  display: none;
}

.hero-video__toggle.is-paused .hero-video__icon--pause {
  display: none;
}

.hero-video__toggle.is-paused .hero-video__icon--play {
  display: block;
}

.hero-video__mute.is-muted .hero-video__icon--volume-on {
  display: none;
}

.hero-video__mute.is-muted .hero-video__icon--volume-off {
  display: block;
}

.hero-video__mute:not(.is-muted) .hero-video__icon--volume-off {
  display: none;
}

.hero-video__mute:not(.is-muted) .hero-video__icon--volume-on {
  display: block;
}

.hero-video__media {
  display: block;
  width: 22rem;
  height: 14rem;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.1) brightness(1.06) saturate(1.12);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .hero-video {
    right: 32px;
    bottom: 15rem;
  }

  .hero-video__media {
    width: 28rem;
    height: 17rem;
  }
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 48px 0 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 28px 18px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(44, 196, 176, 0.45);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(24, 28, 31, 0.04);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 196, 176, 0.7);
  box-shadow: 0 16px 40px rgba(44, 196, 176, 0.2);
}

.trust-card__line {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.trust-card:hover .trust-card__line {
  transform: scaleX(1);
}

.trust-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.trust-card:hover .trust-card__icon {
  transform: scale(1.1);
  color: var(--blue-bright);
}

.trust-card__title {
  font-size: clamp(1.125rem, 0.65rem + 1.1vw, 1.25rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--navy);
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Problem */
.problem {
  padding: 96px 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px 56px;
  align-items: start;
}

.problem-header {
  text-align: left;
  margin-bottom: 8px;
}

.problem-header .section-label {
  margin-bottom: 20px;
}

.problem-header h2 {
  font-family: var(--font-body);
  font-size: clamp(37px, 5vw, 57px);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  line-height: 1.05;
  color: var(--navy);
  max-width: 14ch;
  -webkit-text-stroke: 0.45px currentColor;
  paint-order: stroke fill;
}

.problem-highlight {
  font-weight: inherit;
  font-variation-settings: inherit;
  color: var(--blue-electric);
  -webkit-text-stroke: 0.45px currentColor;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 34rem;
}

.pain-card {
  background: #fef3f0;
  border: 1px solid #fdd6cc;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.pain-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #c62828;
  margin-bottom: 4px;
}

.pain-card p {
  font-size: 13px;
  color: #8d3028;
  line-height: 1.5;
}

.problem-actions {
  margin-top: 32px;
  max-width: 34rem;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d0f5ef;
  border: 1px solid #a0e8de;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin: 24px 0 16px;
}

.problem-media {
  position: sticky;
  top: 100px;
}

.problem-media__img {
  display: block;
  width: 100%;
  min-height: 32rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(24, 28, 31, 0.12);
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.services-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: brightness(1.08) contrast(1.06) saturate(1.1);
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(24, 28, 31, 0.62) 0%,
      rgba(24, 28, 31, 0.38) 30%,
      rgba(24, 28, 31, 0.32) 55%,
      rgba(24, 28, 31, 0.58) 100%
    ),
    linear-gradient(
      115deg,
      rgba(24, 28, 31, 0.55) 0%,
      rgba(24, 28, 31, 0.22) 50%,
      rgba(24, 28, 31, 0.48) 100%
    ),
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(44, 196, 176, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(24, 28, 31, 0.5) 0%, transparent 22%);
  pointer-events: none;
}

.services-inner {
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-label {
  justify-content: center;
}

.services-header .section-label::before {
  display: none;
}

.services-header .section-title {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.services-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 16px;
  max-width: 520px;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: rgba(24, 28, 31, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-electric), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  background: rgba(30, 36, 40, 0.88);
  transform: translateY(-4px);
  border-color: rgba(44, 196, 176, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(44, 196, 176, 0.15);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(44, 196, 176, 0.14);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
}

.service-icon--graphic {
  background: rgba(18, 42, 40, 0.92);
  border: 1px solid rgba(44, 196, 176, 0.28);
  font-size: 0;
}

.service-icon--graphic svg {
  width: 34px;
  height: 34px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-electric);
  margin-top: 20px;
  text-decoration: none;
  transition: gap 0.2s;
}

.service-card:hover .learn-more {
  gap: 10px;
}

/* How it works */
.how-it-works {
  padding: 100px 0;
  background: var(--off-white);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .section-label {
  justify-content: center;
}

.how-header .section-label::before {
  display: none;
}

.how-header .section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
  max-width: 480px;
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 32px);
  right: calc(16.66% + 32px);
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--blue-electric) 0,
    var(--blue-electric) 8px,
    transparent 8px,
    transparent 18px
  );
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--blue-electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(44, 196, 176, 0.4);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* About */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content .lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.about-val {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-val .check {
  width: 22px;
  height: 22px;
  background: #d0f5ef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-val span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/5;
  position: relative;
}

.about-img-bg {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      165deg,
      rgba(24, 28, 31, 0.88) 0%,
      rgba(24, 28, 31, 0.52) 42%,
      rgba(44, 196, 176, 0.22) 100%
    ),
    url('../images/1000.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 70% at 50% 55%,
    transparent 35%,
    rgba(24, 28, 31, 0.35) 100%
  );
  pointer-events: none;
}

.about-big-stat {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 28px 20px;
}

.about-big-stat .num {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
}

.about-big-stat .num span {
  color: var(--accent);
}

.about-big-stat .txt {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
}

.about-big-stat .txt::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-electric), var(--accent));
  box-shadow: 0 0 12px rgba(44, 196, 176, 0.5);
}

.about-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--gray-100);
  width: 200px;
}

.about-float-card .title {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-float-card .big {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.about-float-card .sub {
  font-size: 12px;
  color: var(--blue-electric);
  margin-top: 4px;
  font-weight: 600;
}

/* Why choose */
.why {
  padding: 100px 0;
  background: var(--gray-100);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-section-title {
  margin-bottom: 12px;
}

.why-feat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  cursor: default;
}

.why-feat:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
  border-color: var(--blue-electric);
}

.why-feat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-feat-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-feat-text p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

.why-content {
  padding-top: 40px;
}

.comparison-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--gray-100);
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy);
  padding: 16px 20px;
}

.comp-header .col {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comp-header .col:first-child {
  text-align: left;
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row:hover {
  background: var(--off-white);
}

.comp-row .feat-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
}

.comp-val {
  text-align: center;
}

.check-yes {
  color: #2e7d32;
  font-size: 18px;
}

.check-no {
  color: #c62828;
  font-size: 18px;
}

.why-cta-box {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  padding: 24px;
  color: white;
}

.why-cta-box .stat {
  font-size: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: #2cc4b0;
}

.why-cta-box .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.why-cta-box .btn-primary {
  margin-top: 18px;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.test-header {
  text-align: center;
  margin-bottom: 56px;
}

.test-header .section-label {
  justify-content: center;
}

.test-header .section-label::before {
  display: none;
}

.test-header .section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 14px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--blue-electric);
}

.stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.test-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-electric), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}

.test-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.test-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--navy);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-label {
  justify-content: center;
  color: #7adfd4;
}

.faq-header .section-label::before {
  background: #7adfd4;
  display: none;
}

.faq-header .section-title {
  color: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-q span {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--blue-electric);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 24px;
}

/* CTA */
.cta-section {
  padding: 100px 0;
  background-color: #181c1f;
  background-image:
    linear-gradient(
      165deg,
      rgba(24, 28, 31, 0.88) 0%,
      rgba(24, 28, 31, 0.52) 42%,
      rgba(44, 196, 176, 0.22) 100%
    ),
    url('../images/sdv6.webp');
  background-size: cover;
  background-position: center, 72% center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 45%,
    rgba(44, 196, 176, 0.18) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 85% 75% at 50% 50%,
    transparent 32%,
    rgba(24, 28, 31, 0.42) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-body);
  font-size: clamp(37px, 5vw, 57px);
  font-weight: 1000;
  font-variation-settings: 'wght' 1000;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 20px;
  -webkit-text-stroke: 0.45px currentColor;
  paint-order: stroke fill;
  text-shadow:
    0 4px 28px rgba(0, 0, 0, 0.55),
    0.35px 0 0 rgba(255, 255, 255, 0.4),
    -0.35px 0 0 rgba(255, 255, 255, 0.4);
}

.cta-section h2 .accent {
  font-weight: inherit;
  font-variation-settings: inherit;
  color: var(--accent);
  -webkit-text-stroke: 0.45px currentColor;
}

.cta-section > .container > p:not(.cta-note) {
  font-size: 19px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 44px;
  max-width: 560px;
  margin-inline: auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

.cta-actions .btn-secondary:hover {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 196, 176, 0.35);
}

.cta-form-inline {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  max-width: 540px;
  width: 100%;
  margin: 0 auto 40px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-form-inline input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  font-family: var(--font-body);
  min-width: 0;
}

.cta-form-inline input::placeholder {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  opacity: 1;
}

.cta-form-inline input:focus {
  outline: none;
}

.cta-form-inline input:focus::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.cta-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Contact */
.contact {
  padding: 100px 0;
  background:
    linear-gradient(105deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0.76) 44%, rgba(11, 28, 53, 0.2) 100%),
    url('../images/trendyy1.webp') center / cover no-repeat;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.contact-detail .txt h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.contact-detail .txt a,
.contact-detail .txt span {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--gray-100);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-electric);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 16px;
  text-align: center;
}

.botcheck {
  display: none !important;
}

.contact-form .form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form success / error notice */
.form-notice {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.form-notice.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-notice__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 31, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.form-notice__panel {
  position: relative;
  width: min(100%, 420px);
  padding: 40px 32px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.28s ease;
}

.form-notice.is-visible .form-notice__panel {
  transform: translateY(0) scale(1);
}

.form-notice__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.form-notice--success .form-notice__icon {
  background: rgba(44, 196, 176, 0.16);
  color: var(--blue-electric);
}

.form-notice--error .form-notice__icon {
  background: rgba(196, 68, 68, 0.12);
  color: #b83a3a;
}

.form-notice__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-notice__message {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.form-notice__btn {
  min-width: 140px;
  justify-content: center;
}

/* Get Started page */
.get-started-page {
  position: relative;
  padding: 120px 0 100px;
  background: var(--navy) url('../images/m987.webp') center / cover no-repeat;
  min-height: 100svh;
  isolation: isolate;
}

.get-started-page::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      105deg,
      rgba(24, 28, 31, 0.88) 0%,
      rgba(24, 28, 31, 0.72) 38%,
      rgba(24, 28, 31, 0.4) 62%,
      rgba(24, 28, 31, 0.68) 100%
    ),
    radial-gradient(ellipse 70% 55% at 85% 55%, rgba(24, 28, 31, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(44, 196, 176, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.get-started-page::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(24, 28, 31, 0.38) 0%, transparent 55%),
    linear-gradient(270deg, rgba(24, 28, 31, 0.62) 0%, rgba(24, 28, 31, 0.25) 35%, transparent 58%),
    linear-gradient(0deg, rgba(24, 28, 31, 0.45) 0%, transparent 42%);
  pointer-events: none;
}

.get-started-page > .container {
  position: relative;
  z-index: 1;
}

.get-started-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.get-started-info .section-title {
  margin-bottom: 16px;
  color: var(--white);
}

.get-started-lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 36rem;
}

.get-started-block + .get-started-block {
  margin-top: 32px;
}

.get-started-block__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.get-started-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.get-started-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.get-started-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-electric);
  box-shadow: 0 0 0 3px rgba(44, 196, 176, 0.28);
}

.get-started-list li strong {
  color: var(--accent-light);
  font-weight: 700;
}

.get-started-form {
  position: sticky;
  top: 96px;
}

.form-section-label {
  margin: 8px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}

/* Footer */
footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 280px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--blue-electric);
  color: var(--white);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes videoBorderShine {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(44, 196, 176, 0.55);
  border-radius: 50%;
  background: rgba(24, 28, 31, 0.92);
  color: var(--accent-light);
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(44, 196, 176, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  pointer-events: none;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--navy);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-links {
    gap: 28px;
    transform: translateX(-40px);
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    gap: 40px;
  }

  .comparison-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .comp-header,
  .comp-row {
    min-width: 300px;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
    right: max(20px, env(safe-area-inset-right, 0px));
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .section-title,
  .problem-header h2,
  .cta-section h2 {
    font-size: clamp(38px, 9.5vw, 52px);
  }

  .section-sub {
    font-size: 16px;
  }

  .hero-video {
    display: none;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
    gap: 10px;
  }

  .nav-cta .btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .hero .hero-headline {
    font-size: clamp(58px, 15vw, 84px);
    font-weight: 1000;
    font-variation-settings: 'wght' 1000;
    line-height: 0.95;
    letter-spacing: -0.02em;
  }

  .proven-results {
    bottom: 24px;
    padding: 0 12px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .proven-results__stat {
    padding: 16px 12px;
  }

  .problem-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-width: 0;
  }

  .get-started-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .get-started-form {
    position: static;
  }

  .get-started-page {
    padding: 104px 0 72px;
  }

  .problem-media {
    position: static;
  }

  .problem-media__img {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .pain-cards,
  .problem-actions {
    max-width: none;
  }

  .problem-header h2 {
    max-width: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-float-card {
    bottom: -16px;
    left: -8px;
  }

  .about-big-stat .num {
    font-size: clamp(44px, 12vw, 72px);
  }

  .about-big-stat .txt {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .cta-section {
    background-position: center, 64% 38%;
    padding: 72px 0;
  }

  .cta-section > .container > p:not(.cta-note) {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .contact {
    padding: 72px 0;
  }

  .contact-info,
  .contact-form,
  .contact-detail .txt {
    min-width: 0;
  }

  .contact-info .section-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-info > p,
  .contact-detail .txt a,
  .contact-detail .txt span {
    overflow-wrap: anywhere;
  }

  .why-cta-box {
    margin-top: 24px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
  }

  .back-to-top svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-inner {
    height: 66px;
  }

  .logo {
    gap: 9px;
  }

  nav .logo-mark {
    width: 38px;
    height: 38px;
  }

  nav .logo-text .name {
    font-size: 20px;
  }

  nav .logo-text .sub {
    font-size: 9px;
  }

  .nav-cta .btn-nav {
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 999px;
  }

  .mobile-menu {
    top: 66px;
    padding: 22px 16px 28px;
  }

  .mobile-menu .btn-nav {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .section-title,
  .problem-header h2,
  .cta-section h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 326px;
    justify-content: center;
    white-space: normal;
  }

  .hero-content {
    padding-bottom: 150px;
  }

  .cta-actions {
    margin-bottom: 32px;
  }

  .cta-actions .btn-secondary {
    width: 100%;
    max-width: 326px;
    justify-content: center;
  }

  .cta-form-inline {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 18px;
    gap: 12px;
  }

  .cta-form-inline input {
    width: 100%;
    padding: 8px 4px;
    font-size: 16px;
    text-align: center;
  }

  .cta-form-inline .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-nav {
    min-height: 44px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  .contact-form .form-submit {
    font-size: 14px;
  }

  .contact-detail {
    gap: 12px;
  }

  .contact-detail .icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .problem,
  .services,
  .how-it-works,
  .about,
  .why,
  .testimonials,
  .faq,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .trust-bar {
    padding: 40px 0 28px;
  }
}

@media (min-width: 769px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    right: max(28px, env(safe-area-inset-right, 0px));
    bottom: max(32px, env(safe-area-inset-bottom, 0px));
  }
}
