/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #000000;
  --color-surface: rgba(255, 255, 255, 0.05);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.8);
  --color-text-dim: rgba(255, 255, 255, 0.6);
  --color-green: #8DF504;
  --accent: #8DF504;
  --color-brand-dark: #011F27;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --header-height: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input {
  font-family: inherit;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: skewX(-12deg) translateX(-200%);
  }
  100% {
    transform: skewX(-12deg) translateX(200%);
  }
}

@keyframes shinyText {
  0%, 90%, 100% {
    background-position: calc(-100% - var(--shiny-width)) 0;
  }
  30%, 60% {
    background-position: calc(100% + var(--shiny-width)) 0;
  }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--delay, 0s);
}

.animate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-text);
  color: var(--color-bg);
  padding: 12px 28px;
}

.btn--primary:hover {
  background: #e5e5e5;
  transform: scale(1.02);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--outline {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--color-text);
  padding: 12px 28px;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

/* Shimmer effect */
.btn--shimmer::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-12deg) translateX(-200%);
  pointer-events: none;
}

.btn--shimmer:hover::after {
  animation: shimmer 0.8s ease-out;
}

/* ============================================
   SHINY CTA BUTTON
   ============================================ */
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

@keyframes gradient-angle {
  to { --gradient-angle: 360deg; }
}

@keyframes shiny-shimmer {
  to { rotate: 360deg; }
}

@keyframes breathe {
  from, to { scale: 1; }
  50% { scale: 1.2; }
}

.shiny-cta {
  --shiny-cta-bg: #011F27;
  --shiny-cta-bg-subtle: #1C4550;
  --shiny-cta-fg: #8DF504;
  --shiny-cta-highlight: #8DF504;
  --shiny-cta-highlight-subtle: #A8F957;
  --shiny-animation: gradient-angle linear infinite;
  --shiny-duration: 3s;
  --shadow-size: 2px;
  --shiny-transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);

  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-family);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg)) padding-box,
    conic-gradient(
      from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
      transparent,
      var(--shiny-cta-highlight) var(--gradient-percent),
      var(--gradient-shine) calc(var(--gradient-percent) * 2),
      var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
      transparent calc(var(--gradient-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 0 0 1px var(--shiny-cta-bg-subtle),
    0 0 20px rgba(141, 245, 4, 0.15),
    0 0 60px rgba(141, 245, 4, 0.05);
  transition: var(--shiny-transition);
  transition-property: --gradient-angle-offset, --gradient-percent, --gradient-shine, box-shadow;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta > span::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.shiny-cta:active {
  translate: 0 1px;
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
    circle at var(--position) var(--position),
    white calc(var(--position) / 4),
    transparent 0
  ) padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta > span {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shiny-cta > span::before {
  --size: calc(100% + 1rem);
  width: var(--size);
  height: var(--size);
  box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
  opacity: 0;
  transition: opacity var(--shiny-transition);
  animation: calc(var(--shiny-duration) * 1.5) breathe linear infinite;
}

/* Animate */
.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
  animation: var(--shiny-animation) var(--shiny-duration),
    var(--shiny-animation) calc(var(--shiny-duration) / 0.4) reverse paused;
  animation-composition: add;
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
  box-shadow:
    inset 0 0 0 1px var(--shiny-cta-bg-subtle),
    0 0 30px rgba(141, 245, 4, 0.3),
    0 0 80px rgba(141, 245, 4, 0.1);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
  animation-play-state: running;
}

.shiny-cta:is(:hover, :focus-visible) > span::before {
  opacity: 1;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.3s ease, transform 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
}

/* Glassmorphic Nav Pills */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  padding: 4px;
}

.header__nav-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.header__nav-link:hover {
  color: var(--color-text);
  background: rgba(141, 245, 4, 0.06);
}

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta {
  display: none;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-switcher__btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.lang-switcher__btn:hover {
  color: var(--color-text-muted);
}

.lang-switcher__btn--active {
  color: var(--color-text);
  background: var(--color-surface);
}

.lang-switcher__divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.header__nav.open {
  display: flex;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: #000000;
  flex-direction: column;
  padding: 40px 24px;
  z-index: 998;
  overflow-y: auto;
}

/* Make header solid and visible when menu is open */
.header:has(.header__nav.open) {
  background: #000000;
  transform: none !important;
}

.header__nav.open .header__nav-list {
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  align-items: flex-start;
}

.header__nav.open .header__nav-link {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  padding: 14px 0;
  border-radius: 0;
}

/* Mobile extras inside nav */
.header__mobile-extras {
  display: none;
}

.header__nav.open .header__mobile-extras {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  align-items: flex-start;
}

.header__mobile-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
}

/* Desktop-only lang switcher */
.lang-switcher--desktop {
  display: none;
}

.lang-switcher--mobile {
  display: flex;
  gap: 8px;
}

.lang-switcher--mobile .lang-switcher__btn {
  font-size: 16px;
  padding: 10px 20px;
  min-width: 56px;
  min-height: 44px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.lang-switcher--mobile .lang-switcher__btn--active {
  background: var(--color-surface);
  border-color: rgba(141, 245, 4, 0.2);
  color: var(--color-text);
}

.lang-switcher--mobile .lang-switcher__divider {
  font-size: 16px;
  align-self: center;
}

/* Desktop */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__burger {
    display: none;
  }

  .lang-switcher--desktop {
    display: flex;
  }

  .header__mobile-extras {
    display: none !important;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--color-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Wave background */
.hero__waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 30%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

/* Hero content — centered */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(800px, 100%);
  margin: 0 auto;
  gap: 24px;
}

/* Badge — shiny text */
.hero__badge {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid rgba(141, 245, 4, 0.25);
  background: linear-gradient(135deg, rgba(141, 245, 4, 0.08) 0%, rgba(1, 31, 39, 0.9) 50%, rgba(141, 245, 4, 0.05) 100%);
  padding: 8px 16px 8px 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(141, 245, 4, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 200ms ease-out;
  transform-style: preserve-3d;
  perspective: 700px;
  overflow: hidden;
  cursor: default;
}

.hero__badge-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(141, 245, 4, 0.07) 35%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(141, 245, 4, 0.07) 45%,
    transparent 60%
  );
  background-size: 250% 100%;
  animation: badgeShimmer 6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes badgeShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -50% 0; }
}

.hero__badge-wp {
  flex-shrink: 0;
  opacity: 0.9;
  width: 24px;
  height: 24px;
}

.hero__badge-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .hero__badge {
    padding: 12px 24px 12px 16px;
    gap: 12px;
  }
  .hero__badge-wp {
    width: 32px;
    height: 32px;
  }
  .hero__badge-text {
    font-size: 14px;
  }
}

/* Title */
.hero__title {
  font-size: clamp(28px, 5.5vw, 68px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(to right, #ffffff, #c8c8c8, rgba(141, 245, 4, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* CTA group */
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}

@media (min-width: 640px) {
  .hero__cta-group {
    flex-direction: row;
  }
}

/* Hero features list */
.hero__features {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  width: 100%;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.hero__feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 640px) {
  .hero__features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
    max-width: 600px;
    justify-content: center;
  }

  .hero__feature {
    font-size: 14px;
  }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }
}

/* ============================================
   PLAN SECTION
   ============================================ */
.plan__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.plan__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.plan__desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 540px;
}

@media (min-width: 1024px) {
  .plan__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .plan__text {
    text-align: left;
  }
}

/* Who card (right column) */
.plan__who-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 32px;
}

.plan__who-label {
  font-size: 0.875rem;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.plan__who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan__who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.plan__who-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   BARRIERS SECTION (Baymard)
   ============================================ */
.barriers__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.barriers__header {
  text-align: center;
}



.barriers__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* Bento grid */
.barriers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

@media (min-width: 768px) {
  .barriers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Bento card */
.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 -20px 80px -20px rgba(255, 255, 255, 0.06) inset;
  min-height: 180px;
}

.bento-card__gradient {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bento-card__gradient-blur {
  position: absolute;
  inset: 0;
  filter: blur(60px);
  overflow: clip;
  contain: paint;
}

.bento-card__gradient-blur svg {
  position: absolute;
  animation: bgGradientMove var(--bg-speed, 20s) cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.bento-card__gradient-blur svg circle {
  opacity: 0.15;
}

@keyframes bgGradientMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(calc(100% * var(--tx-1, 0.5)), calc(100% * var(--ty-1, -0.5)));
  }
  40% {
    transform: translate(calc(100% * var(--tx-2, -0.5)), calc(100% * var(--ty-2, 0.5)));
  }
  60% {
    transform: translate(calc(100% * var(--tx-3, 0.5)), calc(100% * var(--ty-3, -0.3)));
  }
  80% {
    transform: translate(calc(100% * var(--tx-4, -0.3)), calc(100% * var(--ty-4, -0.5)));
  }
}

.bento-card__content {
  position: relative;
  z-index: 10;
  padding: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-card__stat {
  display: block;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 0 40px rgba(141, 245, 4, 0.08);
  margin-bottom: 12px;
}

.bento-card__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 400px;
}

/* ============================================
   RESCUE SECTION
   ============================================ */
.rescue__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.rescue__title {
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 100%;
  margin-bottom: 16px;
}

.rescue__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

@media (min-width: 768px) {
  .rescue__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Rescue Card — grid-background style */
.rescue-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.rescue-card:hover {
  border-color: rgba(141, 245, 4, 0.2);
}

/* Visual area with grid pattern */
.rescue-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .rescue-card__visual { min-height: 200px; }
}

/* Grid background pattern */
.rescue-card__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 60%, transparent 100%);
}

/* Centered icon box */
.rescue-card__icon-box {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(141, 245, 4, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.rescue-card:hover .rescue-card__icon-box {
  background: rgba(141, 245, 4, 0.1);
  box-shadow: 0 0 24px rgba(141, 245, 4, 0.1);
}

/* Text body */
.rescue-card__body {
  padding: 20px 16px 24px;
}

@media (min-width: 640px) {
  .rescue-card__body { padding: 24px 24px 28px; }
}

.rescue-card__title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  text-align: left;
  margin-bottom: 10px;
}

.rescue-card__desc {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--color-text-muted);
  line-height: 1.65;
  text-align: left;
}

/* ============================================
   CTR PROBLEMS SECTION
   ============================================ */
.scenarios__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.scenarios__title {
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 16px;
}

/* Bento Grid */
.scenarios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

@media (min-width: 1024px) {
  .scenarios__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Scenario Card */
.scenario-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: 0 -20px 80px -20px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  padding: 20px 14px 14px;
}

@media (min-width: 640px) {
  .scenario-card { padding: 32px 24px 24px; }
}

.scenario-card__anim {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .scenario-card__anim { min-height: 160px; margin-bottom: 20px; }
}

.scenario-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.4;
  text-align: left;
}

@media (min-width: 640px) {
  .scenario-card__title { font-size: 15px; line-height: 1.5; }
}

/* --- Anim 1: Refresh / Plugin update --- */
.anim-refresh {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-refresh__icon {
  animation: refreshSpin 4s ease-in-out infinite;
}

@keyframes refreshSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

@keyframes puzzleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-6px) scale(1.1); opacity: 0.7; }
}

/* --- Anim 2: Shield scan --- */
.anim-scan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-scan__shield {
  position: relative;
  z-index: 1;
}

.anim-scan__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(141,245,4,0.6), transparent);
  border-radius: 2px;
  animation: scanMove 2.5s ease-in-out infinite;
  z-index: 2;
}

.anim-scan__check {
  position: absolute;
  z-index: 3;
  opacity: 0;
  animation: checkAppear 2.5s ease-in-out infinite;
}

@keyframes scanMove {
  0% { top: 8px; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 40px; opacity: 1; }
  60% { opacity: 0; }
  100% { top: 40px; opacity: 0; }
}

@keyframes checkAppear {
  0%, 55% { opacity: 0; transform: scale(0.5); }
  70% { opacity: 1; transform: scale(1.1); }
  80%, 100% { opacity: 1; transform: scale(1); }
}

/* --- Anim 3: Traffic bars --- */
.anim-traffic {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  position: relative;
}

.anim-traffic__bar {
  width: 18px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  border: 1px solid var(--color, rgba(255,255,255,0.4));
  border-bottom: none;
  animation: trafficPulse 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  height: var(--h);
}

@keyframes trafficPulse {
  0%, 100% { height: var(--h); }
  50% { height: calc(var(--h) * 1.15); }
}

@keyframes arrowBounce {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(2px, -4px); opacity: 1; }
}

/* --- Anim 4: Recovery clock --- */
.anim-recovery {
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-recovery__icon {
  animation: recoverPulse 3s ease-in-out infinite;
}

@keyframes recoverPulse {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(0.9) rotate(-10deg); }
  60% { transform: scale(1.05) rotate(0deg); }
}

/* ============================================
   RESULTS SECTION (Features grid)
   ============================================ */
.results__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.results__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  text-align: center;
}

/* Grid with dividers — adapted from React Features component */
.results__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.results__item {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}

.results__item:hover {
  background: rgba(141, 245, 4, 0.02);
}

/* Divider logic: vertical line between left/right columns */
@media (min-width: 640px) {
  .results__item {
    padding: 32px 28px;
  }

  .results__item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  /* Remove bottom border from last row */
  .results__item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* On mobile: remove bottom border from last item */
@media (max-width: 639px) {
  .results__item:last-child {
    border-bottom: none;
  }
}

.results__item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.results__item-header svg {
  flex-shrink: 0;
}

.results__item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .results__item-title { font-size: 15px; }
}

.results__item-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

@media (min-width: 640px) {
  .results__item-desc { font-size: 14px; }
}

/* ============================================
   PRICING + STEPS SECTION
   ============================================ */
.pricing-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .pricing-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  /* Steps left, pricing right */
  .pricing-card { order: 2; }
  .pricing-steps { order: 1; }
}

/* --- Pricing Card (left) --- */
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 100px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .pricing-card { padding: 40px 32px; }
}

@media (max-width: 1023px) {
  .pricing-card { position: static; }
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.pricing-card__subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* --- Pricing Switch --- */
.pricing-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 360px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  gap: 0;
}

.pricing-switch__btn {
  position: relative;
  z-index: 2;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-radius: 360px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

@media (min-width: 640px) {
  .pricing-switch__btn { padding: 12px 16px; font-size: 14px; }
}

.pricing-switch__btn--active {
  color: #011F27 !important;
  font-weight: 600;
}

.pricing-switch__btn--active .pricing-badge {
  background: rgba(1, 31, 39, 0.25);
  color: #011F27;
}

/* Discount badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 360px;
  background: rgba(141, 245, 4, 0.12);
  color: var(--accent);
  letter-spacing: 0.3px;
  line-height: 1.4;
  vertical-align: middle;
  margin-left: 2px;
}

@media (min-width: 640px) {
  .pricing-badge { font-size: 11px; padding: 2px 8px; }
}

.pricing-switch__indicator {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(33.333% - 4px);
  border-radius: 360px;
  background: var(--accent);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* --- Price Display --- */
.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-price__main {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.pricing-price__currency {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-text);
}

.pricing-price__amount {
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--color-text);
  line-height: 1;
  transition: opacity 0.15s ease;
}

.pricing-price__period {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pricing-price__note {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  min-height: 40px;
}

.pricing-price__note--savings {
  color: var(--accent);
}

/* CTA in pricing card */
.pricing-card__cta {
  align-self: stretch;
  text-align: center;
}

@media (min-width: 640px) {
  .pricing-card__cta {
    align-self: flex-start;
  }
}

/* --- Steps (right) --- */
.pricing-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pricing-steps {
    padding-top: 40px;
  }
}

.pricing-steps__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.pricing-steps__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.pricing-steps__item strong {
  color: var(--color-text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.pricing-steps__item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.pricing-steps__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(141, 245, 4, 0.08);
  border: 1px solid rgba(141, 245, 4, 0.15);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 48px;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FAQ Item */
.faq__item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item--open {
  border-color: rgba(141, 245, 4, 0.15);
}

/* Question */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq__item--open .faq__question {
  color: var(--color-text);
}

/* Toggle icon */
.faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.faq__item--open .faq__toggle {
  border-color: rgba(141, 245, 4, 0.4);
}

.faq__plus {
  position: relative;
  width: 12px;
  height: 12px;
}

.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq__plus::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq__plus::after {
  width: 1.5px;
  height: 12px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq__item--open .faq__plus::before {
  background: var(--color-green);
}

.faq__item--open .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* Answer */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq__item--open .faq__answer {
  max-height: 1000px;
}

.faq__answer-inner {
  padding: 0 24px 24px;
}

.faq__answer-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.faq__answer-inner strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================
   CONTACT FORM (Hero style)
   ============================================ */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}

@media (min-width: 1024px) {
  .contact-hero {
    min-height: 100vh;
  }
}

.contact-hero__waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 30%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}

.contact-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .contact-hero__title span {
    white-space: nowrap;
  }
}

.contact-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
}

.contact-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Form */
.contact-hero__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin-top: 16px;
}

.contact-hero__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.contact-hero__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

.contact-hero__input {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  outline: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-hero__input:focus {
  border-color: rgba(141, 245, 4, 0.3);
  box-shadow: 0 0 0 3px rgba(141, 245, 4, 0.05);
}

.contact-hero__input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-hero__input.success {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(141, 245, 4, 0.06);
}

/* Validation message */
.contact-hero__msg {
  display: none;
  font-size: 13px;
  padding-left: 16px;
  margin-top: 4px;
}

.contact-hero__msg--error {
  display: block;
  color: #ef4444;
}

.contact-hero__msg--success {
  display: block;
  color: var(--color-green);
}

.contact-hero__submit {
  margin-top: 8px;
  width: 100%;
  display: flex;
}

/* Success */
.contact-hero__success {
  padding: 48px 24px;
  text-align: center;
}

.contact-hero__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(141, 245, 4, 0.1);
  margin-bottom: 20px;
}

.contact-hero__success-icon svg {
  color: var(--color-green);
}

.contact-hero__success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-hero__success-text {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
  background: var(--color-bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-text);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer__contacts {
    flex-direction: row;
    gap: 24px;
  }
}

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 60%, transparent);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.sticky-cta--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .sticky-cta__btn {
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  text-align: center;
}

/* Hide on desktop — optional, can keep */
@media (min-width: 1024px) {
  .sticky-cta {
    display: none;
  }
}
