/* ===================================
   GLOBAL STYLES
   =================================== */

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

:root {
  --primary-900: #0f172a;
  --primary-800: #1e3a8a;
  --primary-700: #2563eb;
  --primary-600: #3b82f6;
  --primary-500: #60a5fa;
  --accent-500: #f97316;
  --accent-400: #fbbf24;
  --success-500: #0ead69;
  --surface-50: #f8fbff;
  --surface-100: #eef4ff;
  --surface-200: #dbeafe;
  --surface-card: #ffffff;
  --surface-muted: rgba(99, 102, 241, 0.08);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.1);
  --shadow-strong: 0 30px 60px rgba(37, 99, 235, 0.18);
  --content-padding: clamp(20px, 4vw, 30px);
  --section-tone-0: #f9fbff;
  --section-tone-1: #f5f8ff;
  --section-tone-2: #eff5ff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(96, 165, 250, 0.22), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.18), transparent 42%),
    linear-gradient(180deg, #f8fbff 0%, #f1f6ff 55%, #ffffff 100%);
  color: var(--primary-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.content-wrapper {
  width: min(1220px, 100%);
  margin-inline: auto;
  padding-inline: var(--content-padding);
  position: relative;
}

.content-wrapper--wide {
  max-width: 1320px;
}

.content-wrapper--narrow {
  max-width: 880px;
}

.section-shell {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.section-shell + .section-shell {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.section-shell + .section-shell::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 28px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(219, 234, 254, 0.24), rgba(219, 234, 254, 0));
}

.section-intro {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-intro h2 {
  color: var(--primary-900);
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-intro p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.why-reviews-section .why-reviews-title {
  color: var(--primary-900);
  margin-bottom: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.why-reviews-section .why-reviews-stat {
  margin-top: 1rem;
  color: #2563eb;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  font-weight: 700;
}

.why-reviews-section .why-reviews-note {
  margin-top: 1rem;
  color: #374151;
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 500;
}

.soft-card {
  background: var(--surface-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  --hero-mx: 0px;
  --hero-my: 0px;
  background:
    radial-gradient(circle at 15% 25%, rgba(96, 165, 250, 0.26), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.2), transparent 42%),
    linear-gradient(180deg, #edf4ff 0%, #f8fbff 62%, #ffffff 100%);
  /* background-size: 400px; */
  /* background-size: 160% 160%, 160% 160%, 100% 100%; */
  /* animation: heroBgShift 16s ease-in-out infinite; */
  position: relative;
  z-index: 2;
  padding-top: clamp(6.8rem, 9.5vw, 8.8rem);
  padding-bottom: clamp(6.4rem, 10vw, 9.2rem);
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
  border-bottom: 2px solid rgba(37, 99, 235, 0.55);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.75);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-section::before {
  inset: 0;
  opacity: 0.82;
  z-index: 0;
  transform: none;
  animation: none;
}

.hero-section::after {
  inset: -20% -10% 150px -10%;
  height: calc(50% - 150px);
  background: radial-gradient(circle at 50% 20%, rgba(147, 197, 253, 0.26), rgba(255, 255, 255, 0) 62%);
  filter: blur(10px);
  z-index: 1;
  animation: heroAuraPulse 8.5s ease-in-out infinite;
}

@keyframes heroBgShift {
  0%,
  100% {
    background-position: 0% 45%, 100% 35%, center;
  }
  50% {
    background-position: 100% 55%, 0% 45%, center;
  }
}

@keyframes heroImageDrift {
  0% {
    transform: scale(1.04) translateY(0);
    filter: saturate(1);
  }
  100% {
    transform: scale(1.1) translateY(-14px);
    filter: saturate(1.08);
  }
}

@keyframes heroLightSweep {
  0% {
    background-position: -130% 10%, center, center top;
  }
  100% {
    background-position: 160% 90%, center, center top;
  }
}

@keyframes heroAuraPulse {
  0%,
  100% {
    opacity: 0.72;
    filter: blur(10px);
  }
  50% {
    opacity: 1;
    filter: blur(15px);
  }
}

.hero-landscape {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 1180px;
  margin-inline: auto;
}

.hero-landscape::before,
.hero-landscape::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}

.hero-landscape::before {
  width: 200px;
  height: 200px;
  left: 12%;
  top: 18%;
  border-radius: 999px;
  border: 1px dashed rgba(59, 130, 246, 0.35);
  animation: orbitRingSlow 16s linear infinite;
}

.hero-landscape::after {
  width: 140px;
  height: 140px;
  right: 12%;
  top: 24%;
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.18);
  animation: orbitRingSlow 12s linear infinite reverse;
}

@keyframes orbitRingSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-landscape > :not(.hero-animated-bg):not(.hero-particles):not(.hero-floating-reviews) {
  position: relative;
  z-index: 3;
}

.hero-content-stack {
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}

.hero-cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(760px, 100%);
  gap: 0.5rem;
  margin-top: 0;
}

.hero-cta-row a {
  width: 100%;
}

.hero-main-btn {
  width: 100%;
  min-width: 0;
}

.hero-proof-points {
  display: grid;
  grid-template-columns: 1fr;
  width: min(760px, 100%);
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.hero-proof-points p {
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  text-align: left;
}

.hero-floating-reviews {
  position: absolute;
  inset: 0;
  padding-top: clamp(4.25rem, 7vw, 5.75rem);
  transform: translate3d(calc(var(--hero-mx) * 0.22), calc(var(--hero-my) * 0.22), 0);
  pointer-events: none;
  z-index: 4;
  transition: transform 0.28s ease-out;
}

.review-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  transform-origin: center;
}

.badge-stars {
  color: #f59e0b;
}

.badge-google {
  color: #1d4ed8;
}

.badge-score {
  color: #0f172a;
}

.hero-floating-reviews .badge-left {
  top: -10%;
  left: 10%;
  margin-top: 0;
  animation: floatPathA 9.5s cubic-bezier(0.4, 0, 0.2, 1) infinite, badgePulse 3.8s ease-in-out infinite, badgeOrbitBob 2.8s ease-in-out infinite;
}

.hero-floating-reviews .badge-right {
  top: 20%;
  right: 10%;
  margin-top: 0;
  animation: floatPathB 8.7s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.4s, badgePulse 3.2s ease-in-out infinite 0.6s, badgeOrbitBob 3.1s ease-in-out infinite 0.45s;
}

.hero-floating-reviews .badge-middle-left {
  top: 30%;
  left: 15%;
  margin-top: 0;
  animation: floatPathC 10.2s cubic-bezier(0.4, 0, 0.2, 1) infinite 0.8s, badgePulse 3.6s ease-in-out infinite 0.25s;
}

.hero-floating-reviews .badge-middle-right {
  top: 60%;
  right: 20%;
  margin-top: 0;
  animation: floatPathD 8.1s cubic-bezier(0.4, 0, 0.2, 1) infinite 1.2s, badgePulse 4s ease-in-out infinite 0.9s;
}

@keyframes floatPathA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(16px, 7px, 0) scale(1.03); }
  50% { transform: translate3d(24px, -8px, 0) scale(0.98); }
  75% { transform: translate3d(8px, -14px, 0) scale(1.02); }
}

@keyframes floatPathB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  30% { transform: translate3d(-14px, -8px, 0) scale(1.02); }
  55% { transform: translate3d(-22px, -16px, 0) scale(0.99); }
  80% { transform: translate3d(-7px, -12px, 0) scale(1.01); }
}

@keyframes floatPathC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  22% { transform: translate3d(-14px, 8px, 0) scale(1.02); }
  47% { transform: translate3d(-22px, -7px, 0) scale(0.98); }
  73% { transform: translate3d(-8px, -12px, 0) scale(1.03); }
}

@keyframes floatPathD {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  28% { transform: translate3d(14px, -10px, 0) scale(1.03); }
  52% { transform: translate3d(22px, -18px, 0) scale(0.98); }
  78% { transform: translate3d(7px, -12px, 0) scale(1.01); }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.18);
    filter: brightness(1.08);
  }
}

@keyframes badgeOrbitBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes floatSideA {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(26px) translateY(10px);
  }
}

@keyframes floatSideB {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-24px) translateY(-10px);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

/* Hero Animated Background */
.hero-animated-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-mx) * 0.28), calc(var(--hero-my) * 0.28), 0);
  transition: transform 0.3s ease-out;
  animation: heroDepthBreath 10s ease-in-out infinite;
}

@keyframes heroDepthBreath {
  0%,
  100% {
    filter: saturate(1) brightness(1);
    opacity: 1;
  }
  50% {
    filter: saturate(1.12) brightness(1.05);
    opacity: 0.96;
  }
}

.hero-gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  animation: heroBlobFloat 22s ease-in-out infinite;
}

.hero-gradient-blob.blob-1 {
  width: 450px;
  height: 450px;
  top: -150px;
  left: -100px;
  background: linear-gradient(135deg, #93c5fd, #bfdbfe);
  animation-delay: 0s;
}

.hero-gradient-blob.blob-2 {
  width: 380px;
  height: 380px;
  top: 30%;
  right: -80px;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  animation-delay: 4s;
}

.hero-gradient-blob.blob-3 {
  width: 320px;
  height: 320px;
  bottom: 5%;
  left: 25%;
  background: linear-gradient(135deg, #bfdbfe, #dbeafe);
  animation-delay: 8s;
}

.hero-gradient-blob.blob-4 {
  width: 280px;
  height: 280px;
  top: 25%;
  right: 30%;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  animation-delay: 2s;
}

.hero-gradient-blob.blob-5 {
  width: 220px;
  height: 220px;
  bottom: 35%;
  right: 15%;
  background: linear-gradient(135deg, #93c5fd, #bfdbfe);
  animation-delay: 6s;
}

@keyframes heroBlobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(60px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-40px, 50px) scale(0.95);
  }
  75% {
    transform: translate(50px, 30px) scale(1.08);
  }
}

/* Hero Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(calc(var(--hero-mx) * 0.4), calc(var(--hero-my) * 0.4), 0);
  transition: transform 0.3s ease-out;
  animation: heroFieldTwinkle 6.5s ease-in-out infinite;
}

@keyframes heroFieldTwinkle {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}

.hero-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.4);
  animation: heroParticleFloat 16s ease-in-out infinite;
}

.hero-particle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  left: -14px;
  top: 2px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0), rgba(96, 165, 250, 0.45));
  border-radius: 999px;
}

.hero-particle.particle-1 { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 13s; }
.hero-particle.particle-2 { top: 40%; left: 75%; animation-delay: 2s; animation-duration: 15s; }
.hero-particle.particle-3 { top: 70%; left: 20%; animation-delay: 4s; animation-duration: 17s; }
.hero-particle.particle-4 { top: 25%; left: 60%; animation-delay: 1s; animation-duration: 14s; }
.hero-particle.particle-5 { top: 65%; left: 80%; animation-delay: 3s; animation-duration: 16s; }
.hero-particle.particle-6 { top: 50%; left: 40%; animation-delay: 5s; animation-duration: 15s; }

@keyframes heroParticleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    transform: translate(80px, -120px) scale(1.4);
    opacity: 0.7;
  }
  85% {
    opacity: 1;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--primary-800);
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.25);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
  animation: heroBadgePopIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) both, heroBadgeGlow 5.5s ease-in-out 1.1s infinite;
}

@keyframes heroBadgePopIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroBadgeGlow {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.16);
  }
  50% {
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
  }
}

.hero-headline {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.15;
  margin: 0;
  color: var(--primary-900);
  background: linear-gradient(120deg, #0f172a 0%, #0f172a 42%, #2563eb 56%, #0f172a 70%, #0f172a 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroHeadlineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both, heroHeadlineShimmer 9s linear 1.1s infinite;
}

.hero-headline-sub {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.52em;
  font-weight: 600;
  line-height: 1.35;
  color: #1e3a8a;
  opacity: 0.92;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #1e3a8a;
}

@keyframes heroHeadlineReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroHeadlineShimmer {
  from {
    background-position: 220% 0;
  }
  to {
    background-position: -40% 0;
  }
}

.hero-lead {
  font-size: 1.15rem;
  color: #475569;
  margin: 0;
  animation: heroLeadFade 0.9s ease 0.18s both;
}

@keyframes heroLeadFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lead-center {
  max-width: 820px;
}

.hero-trust-band {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  width: min(880px, 100%);
}

.avatar-stack {
  display: flex;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.4);
  margin-left: -12px;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.hero-trust-title {
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.15rem;
}

.hero-trust-subtitle {
  font-size: 0.95rem;
  color: #475569;
  margin: 0;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

.hero-benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  font-weight: 600;
  color: var(--primary-700);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.hero-cta-group--center {
  max-width: 720px;
  margin-inline: auto;
}

.hero-primary-link {
  width: 100%;
}

.hero-primary-cta {
  width: 100%;
  border: none;
  border-radius: 1.15rem;
  padding: clamp(1.12rem, 2vw, 1.3rem) clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(135deg, #1548c4 0%, #1c64f2 56%, #3f83f8 100%);
  color: #fff;
  font-size: clamp(1.14rem, 2.4vw, 1.5rem);
  font-weight: 800;
  box-shadow: 0 25px 50px rgba(28, 100, 242, 0.42), 0 0 40px rgba(59, 130, 246, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-primary-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 35px 70px rgba(28, 100, 242, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
  filter: brightness(1.1);
}

.hero-primary-cta:active {
  transform: translateY(-2px) scale(1);
}

.hero-secondary-cta {
  border: 1.5px solid rgba(37, 99, 235, 0.32);
  color: var(--primary-700);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  transition: all 0.22s ease;
}

.hero-secondary-cta:hover {
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
}

.hero-cta-benefits {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.9rem;
  text-align: left;
  margin-top: 0.3rem;
}

.hero-cta-benefits p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
  color: #1e293b;
}

.hero-note {
  font-size: 0.95rem;
  color: #475569;
  font-weight: 600;
}

.hero-card-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  width: 100%;
  margin-top: 2.4rem;
  align-items: stretch;
}

.hero-card-row::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.12), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(14, 165, 233, 0.1), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

.hero-card {
  position: relative;
  border-radius: 1.6rem;
  padding: 1.85rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  background: var(--surface-card);
  border: 1px solid rgba(30, 58, 138, 0.12);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 40%);
  pointer-events: none;
}

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.32);
  box-shadow:
    0 30px 65px rgba(30, 58, 138, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.hero-card--offer {
  background:
    radial-gradient(circle at 15% 15%, rgba(96, 165, 250, 0.24), transparent 42%),
    linear-gradient(135deg, #d9e8ff 0%, #edf4ff 42%, #ffffff 100%);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 26px 56px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.offer-includes {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.offer-includes li {
  display: flex;
  gap: 0.45rem;
  font-weight: 650;
  color: #1f2937;
  line-height: 1.45;
}

.offer-includes li::before {
  content: "✔";
  color: var(--success-500);
  font-weight: 700;
}

.offer-guarantee {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(37, 99, 235, 0.4);
  color: #0f172a;
  font-size: 0.9rem;
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.deadline-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c2410c;
  background: rgba(248, 113, 113, 0.15);
  padding: 0.32rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.offer-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.52rem;
  margin: 0.25rem 0 0.5rem;
  color: #0b1f58;
  line-height: 1.22;
}

.offer-price-stack {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.offer-price-now {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1.08;
}

.offer-old-price {
  font-size: 0.86em;
  color: #94a3b8;
  text-decoration: line-through;
  margin-right: 0.35rem;
  font-weight: 700;
}

.offer-price-caption {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: #475569;
}

.offer-savings-card {
  min-width: 140px;
  background: linear-gradient(135deg, rgba(21, 78, 196, 0.12), rgba(14, 165, 233, 0.16));
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(37, 99, 235, 0.3);
  text-align: center;
}

.offer-savings-card span {
  display: block;
  font-weight: 700;
  color: var(--primary-700);
  font-size: 1.1rem;
}

.offer-savings-card p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: #475569;
}

.offer-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.85rem;
  border-radius: 1.05rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.offer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.offer-cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.92rem 1.2rem;
  background: linear-gradient(135deg, #1548c4 0%, #1c64f2 54%, #3f83f8 100%);
  color: #fff;
  border-radius: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(28, 100, 242, 0.38);
}

.hero-card--metrics {
  background:
    radial-gradient(circle at 80% 18%, rgba(147, 197, 253, 0.2), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #edf4ff 100%);
}

.metrics-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
}

.metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.metrics-filter {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1e3a8a;
  background: rgba(59, 130, 246, 0.12);
  padding: 0.33rem 0.74rem;
  border-radius: 999px;
}

.metrics-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.metrics-chart {
  position: relative;
  height: 128px;
  margin-top: 1rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(21, 78, 196, 0.13), rgba(14, 165, 233, 0.15));
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.18);
}

.chart-grid,
.chart-line,
.chart-pulse {
  position: absolute;
  inset: 0;
}

.chart-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
}

.chart-line {
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.6), transparent 55%),
    radial-gradient(circle at 50% 40%, rgba(14, 165, 233, 0.5), transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(249, 115, 22, 0.4), transparent 50%);
  transform: rotate(-8deg);
  opacity: 0.8;
}

.chart-pulse {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
  top: 20px;
  right: 30px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.metrics-proof-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  color: #1e293b;
  font-weight: 650;
  font-size: 0.93rem;
}

.metrics-proof-list li::before {
  content: '•';
  color: var(--primary-700);
  margin-right: 0.5rem;
}

.metrics-testimonial {
  margin-top: auto;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-size: 0.95rem;
  color: #1f2937;
}

.metrics-testimonial span {
  display: block;
  margin-top: 0.25rem;
  color: #64748b;
  font-weight: 600;
}

.hero-card--capacity {
  background:
    radial-gradient(circle at 0% 100%, rgba(14, 165, 233, 0.13), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
}

.capacity-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.capacity-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e40af;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 999px;
  padding: 0.33rem 0.82rem;
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}

.capacity-slot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.95rem;
}

.capacity-slot strong {
  color: var(--primary-900);
}

.slot-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.hero-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: #1f2937;
}

.hero-card-list li::before {
  content: "✔";
  color: var(--success-500);
  font-weight: 700;
}


.hero-highlight-grid {
  width: min(960px, 100%);
  margin-inline: auto;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.hero-border{
  border-bottom: 2px solid blue;
}



.hero-media-anchor {
  position: absolute;
  left: 50%;
  /* for big like laptop computer device use 5% of bottom:5% */
  /*  */
  bottom: 5%;
  transform: translate(-50%, 58%);
  z-index: 12;
  width: min(820px, calc(100vw - 48px));
  height: clamp(320px, 34vw, 530px);
  max-width: 100%;
  overflow: visible;
}

.hero-offer-floating {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -58%);
  width: min(560px, calc(100% - 2rem));
  z-index: 16;
}

.hero-offer-floating .showcase-panel {
  border-radius: 1rem;
  padding: 0.45rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.hero-offer-floating .showcase-offer-card--minimal {
  width: 100%;
  padding: 0.95rem 1rem;
}

.hero-offer-floating .showcase-offer-kicker {
  font-size: 0.82rem;
}

.hero-offer-floating .showcase-offer-price {
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.hero-offer-floating .showcase-offer-note {
  font-size: 0.78rem;
}

.hero-media-window {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
  transform: none;
}

.hero-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.hero-media-window.is-playing .hero-video-thumb {
  display: none;
}

.hero-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0f172a;
  filter: saturate(1.04) contrast(1.03);
}

.hero-video-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.hero-play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(59, 130, 246, 0.92));
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.3);
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-play-icon svg {
  width: 32px;
  height: 32px;
  margin-left: 3px;
}

.hero-play-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  color: #f8fafc;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(191, 219, 254, 0.25);
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
}

.hero-video-thumb:hover .hero-play-icon {
  transform: translate(-50%, -50%) scale(1.06);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.97), rgba(37, 99, 235, 0.95));
}

.hero-inline-player {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-video-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: none;
  z-index: 3;
}

.hero-video-close:hover {
  background: rgba(15, 23, 42, 0.9);
}

.hero-media-window.is-playing .hero-video-close {
  display: grid;
  place-items: center;
}

.hero-support-copy {
  max-width: 820px;
  margin: 0;
  color: #334155;
  font-size: 1rem;
  font-weight: 600;
  animation: heroLeadFade 1s ease 0.32s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .hero-section::before,
  .hero-section::after,
  .hero-badge,
  .hero-headline,
  .hero-lead,
  .hero-support-copy,
  .hero-floating-reviews .review-badge,
  .hero-animated-bg,
  .hero-particles,
  .hero-particle,
  .hero-showcase-section::before {
    animation: none !important;
    transition: none !important;
  }
}

.hero-showcase-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #f1f6ff 0%, #edf4ff 58%, #f3f8ff 100%);
  padding-top: calc((clamp(320px, 34vw, 530px) / 2) + clamp(2.25rem, 4vw, 3.25rem));
  overflow: hidden;
}

.hero-section + .hero-showcase-section {
  border-top: none;
}

.hero-section + .hero-showcase-section::before {
  top: 0;
  height: 0;
  background: none;
}

.hero-showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.1), transparent 35%),
    radial-gradient(circle at 80% 90%, rgba(14, 165, 233, 0.08), transparent 38%);
  pointer-events: none;
  animation: showcaseBgDrift 14s ease-in-out infinite;
}

.hero-showcase-section .content-wrapper {
  position: relative;
  z-index: 1;
}

.showcase-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(235, 245, 255, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1.75rem;
  padding: clamp(1.2rem, 2.3vw, 2rem);
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(8px);
}

.showcase-panel--minimal {
  display: flex;
  justify-content: center;
}

.showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.9fr);
  gap: 0.95rem;
  align-items: stretch;
}

.showcase-story {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-eyebrow {
  margin: 0;
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.16;
  color: #0f172a;
}

.showcase-description {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: #334155;
}

.showcase-trust-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.92rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(255, 255, 255, 0.92);
}

.showcase-trust-subtitle {
  margin: 0;
  font-size: 0.93rem;
  color: #334155;
  line-height: 1.5;
}

.showcase-offer-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(96, 165, 250, 0.5);
  background: linear-gradient(150deg, #0f3b9f, #1d4ed8 48%, #0c4a6e);
  box-shadow: 0 22px 46px rgba(29, 78, 216, 0.28);
  padding: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.78rem;
}

.showcase-offer-card--minimal {
  width: min(520px, 100%);
  text-align: center;
  padding: 1.25rem 1.1rem;
}

.showcase-offer-kicker {
  margin: 0;
  color: #eff6ff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.45;
}

.showcase-offer-price {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.9vw, 2.25rem);
  font-weight: 800;
  line-height: 1.08;
}

.showcase-offer-price span {
  color: rgba(219, 234, 254, 0.88);
  text-decoration: line-through;
  font-size: 1.08rem;
  margin-right: 0.34rem;
}

.showcase-offer-note {
  margin: 0;
  color: #dbeafe;
  font-size: 0.88rem;
  line-height: 1.4;
}

.showcase-kpi-chip {
  min-width: 0;
  text-align: left;
  border-radius: 0.95rem;
  padding: 0.62rem 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(191, 219, 254, 0.55);
  margin-top: auto;
}

.showcase-kpi-chip strong {
  display: block;
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.1;
}

.showcase-kpi-chip span {
  font-size: 0.74rem;
  color: #dbeafe;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.showcase-highlight-card {
  border-radius: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(145deg, #f8fbff, #edf5ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.showcase-highlight-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: #1d4ed8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-highlight-copy {
  margin: 0.46rem 0 0;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.48;
}

.showcase-primary-link {
  width: 100%;
}

.showcase-offer-card .hero-primary-cta {
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  color: #0f172a;
  border: none;
}

.showcase-benefits-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.showcase-benefits-grid p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  padding: 0.5rem 0.58rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.showcase-fade-1,
.showcase-fade-2,
.showcase-fade-3,
.showcase-fade-4 {
  opacity: 0;
  transform: translateY(18px);
  animation: showcaseRiseIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.showcase-fade-1 {
  animation-delay: 0.08s;
}

.showcase-fade-2 {
  animation-delay: 0.2s;
}

.showcase-fade-3 {
  animation-delay: 0.34s;
}

.showcase-fade-4 {
  animation-delay: 0.48s;
}

.hero-showcase-section .hero-trust-band {
  animation-name: showcaseRiseIn, trustBandFloat;
  animation-duration: 0.75s, 7.5s;
  animation-delay: 0.08s, 1.2s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), ease-in-out;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
}

.hero-showcase-section .hero-cta-group {
  animation-name: showcaseRiseIn, ctaPulseLift;
  animation-duration: 0.75s, 5.8s;
  animation-delay: 0.34s, 2s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), ease-in-out;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
}

.hero-showcase-section .hero-cta-benefits p {
  opacity: 0;
  transform: translateX(-10px);
  animation: benefitSlideIn 0.5s ease forwards;
}

.hero-showcase-section .hero-cta-benefits p:nth-child(1) { animation-delay: 0.55s; }
.hero-showcase-section .hero-cta-benefits p:nth-child(2) { animation-delay: 0.63s; }
.hero-showcase-section .hero-cta-benefits p:nth-child(3) { animation-delay: 0.71s; }
.hero-showcase-section .hero-cta-benefits p:nth-child(4) { animation-delay: 0.79s; }
.hero-showcase-section .hero-cta-benefits p:nth-child(5) { animation-delay: 0.87s; }

@keyframes showcaseRiseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trustBandFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes ctaPulseLift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes benefitSlideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes showcaseBgDrift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.hero-media-window.is-playing .hero-inline-player {
  display: block;
}

.hero-insights-section {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(236, 244, 255, 0.65), rgba(255, 255, 255, 1));
}

.hero-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.insight-card {
  background: #ffffff;
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: "";
  position: absolute;
  left: -20%;
  top: -40px;
  width: 140%;
  height: 120px;
  opacity: 0.3;
  background: radial-gradient(circle at center, rgba(96, 165, 250, 0.5), transparent 66%);
  pointer-events: none;
}

.insight-card h3 {
  margin: 0.35rem 0 0.6rem;
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.35;
}

.insight-pill {
  display: inline-flex;
  margin: 0;
  background: #e0ecff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insight-main {
  font-size: 1.9rem;
  margin: 0.2rem 0 0.45rem;
  color: #0f172a;
  font-weight: 800;
}

.insight-main span {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.insight-sub {
  margin: 0;
  color: #475569;
  line-height: 1.55;
}

.insight-link {
  margin-top: 0.9rem;
  display: inline-block;
  text-decoration: none;
  color: #2563eb;
  font-weight: 700;
}

.insight-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.3rem 0 0.6rem;
}

.insight-stats strong {
  display: block;
  font-size: 1.2rem;
  color: #1d4ed8;
}

.insight-stats span {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
}

.insight-meter {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: #dbeafe;
  overflow: hidden;
  margin: 0.45rem 0 0.6rem;
}

.insight-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.insight-list {
  margin: 0.6rem 0 0;
  padding-left: 1.05rem;
  color: #334155;
}
  .highlight-card {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    border-radius: 1.5rem;
    padding: 1.75rem;
    border: 1.5px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: left;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    animation: highlightCardFadeIn 0.6s ease-out forwards;
    opacity: 0;
  }

  .highlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
    pointer-events: none;
  }

  .highlight-card:hover {
    transform: translateY(-12px);
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 35px 65px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #ecf7ff 0%, #e0eeff 50%, #ecf7ff 100%);
  }

  .highlight-card:hover::before {
    opacity: 1;
  }

  .highlight-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-700);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }

  .highlight-label::before {
    content: "";
    width: 3px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(180deg, #2563eb, #60a5fa);
    transition: height 0.35s ease;
  }

  .highlight-card:hover .highlight-label::before {
    height: 22px;
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.5);
  }

  .highlight-copy {
    font-size: 0.95rem;
    margin: 0;
    color: #475569;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.35s ease;
  }

  .highlight-card:hover .highlight-copy {
    color: #1e293b;
  }

  @keyframes highlightCardFadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-highlight-grid .highlight-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .hero-highlight-grid .highlight-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .hero-highlight-grid .highlight-card:nth-child(3) {
    animation-delay: 0.3s;
  }
.hero-card-footnote {
  font-size: 0.85rem;
  color: #475569;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.hero-stat-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  font-weight: 800;
  color: var(--primary-700);
}

.hero-stat-label {
  margin-top: 0.15rem;
  color: #475569;
  font-weight: 650;
  font-size: 0.85rem;
}

.hero-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hero-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #f97316);
}

.hero-proof-label {
  text-transform: uppercase;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  color: #64748b;
}

.hero-proof-meta {
  font-size: 0.95rem;
  color: #475569;
}

.capacity-calendar {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.calendar-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.76rem 0.92rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.75);
}

.calendar-slot span {
  font-weight: 700;
  color: #1f2937;
}

.calendar-slot.is-live {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(16, 185, 129, 0.08);
}

.calendar-slot.is-waitlist {
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.08);
}

.capacity-hotline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  color: #1f2937;
}

.hero-mini-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.mini-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.mini-value {
  font-size: clamp(1.12rem, 2.3vw, 1.35rem);
  font-weight: 700;
  color: var(--primary-900);
}

.capacity-calendar .mini-value,
.capacity-hotline p,
.calendar-slot span {
  font-size: 0.9rem;
  line-height: 1.35;
}

.calendar-slot .mini-label {
  margin-bottom: 0.16rem;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #9a3412;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.4;
  background: rgba(249, 115, 22, 0.15);
  padding: 0.5rem 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

/* ===================================
   BRAND STRIP & UTILITY SECTIONS
   =================================== */

.brand-strip {
  background: linear-gradient(90deg, rgba(226, 232, 255, 0.8), rgba(255, 255, 255, 0.9));
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.brand-logo-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  padding: 0.95rem 0.7rem 0.8rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.38);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.14);
}

.brand-logo-image {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.brand-logos span {
  font-weight: 600;
  color: #475569;
  font-size: 0.88rem;
}

.section-light {
  background: linear-gradient(180deg, var(--section-tone-1) 0%, var(--section-tone-2) 52%, var(--section-tone-1) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.section-white {
  background: linear-gradient(180deg, var(--section-tone-0) 0%, #f7faff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.section-soft {
  background: linear-gradient(180deg, #f3f8ff 0%, #edf4ff 58%, #f5f9ff 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.gradient-section {
  background: linear-gradient(120deg, #dbeafe 0%, #e0ecff 40%, #f5f3ff 70%, #fdfcff 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.gradient-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(96, 165, 250, 0.05), rgba(96, 165, 250, 0.02));
  pointer-events: none;
}

/* ===================================
   BUTTONS & BADGES
   =================================== */

.premium-btn {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  position: relative;
  overflow: hidden;
}

.premium-btn:hover {
  box-shadow: var(--shadow-strong), 0 0 30px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}

.premium-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.premium-btn:hover::before {
  transform: translateX(100%);
}

.outline-btn {
  border: 2px solid rgba(37, 99, 235, 0.4);
  color: var(--primary-700);
  background: transparent;
  transition: all 0.25s ease;
}

.outline-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}

/* ===================================
   FEATURE & TESTIMONIAL CARDS
   =================================== */

.feature-card,
.testimonial-card,
.pricing-card {
  background: var(--surface-card);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.2);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 18%,
    rgba(147, 197, 253, 0.24) 50%,
    rgba(255, 255, 255, 0) 82%
  );
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
}

.pricing-card:hover::before {
  transform: translateX(130%);
  opacity: 1;
}

.pricing-card:hover {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 34px 78px rgba(37, 99, 235, 0.2);
}

.pricing-card:hover .pricing-plan-name {
  color: #1d4ed8;
}

.pricing-card:hover .pricing-features li {
  color: #334155;
  transform: translateX(2px);
}

.pricing-card .pricing-features li {
  transition: color 220ms ease, transform 220ms ease;
}

.pricing-card:hover .pricing-btn {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.24);
}

.pricing-card.popular {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: var(--shadow-strong), 0 0 40px rgba(59, 130, 246, 0.2);
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(219, 234, 254, 0.2));
  overflow: visible;
  padding-top: 3.1rem;
}

.pricing-card.popular:hover {
  box-shadow: var(--shadow-strong), 0 0 60px rgba(59, 130, 246, 0.3);
  transform: translateY(-12px) scale(1.025);
}

@media (hover: none) {
  .pricing-card::before,
  .pricing-card:hover::before {
    opacity: 0;
    transform: translateX(-130%);
  }

  .pricing-card:hover .pricing-features li,
  .pricing-card:hover .pricing-btn {
    transform: none;
  }
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  width: min(320px, calc(100% - 2.2rem));
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
  letter-spacing: 0.5px;
  white-space: normal;
  line-height: 1.25;
  z-index: 4;
}

.pricing-plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-900);
}

.pricing-plan-desc,
.pricing-included,
.pricing-onetime {
  color: #475569;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.pricing-price .dollar {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-900);
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-700);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
}

.pricing-features .check-icon,
.pricing-features .cross-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-features .check-icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-500);
}

.pricing-features .cross-icon {
  background: rgba(148, 163, 184, 0.3);
  color: #64748b;
}

.pricing-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid rgba(37, 99, 235, 0.4);
  background: transparent;
  color: var(--primary-700);
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-btn.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: none;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.35);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.2);
}

/* ===================================
   ACCORDION / FAQ
   =================================== */

.accordion-btn {
  width: 100%;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary-900);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-btn:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(96, 165, 250, 0.02));
  transform: translateY(-2px);
}

.accordion-btn.open {
  border-color: rgba(37, 99, 235, 0.7);
  background: linear-gradient(135deg, #ffffff, rgba(219, 234, 254, 0.3));
}

.accordion-icon {
  font-size: 1.25rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--primary-600);
}

.accordion-btn.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(219, 234, 254, 0.3);
  border-left: 2px solid rgba(37, 99, 235, 0.3);
  border-right: 2px solid rgba(37, 99, 235, 0.3);
  border-bottom: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 0 0 1rem 1rem;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}

.accordion-content.open {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 1.25rem 1.25rem;
}

.accordion-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================
   VIDEO MODAL
   =================================== */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-container {
  width: 92%;
  max-width: 900px;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.35);
}

/* ===================================
   NAVIGATION & MOBILE MENU
   =================================== */

nav {
  position: relative;
  padding: 1rem 0;
  background: transparent;
  border-bottom: none;
  transition: padding 0.3s ease;
}

.nav-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

nav.sticky-active {
  padding: 0.65rem 0;
}

nav.sticky-active .nav-container {
  box-shadow: 0 28px 60px rgba(59, 130, 246, 0.25);
  transform: translateY(-4px);
}

.nav-bg-pattern {
  opacity: 0;
}

.desktop-menu a {
  color: #475569;
  font-weight: 500;
  transition: color 0.2s ease;
}

.desktop-menu a:hover {
  color: var(--primary-700);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  width: 1.5rem;
}

.hamburger span {
  width: 100%;
  height: 0.2rem;
  background: var(--primary-900);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 4px 0 25px rgba(15, 23, 42, 0.08);
  transition: left 0.3s ease;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ===================================
   LOGO / BRANDING
   =================================== */

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(120deg, #1d4ed8, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   ANIMATIONS & MEDIA QUERIES
   =================================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.fade-in-up.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.fade-in-left.visible {
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

.fade-in-right.visible {
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

@media (max-width: 992px) {
  .hero-floating-reviews {
    padding-top: 2.75rem;
  }

  .hero-floating-reviews .badge-middle-left,
  .hero-floating-reviews .badge-middle-right {
    display: none;
  }

  .hero-floating-reviews .badge-left {
    top: 10%;
    left: 2%;
  }

  .hero-floating-reviews .badge-right {
    top: 14%;
    right: 2%;
  }

  .hero-media-anchor {
    height: clamp(480px, 42vw, 560px);
    width: min(760px, calc(100vw - 32px));
    top: 73%;
    transform: translate(-50%, 56%);
  }

  .hero-offer-floating {
    width: min(520px, calc(100% - 1.5rem));
    transform: translate(-50%, -54%);
  }

  .hero-showcase-section {
    padding-top: calc((clamp(210px, 40vw, 320px) / 2) + 2.25rem);
    margin-top: 1rem;
  }

  .hero-media-window {
    transform: none;
  }

  .hero-insights-grid {
    grid-template-columns: 1fr;
  }

  .showcase-split {
    grid-template-columns: 1fr;
  }

  .showcase-trust-row {
    align-items: flex-start;
    text-align: left;
  }

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

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

  .hero-media-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card-row,
  .feature-card,
  .pricing-card,
  .testimonial-card {
    text-align: left;
  }

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

  .hero-card--offer {
    grid-column: 1 / -1;
  }

  .offer-value-grid,
  .metrics-scoreboard,
  .capacity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-media-anchor {
    height: clamp(220px, 52vw, 310px);
    width: min(100%, calc(100vw - 26px));
    bottom: -3%;
    transform: translate(-50%, 54%);
  }

  .hero-offer-floating {
    width: calc(100% - 0.85rem);
    transform: translate(-50%, -66%);
  }

  .hero-offer-floating .showcase-panel {
    padding: 0.32rem;
    border-radius: 0.9rem;
  }

  .hero-offer-floating .showcase-offer-card--minimal {
    padding: 0.72rem 0.8rem;
    border-radius: 0.9rem;
  }

  .hero-offer-floating .showcase-offer-kicker {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-offer-floating .showcase-offer-price {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .hero-offer-floating .showcase-offer-note {
    font-size: 0.68rem;
  }

  .section-shell {
    padding-block: clamp(2.5rem, 9vw, 4rem);
  }

  .section-intro p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .content-wrapper {
    padding-inline: clamp(20px, 6vw, 28px);
  }

  /* ===== HERO SECTION MOBILE OPTIMIZATIONS (PHONE ONLY) ===== */
  @media (max-width: 480px) {
    .hero-section {
      padding-top: clamp(7.05rem, 13vw, 7.6rem);
      padding-bottom: clamp(1rem, 3vw, 1.5rem);
      margin-bottom: -5rem;
    }

    .hero-headline {
      font-size: clamp(1.5rem, 4vw, 2rem);
      margin-bottom: 0;
    }

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


    @media (min-width: 300px) and (max-width: 768px) {
    .hero-section {
      padding-top: clamp(7.2rem, 12vw, 8rem);
      padding-bottom: clamp(2.4rem, 6vw, 4rem);
    }
  }

  .hero-headline {
    font-size: clamp(1.625rem, 4.5vw, 2.25rem);
    margin-bottom: 0.875rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.95rem;
    margin-bottom: 0.95rem;
  }

  .hero-support-copy {
    margin-bottom: 0.15rem;
  }

  .hero-content-stack {
    gap: 0.5rem;
  }

  .hero-cta-row {
    gap: 0.5rem;
  }

  .hero-main-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-proof-points {
    gap: 0.45rem;
    padding: 0.65rem 0.8rem;
  }

  .hero-proof-points p {
    width: auto;
    text-align: left;
    padding: 0;
    font-size: 0.88rem;
  }

  .hero-landscape {
    margin-bottom: 1.5rem;
  }

  nav {
    padding: 0.75rem 0;
  }

  .nav-container {
    border-radius: 1.5rem;
    padding: 0.75rem 1rem;
  }

  .hero-trust-band {
    flex-direction: column;
    text-align: center;
  }

  .avatar-stack {
    justify-content: center;
  }

  .hero-highlight-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    border-radius: 1.15rem;
    padding: 0.95rem;
  }

  .showcase-split {
    gap: 0.75rem;
  }

  .showcase-trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-offer-card {
    padding: 0.9rem;
  }

  .showcase-benefits-grid {
    grid-template-columns: 1fr;
  }

  .showcase-highlight-row {
    grid-template-columns: 1fr;
  }

  .hero-floating-reviews {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 0;
  }

  .hero-floating-reviews .badge-left {
    top: 5%;
    left: 3%;
    opacity: 0.5;
    transform: scale(0.6);
  }

  .hero-floating-reviews .badge-right {
    top: 12%;
    right: 3%;
    opacity: 0.5;
    transform: scale(0.6);
  }

  .hero-floating-reviews .badge-middle-left,
  .hero-floating-reviews .badge-middle-right {
    display: none;
  }

  /* .hero-media-anchor {
    height: clamp(180px, 52vw, 240px);
    width: min(100%, calc(100vw - 24px));
    transform: translate(-50%, 50%);
  } */

  .hero-showcase-section {
    padding-top: calc((clamp(180px, 52vw, 240px) / 2) - 2rem);
    margin-top: -5rem;
  }

  .showcase-highlight-label {
    font-size: 0.88rem;
  }

  .showcase-benefits-grid p {
    font-size: 0.9rem;
    line-height: 1.45;
    padding: 0.58rem 0.75rem;
  }

  .insight-pill {
    font-size: 0.82rem;
    padding: 0.34rem 0.74rem;
  }

  .insight-stats span {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-media-window {
    border-radius: 1.1rem;
    transform: none;
  }

  .hero-play-icon {
    width: 62px;
    height: 62px;
  }

  .hero-play-icon svg {
    width: 28px;
    height: 28px;
  }

  .hero-play-label {
    font-size: 0.9rem;
    padding: 0.34rem 0.66rem;
  }

  .hero-inline-video {
    height: 250px;
  }

  .hero-media-overlay {
    padding: 0.8rem 0.9rem;
    gap: 0.65rem;
  }

  .hero-video-launch {
    width: 100%;
  }

  .insight-stats {
    grid-template-columns: 1fr;
  }

  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    border-radius: 0.75rem;
    -webkit-tap-highlight-color: transparent;
  }

  .hamburger span {
    width: 24px;
    height: 0.18rem;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 1rem;
    padding-block: 0.25rem;
  }

  nav .logo-container {
    min-height: 44px;
  }

  nav a[href="#hero"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  #closeMobileMenu {
    min-width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
  }

  .mobile-menu .premium-btn {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .accordion-btn {
    min-height: 54px;
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.95rem 1rem;
  }

  .accordion-content p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .insight-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 0.2rem;
  }

  footer ul a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.98rem;
    padding-inline: 0.4rem;
  }

  footer p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .scroll-to-top {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
  }

  .hero-card-row {
    grid-template-columns: 1fr;
  }

  .hero-cta-benefits {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card--offer,
  .hero-card--metrics,
  .hero-card--capacity {
    grid-column: auto;
    padding: 1.45rem;
  }

  .offer-value-grid,
  .metrics-scoreboard,
  .capacity-grid {
    grid-template-columns: 1fr;
  }

  .hero-benefit-chip {
    width: 100%;
    justify-content: center;
  }
}
