/* ============================================
   TIPS REVALIDA — Landing Page Styles
   Design System: Dark + Teal/Purple Accent
   ============================================ */

/* === ROOT VARIABLES === */
:root {
  --bg-primary: #070d1a;
  --bg-secondary: #0a1122;
  --bg-card: #0f172a;
  --bg-card-hover: #161e31;
  --bg-glass: rgba(15, 23, 42, 0.7);

  --color-teal: #00f2fe;
  /* Brighter, more vibrant teal */
  --color-teal-dark: #0891b2;
  --color-purple: #7c3aed;
  --color-purple-light: #a78bfa;
  --color-purple-bright: #8b5cf6;

  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #22d3ee 100%);
  --gradient-hero: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #22d3ee 100%);

  --text-primary: #f9fafb;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-glow-teal: 0 0 50px rgba(0, 242, 254, 0.15);
  --shadow-glow-purple: 0 0 50px rgba(124, 58, 237, 0.2);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.7);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Poppins', 'Inter', sans-serif;

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 15%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 242, 254, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* PREMIUM: Scanning Scanline Effect */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
}

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

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

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
  filter: brightness(1.1);
}

/* PRO plan CTA — vibrant teal/green for max conversion contrast */
.btn--pro-cta {
  background: linear-gradient(135deg, #059669 0%, #00f2fe 100%);
  color: #fff;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 242, 254, 0.35);
}

.btn--pro-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.3) 50%, transparent 55%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.btn--pro-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(0, 242, 254, 0.55);
  filter: brightness(1.1);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-card);
}

.btn--outline:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 14px;
  padding: 10px 20px;
}

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

.btn--xl {
  font-size: 18px;
  padding: 20px 44px;
}

.btn--full {
  width: 100%;
}

/* === UTILITY === */
.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(7, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}

.logo-tips {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-revalida {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-by {
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 6px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.navbar__links a:hover {
  color: var(--text-primary);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(7, 13, 26, 0.98);
}

.navbar__mobile a {
  font-size: 16px;
  color: var(--text-secondary);
}

.navbar__mobile .btn {
  text-align: center;
}

.navbar__mobile.open {
  display: flex;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 80px;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  top: 0;
  right: -100px;
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(40px) scale(1.05);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--color-teal);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
  }
}

.hero__title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: -8px;
  background: var(--bg-card);
}

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

/* === HERO VISUAL === */
.hero__visual {
  position: relative;
}

.hero__mockup-wrapper {
  position: relative;
  animation: floatMockup 6s ease-in-out infinite alternate;
}

@keyframes floatMockup {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

.mockup-browser {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow:
    var(--shadow-glow-purple),
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mockup-browser__bar {
  background: #1e2a3d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background: #ff5f57;
}

.dot.yellow {
  background: #febc2e;
}

.dot.green {
  background: #28c840;
}

.mockup-browser__url {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-browser__screen {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.mockup-browser__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}

.mic-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(234, 52, 52, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  width: fit-content;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.mic-pulse,
.mic-pulse.delay-1,
.mic-pulse.delay-2 {
  position: absolute;
  inset: -1px;
  border-radius: 50px;
  border: 2px solid rgba(234, 52, 52, 0.4);
  animation: micPulse 2s ease-out infinite;
}

.mic-pulse.delay-1 {
  animation-delay: 0.5s;
}

.mic-pulse.delay-2 {
  animation-delay: 1s;
}

@keyframes micPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(7, 13, 26, 0.85);
  color: var(--color-teal);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
  align-self: flex-end;
  border: 1px solid rgba(34, 211, 238, 0.25);
  backdrop-filter: blur(8px);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 15px rgba(255, 255, 255, 0.03);
  min-width: 200px;
  animation: cardFloat 5s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

.card--top-right {
  top: -20px;
  right: -24px;
  animation-delay: 1s;
}

.card--bottom-left {
  bottom: 0px;
  left: -24px;
  animation-delay: 2s;
}

.floating-card__icon {
  font-size: 24px;
}

.floating-card__label {
  font-size: 11px;
  color: var(--text-muted);
}

.floating-card__value {
  font-size: 15px;
  font-weight: 700;
}

.chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
}

.chip--green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  z-index: 2;
  animation: fadeInUp 2s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(4px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===========================
   LOGOS STRIP
=========================== */
.logos-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.logos-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logos-strip__label {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}

.logos-strip__items {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.logo-pill:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* ===========================
   PROBLEM SECTION
=========================== */
.problem {
  padding: 100px 0 60px;
}

/* Video Demo Area */
.problem__video-wrapper {
  max-width: 900px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 5;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-card),
    0 0 60px rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border-card);
  background: #000;
  transition: var(--transition);
}

.video-container:hover {
  transform: translateY(-4px);
  box-shadow:
    var(--shadow-card-hover),
    0 0 70px rgba(124, 58, 237, 0.25);
  border-color: rgba(34, 211, 238, 0.3);
}

.video-element {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.video-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0.2) 0%, transparent 40%, rgba(7, 13, 26, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}

.video-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 13, 26, 0.7);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border: 1px solid var(--border-subtle);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}

.pain-card:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.08);
}

.pain-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem__transition {
  display: flex;
  align-items: center;
  gap: 20px;
}

.transition-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-card), transparent);
}

.transition-badge {
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

/* ===========================
   SOLUTION SECTION
=========================== */
.solution {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
}

.features {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-block--right {
  direction: rtl;
}

.feature-block--right>* {
  direction: ltr;
}

.feature-number {
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: -20px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-block__text h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.feature-block__text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.check {
  color: #4ade80;
  font-weight: 700;
  font-size: 16px;
}

.feature-screenshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-screenshot:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.25), var(--shadow-card-hover);
}

.feature-screenshot img {
  width: 100%;
}

.feature-screenshot__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.9);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
}

.rec-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.stations-count-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--gradient-primary);
  color: white;
  padding: 10px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.count-number {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.count-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}

/* Feedback card demo */
.feedback-card-demo {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-glow-purple), var(--shadow-card);
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.feedback-header h4 {
  font-size: 16px;
  font-weight: 700;
}

.score-badge-large {
  background: var(--gradient-primary);
  color: white;
  font-weight: 800;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.feedback-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feedback-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
}

.fi-icon {
  font-size: 18px;
}

.fi-label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.fi-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.fi-fill {
  height: 100%;
  background: #4ade80;
  border-radius: 2px;
  transition: width 1s ease;
}

.fi-fill--warn {
  background: #fbbf24;
}

.fi-fill--err {
  background: #f87171;
}

.fi-score {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-secondary);
}

.feedback-insight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.2);
  paddi: 14px;
  border-radius: var(--radius-md);
  padding: 14px;
}

.insight-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.feedback-insight p {
  font-size: 13px;
  color: #fde68a;
  line-height: 1.5;
}

/* ===========================
   STATS SECTION
=========================== */
.stats-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: inline;
}

.stat-plus,
.stat-mins {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-teal);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  padding: 100px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(34, 211, 238, 0.06) 100%);
  border-color: rgba(124, 58, 237, 0.3);
  grid-column: span 1;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card blockquote strong {
  color: var(--text-primary);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid rgba(124, 58, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================
   PRICING
=========================== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: var(--transition);
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--gradient-primary);
  border-color: transparent;
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(24px);
}

.badge-save {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card--featured {
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.12), rgba(17, 24, 39, 0.95));
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.2), var(--shadow-card);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-best-value {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}

.price-period {
  font-size: 15px;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-yes span {
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-no {
  color: var(--text-muted);
}

.feature-no span {
  color: var(--text-muted);
  flex-shrink: 0;
}

.pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: 36px;
}

.pricing__guarantee h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing__guarantee p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   FAQ
=========================== */
.faq {
  padding: 100px 0;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-teal);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--color-teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-card);
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.final-cta__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.final-cta__bg-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2), transparent 70%);
  top: -100px;
  left: 10%;
}

.final-cta__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
  bottom: -50px;
  right: 10%;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.final-cta__guarantee {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #040914;
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__brand .navbar__logo {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 2px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-teal);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 24px;
}

.footer__bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   STICKY CTA
=========================== */
/* Sticky CTA — compact corner pill (non-intrusive) */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  transform: translateY(120px);
  z-index: 900;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  left: auto;
  width: auto;
  max-width: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  background: rgba(7, 13, 26, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 12px 12px 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.2);
}

.sticky-cta__text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.sticky-cta__sub {
  display: none;
}

/* ===========================
   ANIMATIONS / AOS-LIKE
=========================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos][data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos][data-aos-delay="300"] {
  transition-delay: 0.3s;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__content {
    text-align: center;
  }

  .hero__badge {
    margin: 0 auto 24px;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__social-proof {
    justify-content: center;
  }

  .card--top-right {
    right: 0;
  }

  .card--bottom-left {
    left: 0;
  }

  .pain-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stat-item+.stat-item::before {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  #navbar-cta {
    display: none;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .feature-block--right {
    direction: ltr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .hero__title {
    font-size: 32px;
  }

  .pain-cards {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .logos-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    bottom: 16px;
    right: 16px;
  }
}