/* ============================================
   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;
  --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;
  bottom: 0;
  background: #000000;
  flex-direction: column;
  padding: 40px 24px;
  z-index: 998;
  overflow-y: auto;
}

/* Make header solid when menu is open */
.header:has(.header__nav.open) {
  background: #000000;
}

.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 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 8px 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 14px;
  font-weight: 500;
}

.hero__badge-icon {
  flex-shrink: 0;
  color: var(--color-green);
  opacity: 0.7;
}

.hero__badge-text {
  --shiny-width: 100px;
  color: rgba(255, 255, 255, 0.5);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  background-repeat: no-repeat;
  background-size: var(--shiny-width) 100%;
  background-position: calc(-100% - var(--shiny-width)) 0;
  animation: shinyText 8s infinite;
}

/* 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;
  }
}

/* Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 500px;
  width: 100%;
  margin-top: 24px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  text-shadow: 0 0 30px rgba(141, 245, 4, 0.1);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--color-text-dim);
}

/* ============================================
   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;
  }
}

/* Animated Card */
.anim-card {
  max-width: 420px;
  width: 100%;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: left;
}

/* Icons area */
.anim-card__icons-area {
  position: relative;
  height: 240px;
  border-radius: 12px;
  background: transparent;
  mask-image: radial-gradient(50% 50% at 50% 50%, white 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(50% 50% at 50% 50%, white 0%, transparent 100%);
  margin-bottom: 20px;
  overflow: hidden;
}

.anim-card__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 32px;
}

.anim-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(248, 248, 248, 0.01);
  box-shadow:
    0px 0px 8px 0px rgba(248, 248, 248, 0.25) inset,
    0px 32px 24px -16px rgba(0, 0, 0, 0.4);
  color: var(--color-text);
  flex-shrink: 0;
}

.anim-card__icon--sm {
  width: 32px;
  height: 32px;
}

.anim-card__icon--md {
  width: 48px;
  height: 48px;
}

.anim-card__icon--lg {
  width: 64px;
  height: 64px;
}

/* Sparkle line — vertical cyan gradient moving horizontally */
.anim-card__sparkle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(141, 245, 4, 0.4), transparent);
  animation: sparkleLineMove 5s linear infinite;
  z-index: 40;
}

@keyframes sparkleLineMove {
  0% { transform: translate(calc(-50% - 200px), -50%); }
  100% { transform: translate(calc(-50% + 200px), -50%); }
}

.anim-card__sparkles {
  position: absolute;
  width: 40px;
  height: 128px;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.anim-card__sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
}

/* Card text */
.anim-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-green);
  line-height: 1.5;
  margin-bottom: 8px;
}

.anim-card__desc {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .anim-card__icons-area {
    height: 240px;
  }
}

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

.barriers__header {
  text-align: center;
}

.barriers__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.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(3, 1fr);
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .bento-card--full {
    grid-column: span 3;
  }
}

/* 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);
}

.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;
}

.bento-card__highlight {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   RESCUE SECTION
   ============================================ */
.rescue__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: 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%;
}

.rescue__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--color-text-dim);
  margin-bottom: 32px;
}

.rescue__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

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

/* Rescue Card */
.rescue-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) {
  .rescue-card { padding: 32px 24px 24px; }
}

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

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

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

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

/* --- Animation 1: Conversion bars --- */
.anim-conversion {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.anim-conversion__bar {
  width: 18px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  animation: convPulse 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.anim-conversion__bar--low {
  border-color: rgba(239, 68, 68, 0.5);
}

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

/* --- Animation 2: Cart --- */
.anim-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-cart__icon {
  color: rgba(255, 255, 255, 0.5);
}

.anim-cart__items {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}

.anim-cart__item {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
  animation: cartItemFade 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
}

@keyframes cartItemFade {
  0%, 20% { opacity: 1; transform: translateY(0); }
  50%, 100% { opacity: 0; transform: translateY(-16px); }
}

/* --- Animation 3: Flat line --- */
.anim-flatline {
  position: relative;
  width: 100%;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.anim-flatline__chart {
  width: 100%;
}

.anim-flatline__line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: flatLineDraw 3s ease-in-out infinite;
}

@keyframes flatLineDraw {
  0% { stroke-dashoffset: 300; }
  40%, 60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 300; }
}

/* --- Animation 4: Question mark --- */
.anim-question {
  display: flex;
  align-items: center;
  justify-content: center;
}

.anim-question__icon {
  color: rgba(255, 255, 255, 0.5);
  animation: questionPulse 2.5s ease-in-out infinite;
}

@keyframes questionPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

/* ============================================
   CTR PROBLEMS SECTION
   ============================================ */
.ctr-problems__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

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

@media (min-width: 768px) {
  .ctr-grid {
    grid-template-columns: repeat(3, 1fr);
    auto-rows: minmax(220px, auto);
  }

  .ctr-card--col2 {
    grid-column: span 2;
  }
}

/* Bento Card */
.ctr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 -20px 80px -20px rgba(255, 255, 255, 0.06) inset;
  min-height: 200px;
}

.ctr-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 30% 0%, rgba(141, 245, 4, 0.03) 0%, transparent 60%);
}

.ctr-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 32px;
}

.ctr-card__stat {
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--color-text);
  text-shadow: 0 0 40px rgba(141, 245, 4, 0.08);
}

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

.ctr-card__source {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(141, 245, 4, 0.6);
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(141, 245, 4, 0.15);
  background: rgba(141, 245, 4, 0.03);
  width: fit-content;
}

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

.ctr-card__summary strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ============================================
   EARN MORE SECTION
   ============================================ */
.earn {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
  padding: 80px 0;
}

@media (min-width: 1024px) {
  .earn {
    min-height: 100vh;
    padding: 0;
  }
}

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

.earn__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;
}

.earn__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.earn__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.earn__title {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
}

/* Counter */
.earn__counter {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}

.earn__counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.earn__counter-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.earn__counter-value {
  display: flex;
  align-items: baseline;
}

.earn__counter-num {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--color-text-muted);
  transition: color 0.5s ease;
}

.earn__counter-pct {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--color-text-dim);
}

.earn__counter-item--highlight .earn__counter-num {
  color: var(--color-green);
}

.earn__counter-item--highlight .earn__counter-pct {
  color: var(--color-text-muted);
}

.earn__counter-arrow {
  color: var(--color-green);
  opacity: 0.6;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(6px); opacity: 0.8; }
}

/* Progress bars */
.earn__bars {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.earn__bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.earn__bar-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dim);
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.earn__bar-label--highlight {
  color: var(--color-text);
}

.earn__bar-track {
  flex: 1;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.earn__bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  animation: barGrow 2s ease-out forwards;
}

.earn__bar-fill--avg {
  background: rgba(255, 255, 255, 0.3);
  width: 0;
  animation: barGrowAvg 2s ease-out forwards;
}

.earn__bar-fill--top {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9));
  width: 0;
  animation: barGrowTop 2s ease-out 0.3s forwards;
}

@keyframes barGrowAvg {
  to { width: 48%; }
}

@keyframes barGrowTop {
  to { width: 100%; }
}

/* Description */
.earn__desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
}

.earn__cta {
  margin-top: 8px;
}

/* ============================================
   INCLUDES SECTION
   ============================================ */
.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .includes__grid {
    grid-template-columns: 2fr 3fr;
    gap: 64px;
  }
}

.includes__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

/* Checklist */
.includes__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.includes__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-green);
  opacity: 0.8;
}

/* Photos (right side) */
.includes__photos {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}

.includes__photo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 200px;
}

.includes__photo--1 {
  transform: rotate(-2deg);
}

.includes__photo--2 {
  transform: rotate(2deg);
  margin-top: 24px;
}

.includes__photo-inner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-border);
}

.includes__photo-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
}

/* When real images are added */
.includes__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.includes__photo-label {
  font-size: 13px;
  color: var(--color-text-dim);
  text-align: center;
  line-height: 1.4;
}

/* Spreadsheet animation */
.anim-spreadsheet {
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 16px;
  gap: 12px;
}

.anim-spreadsheet__header {
  display: flex;
  gap: 2px;
}

.anim-spreadsheet__tab {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px 6px 0 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-dim);
  letter-spacing: 0.5px;
}

.anim-spreadsheet__tab--active {
  background: rgba(141, 245, 4, 0.1);
  color: var(--accent);
}

.anim-spreadsheet__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.anim-spreadsheet__row {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: spreadsheetFadeIn 0.5s ease-out both;
}

.anim-spreadsheet__row:nth-child(1) { animation-delay: 0.2s; }
.anim-spreadsheet__row:nth-child(2) { animation-delay: 0.4s; }
.anim-spreadsheet__row:nth-child(3) { animation-delay: 0.6s; }
.anim-spreadsheet__row:nth-child(4) { animation-delay: 0.8s; }
.anim-spreadsheet__row:nth-child(5) { animation-delay: 1.0s; }

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

.anim-spreadsheet__cell--label {
  width: 40%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.anim-spreadsheet__cell--status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.anim-spreadsheet__cell--red { background: #ff4d4d; }
.anim-spreadsheet__cell--yellow { background: #ffc107; }
.anim-spreadsheet__cell--green { background: var(--accent); }

.anim-spreadsheet__cell--bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.12));
  position: relative;
  overflow: hidden;
}

.anim-spreadsheet__cell--bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 4px;
  background: rgba(141, 245, 4, 0.25);
  animation: barGrow 1.5s ease-out both;
  animation-delay: inherit;
}

@keyframes barGrow {
  from { width: 0; }
  to { width: var(--w, 50%); }
}

/* Presentation animation */
.anim-presentation {
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 16px;
  gap: 16px;
}

.anim-presentation__slide {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anim-presentation__chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 0 8px;
}

.anim-presentation__bar {
  flex: 1;
  height: var(--h, 50%);
  background: var(--color, rgba(255,255,255,0.15));
  border-radius: 4px 4px 0 0;
  animation: presentBarGrow 1s ease-out both;
}

.anim-presentation__bar:nth-child(1) { animation-delay: 0.2s; }
.anim-presentation__bar:nth-child(2) { animation-delay: 0.35s; }
.anim-presentation__bar:nth-child(3) { animation-delay: 0.5s; }
.anim-presentation__bar:nth-child(4) { animation-delay: 0.65s; }

.anim-presentation__bar--accent {
  opacity: 0.6;
}

@keyframes presentBarGrow {
  from { height: 0; }
  to { height: var(--h, 50%); }
}

.anim-presentation__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 8px;
}

.anim-presentation__lines span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
}

.anim-presentation__lines span:nth-child(1) { width: 100%; }
.anim-presentation__lines span:nth-child(2) { width: 75%; }
.anim-presentation__lines span:nth-child(3) { width: 50%; }

.anim-presentation__speaker {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.anim-presentation__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(141, 245, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.anim-presentation__wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
}

.anim-presentation__wave span {
  width: 3px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.5;
  animation: waveBar 1.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes waveBar {
  0%, 100% { height: 4px; }
  50% { height: 16px; }
}

/* ============================================
   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: 400px;
}

.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: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.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%;
  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);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-dim);
  transition: all 0.2s ease;
}

.footer__social-link:hover {
  color: var(--color-green);
  border-color: rgba(141, 245, 4, 0.3);
  background: rgba(141, 245, 4, 0.05);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

@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;
  }

  .footer__copy {
    width: 100%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
}

/* ============================================
   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;
  }
}
