/* ============================================================
   REVOLUT LANDING PAGE — MAIN STYLESHEET
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --navy-light: #152b55;
  --blue:       #1a56f0;
  --blue-light: #4d7ff5;
  --blue-glow:  #1a56f033;
  --teal:       #0ec6c6;
  --white:      #ffffff;
  --off-white:  #f5f7fb;
  --gray-100:   #eef1f8;
  --gray-300:   #c2c9d8;
  --gray-500:   #7a869a;
  --text-body:  #4a5568;
  --text-dark:  #1a202c;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;

  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);
  --shadow-glow: 0 0 40px rgba(26,86,240,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,86,240,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,240,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 28px;
  width: 120px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-actions .btn-login {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 18px;
  border-radius: 100px;
  transition: color var(--transition);
}

.nav-actions .btn-login:hover {
  color: var(--white);
}

.nav-actions .btn-primary {
  font-size: 0.9375rem;
  padding: 10px 22px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.nav-mobile a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav-mobile .btn-primary {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO SECTION — STUNNING ANIMATED VERSION
   ============================================================ */

/* ---- Core keyframe animations ---- */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Full color-shifting loop: blue -> purple -> cyan -> dark navy */
@keyframes heroGradientFlow {
  0%   { background-position: 0%   0%;   }
  20%  { background-position: 50%  50%;  }
  40%  { background-position: 100% 50%;  }
  60%  { background-position: 50%  100%; }
  80%  { background-position: 0%   50%;  }
  100% { background-position: 0%   0%;   }
}

/* Hue rotation for the orbs — continuous color loop */
@keyframes hueRotate {
  0%   { filter: blur(90px) hue-rotate(0deg); }
  100% { filter: blur(90px) hue-rotate(360deg); }
}

/* Character reveal: slide up from below with opacity */
@keyframes charReveal {
  0%   { opacity: 0; transform: translateY(60%) rotateX(-40deg); }
  100% { opacity: 1; transform: translateY(0)   rotateX(0deg); }
}

/* Ripple burst on CTA click */
@keyframes rippleExpand {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

/* Scroll-driven parallax helper */
@keyframes parallaxDrift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}

/* Morphing blob shape */
@keyframes morphBlob {
  0%   { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  25%  { border-radius: 40% 60% 45% 55% / 55% 45% 50% 50%; }
  50%  { border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%; }
  75%  { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
}

/* Stat value count-up entrance */
@keyframes statSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Neon CTA glow — resting state */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 16px rgba(109,40,217,0.6),
      0 0 36px rgba(109,40,217,0.35),
      0 0 64px rgba(91,142,255,0.2),
      0 8px 24px rgba(15,23,42,0.5);
  }
  50% {
    box-shadow:
      0 0 24px rgba(109,40,217,0.85),
      0 0 56px rgba(109,40,217,0.55),
      0 0 96px rgba(91,142,255,0.35),
      0 8px 32px rgba(15,23,42,0.6);
  }
}

/* Neon CTA glow — hover state */
@keyframes neonPulseHover {
  0%, 100% {
    box-shadow:
      0 0 28px rgba(147,51,234,0.9),
      0 0 60px rgba(147,51,234,0.65),
      0 0 110px rgba(91,142,255,0.4),
      0 0 160px rgba(109,40,217,0.2),
      0 12px 40px rgba(15,23,42,0.6);
  }
  50% {
    box-shadow:
      0 0 40px rgba(167,71,254,1),
      0 0 80px rgba(167,71,254,0.8),
      0 0 140px rgba(91,142,255,0.55),
      0 0 200px rgba(109,40,217,0.3),
      0 16px 48px rgba(15,23,42,0.7);
  }
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(1.5deg); }
  50%       { transform: translateY(-12px) rotate(1.5deg); }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes glassShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Deep navy-to-purple orb motions */
@keyframes orb1 {
  0%   { transform: translate(0,0) scale(1); }
  25%  { transform: translate(10%,-8%) scale(1.1); }
  50%  { transform: translate(16%, 6%) scale(0.93); }
  75%  { transform: translate(-6%, 10%) scale(1.06); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes orb2 {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-12%, 9%) scale(1.12); }
  66%  { transform: translate(8%, -11%) scale(0.88); }
  100% { transform: translate(0,0) scale(1); }
}

@keyframes orb3 {
  0%   { transform: translate(0,0) scale(1); }
  40%  { transform: translate(6%, 12%) scale(1.08); }
  80%  { transform: translate(-10%, -6%) scale(0.94); }
  100% { transform: translate(0,0) scale(1); }
}

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

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

@keyframes badgePop {
  0%   { opacity: 0; transform: translateY(-18px) scale(0.88); }
  60%  { transform: translateY(3px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes buttonGlowIn {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Hero section wrapper ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0f172a;
  overflow: hidden;
  padding-top: 72px;
}

/* ---- Animated gradient base layer: blue → purple → cyan → dark navy ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #0f172a   0%,
    #1e3a5f  10%,
    #1a56f0  22%,
    #4338ca  35%,
    #6d28d9  46%,
    #2e1065  55%,
    #0e7490  65%,
    #06b6d4  73%,
    #0369a1  82%,
    #1e1b4b  90%,
    #0f172a  100%
  );
  background-size: 500% 500%;
  animation: heroGradientFlow 20s ease infinite;
}

/* ---- Glowing orbs (animated blobs) — purple/violet palette ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

/* Large morphing orb — top right, purple with hue cycle */
.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -18%;
  right: -10%;
  background: radial-gradient(circle, rgba(109,40,217,0.7) 0%, rgba(91,33,182,0.4) 45%, transparent 70%);
  animation: orb1 18s ease-in-out infinite, morphBlob 12s ease-in-out infinite, hueRotate 28s linear infinite;
  filter: blur(90px);
}

/* Deep cyan/violet orb — bottom left */
.hero-orb-2 {
  width: 600px;
  height: 600px;
  bottom: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(6,182,212,0.45) 0%, rgba(67,56,202,0.3) 50%, transparent 70%);
  animation: orb2 22s ease-in-out infinite, morphBlob 16s ease-in-out 4s infinite, hueRotate 36s linear 5s infinite;
  filter: blur(85px);
}

/* Neon cyan accent orb — center */
.hero-orb-3 {
  width: 450px;
  height: 450px;
  top: 38%;
  left: 33%;
  background: radial-gradient(circle, rgba(14,116,144,0.5) 0%, rgba(6,182,212,0.25) 50%, transparent 70%);
  animation: orb3 16s ease-in-out infinite, morphBlob 10s ease-in-out 2s infinite;
  filter: blur(70px);
}

/* Small accent — top left, warm glow */
.hero-orb-4 {
  width: 350px;
  height: 350px;
  top: 8%;
  left: 18%;
  background: radial-gradient(circle, rgba(167,139,250,0.35) 0%, rgba(6,182,212,0.18) 55%, transparent 70%);
  animation: orb2 26s ease-in-out 3s infinite, morphBlob 14s ease-in-out 7s infinite;
  filter: blur(60px);
}

/* ---- Canvas layer (particles + shapes) ---- */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

/* ---- Noise texture overlay for depth ---- */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

/* ---- Hero layout ---- */
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 88px 0;
  width: 100%;
}

/* ---- Glassmorphism content container ---- */
.hero-content {
  max-width: 600px;
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 32px;
  padding: 56px 52px;
  box-shadow:
    0 0 0 1px rgba(109,40,217,0.12),
    0 0 60px rgba(109,40,217,0.15),
    0 32px 96px rgba(15,23,42,0.7),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

/* Glass top shimmer — purple-to-blue gradient line */
.hero-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(109,40,217,0.7) 25%,
    rgba(167,139,250,0.9) 50%,
    rgba(59,130,246,0.7) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: glassShimmer 5s linear infinite;
}

/* Neon left-edge purple accent */
.hero-content::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  width: 2px;
  height: 70%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(109,40,217,0.9) 25%,
    rgba(167,139,250,1) 50%,
    rgba(109,40,217,0.9) 75%,
    transparent 100%
  );
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(109,40,217,0.6);
}

/* ---- Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,40,217,0.18);
  border: 1px solid rgba(167,139,250,0.4);
  color: #c4b5fd;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: badgePop 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
  position: relative;
  box-shadow: 0 0 20px rgba(109,40,217,0.2);
}

.hero-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(109,40,217,0.35), rgba(59,130,246,0.25));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-badge:hover::before { opacity: 1; }

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(56,189,248,0.9), 0 0 20px rgba(56,189,248,0.4);
  animation: pulse 2s ease-in-out infinite;
}

/* ---- Headline — character-by-character reveal ---- */
.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.875rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
  /* JS replaces text with .char spans; fallback animation if JS fails */
  animation: fadeInUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.15s both;
  perspective: 800px;
}

/* Individual character wrapper for reveal animation */
.hero-title .char {
  display: inline-block;
  opacity: 0;
  animation: charReveal 0.55s cubic-bezier(0.22,1,0.36,1) both;
  transform-origin: bottom center;
  will-change: transform, opacity;
}

/* Preserve spaces between words */
.hero-title .word {
  display: inline-block;
  margin-right: 0.22em;
}

/* Gradient word wraps the span element for gradient text */
.hero-title .word-gradient {
  margin-right: 0;
}

.hero-title .word-gradient .char {
  background: linear-gradient(
    135deg,
    #a78bfa 0%,
    #c4b5fd 25%,
    #22d3ee 55%,
    #38bdf8 80%,
    #a78bfa 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: charReveal 0.55s cubic-bezier(0.22,1,0.36,1) both, gradientShift 5s linear infinite;
}

/* Gradient text on "modern world" — when JS hasn't wrapped chars yet */
.hero-title > span:not(.char):not(.word):not(.word-gradient) {
  background: linear-gradient(
    135deg,
    #a78bfa 0%,
    #c4b5fd 25%,
    #22d3ee 55%,
    #38bdf8 80%,
    #a78bfa 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s linear infinite;
  text-shadow: none;
}

/* ---- Subtitle — staggered fade-in ---- */
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.78;
  margin-bottom: 44px;
  max-width: 460px;
  animation: fadeInUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.32s both;
}

/* ---- CTA Group — premium glow button ---- */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: buttonGlowIn 0.85s cubic-bezier(0.22,1,0.36,1) 0.48s both;
}

/* Premium neon-glow primary CTA */
.hero-cta-group .btn-primary {
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 17px 42px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 40%, #6d28d9 70%, #4338ca 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  animation: neonPulse 2.8s ease-in-out infinite, gradientShift 6s ease infinite;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.28s ease;
  letter-spacing: 0.01em;
}

/* Inner glass highlight overlay */
.hero-cta-group .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 100px;
}

/* Shine sweep on hover */
.hero-cta-group .btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 38%;
  height: 200%;
  background: rgba(255,255,255,0.28);
  transform: skewX(-22deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.hero-cta-group .btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  animation: neonPulseHover 1.4s ease-in-out infinite, gradientShift 3s ease infinite;
}

.hero-cta-group .btn-primary:hover::after {
  left: 120%;
}

/* Active / click scale feedback */
.hero-cta-group .btn-primary:active {
  transform: translateY(-2px) scale(0.98);
}

/* Ripple effect element (injected by JS) */
.hero-cta-group .btn-primary .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  width: 80px;
  height: 80px;
  margin-top: -40px;
  margin-left: -40px;
  pointer-events: none;
  animation: rippleExpand 0.7s ease-out forwards;
  transform-origin: center;
  z-index: 10;
}

/* ---- Stats row ---- */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(167,139,250,0.12);
  animation: fadeInUp 0.85s cubic-bezier(0.22,1,0.36,1) 0.64s both;
}

.hero-stats > div {
  position: relative;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(167,139,250,0.12);
  border-radius: 12px;
  flex: 1;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-stats > div:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(167,139,250,0.3);
  transform: translateY(-3px);
}

.hero-stat-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
  margin-top: 5px;
}

/* ---- Parallax layer wrapper ---- */
.hero-parallax-layer {
  will-change: transform;
  transform: translateY(0);
  transition: transform 0.05s linear;
}

/* ---- Hero visual — right column ---- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1.05s cubic-bezier(0.22,1,0.36,1) 0.38s both;
}

/* ---- Geometric decorative rings — purple palette ---- */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(109,40,217,0.2);
  pointer-events: none;
}

.hero-ring-1 {
  width: 440px;
  height: 440px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: rotateSlow 32s linear infinite;
  border-color: rgba(109,40,217,0.18);
  box-shadow: 0 0 30px rgba(109,40,217,0.08) inset;
}

.hero-ring-2 {
  width: 330px;
  height: 330px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: rotateReverse 22s linear infinite;
  border-color: rgba(167,139,250,0.25);
  border-style: dashed;
}

.hero-ring-3 {
  width: 550px;
  height: 550px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: rotateSlow 48s linear infinite;
  border-color: rgba(59,130,246,0.1);
}

.hero-phone-wrap {
  position: relative;
  width: 300px;
  z-index: 2;
}

.hero-phone-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 80px rgba(109,40,217,0.3);
}

/* ---- Glassmorphism floating cards ---- */
.hero-card {
  position: absolute;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(167,139,250,0.22);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  color: var(--white);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 20px rgba(109,40,217,0.15),
    inset 0 1px 0 rgba(255,255,255,0.12);
  white-space: nowrap;
}

.hero-card-1 {
  top: 8%;
  left: -90px;
  animation: floatA 5.5s ease-in-out infinite;
}

.hero-card-2 {
  bottom: 18%;
  right: -80px;
  animation: floatB 5.5s ease-in-out 2s infinite;
}

.hero-card-label {
  font-size: 0.75rem;
  color: rgba(196,181,253,0.7);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.hero-card-value {
  font-size: 1.0625rem;
  font-weight: 700;
}

.hero-card-value.positive { color: #4ade80; text-shadow: 0 0 14px rgba(74,222,128,0.45); }
.hero-card-value.amount   { color: var(--white); }

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-300);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header .section-subtitle {
  margin: 16px auto 0;
}

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

/* ---- Base feature card ---- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 44px 36px 40px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Subtle inner gradient wash */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Top accent bar */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Hover: lift + shadow */
.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 64px rgba(10,22,40,0.14), 0 4px 16px rgba(26,86,240,0.08);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { opacity: 1; }

/* Primary card — blue accent */
.feature-card--primary::before {
  background: linear-gradient(90deg, #60a5fa, #1a56f0);
}
.feature-card--primary::after {
  background: linear-gradient(135deg, rgba(26,86,240,0.04) 0%, transparent 60%);
}
.feature-card--primary:hover {
  border-color: rgba(26,86,240,0.2);
}

/* Secondary card — teal accent */
.feature-card--secondary::before {
  background: linear-gradient(90deg, #2dd4bf, #0ec6c6);
}
.feature-card--secondary::after {
  background: linear-gradient(135deg, rgba(14,198,198,0.04) 0%, transparent 60%);
}
.feature-card--secondary:hover {
  border-color: rgba(14,198,198,0.2);
}

/* Accent card — purple */
.feature-card--accent::before {
  background: linear-gradient(90deg, #c084fc, #7c3aed);
}
.feature-card--accent::after {
  background: linear-gradient(135deg, rgba(124,58,237,0.04) 0%, transparent 60%);
}
.feature-card--accent:hover {
  border-color: rgba(124,58,237,0.2);
}

/* ---- Icon wrapper ---- */
.feature-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.15);
}

/* Glow behind icon */
.feature-icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.35s ease;
  filter: blur(12px);
  pointer-events: none;
}
.feature-card:hover .feature-icon-glow {
  opacity: 0.6;
}

/* Blue icon */
.feature-icon-wrap--blue {
  background: linear-gradient(135deg, rgba(96,165,250,0.18) 0%, rgba(26,86,240,0.12) 100%);
  border: 1px solid rgba(26,86,240,0.15);
}
.feature-icon-glow--blue {
  background: radial-gradient(circle, rgba(26,86,240,0.5) 0%, transparent 70%);
}

/* Teal icon */
.feature-icon-wrap--teal {
  background: linear-gradient(135deg, rgba(45,212,191,0.18) 0%, rgba(14,198,198,0.12) 100%);
  border: 1px solid rgba(14,198,198,0.2);
}
.feature-icon-glow--teal {
  background: radial-gradient(circle, rgba(14,198,198,0.5) 0%, transparent 70%);
}

/* Purple icon */
.feature-icon-wrap--purple {
  background: linear-gradient(135deg, rgba(192,132,252,0.18) 0%, rgba(124,58,237,0.12) 100%);
  border: 1px solid rgba(124,58,237,0.15);
}
.feature-icon-glow--purple {
  background: radial-gradient(circle, rgba(124,58,237,0.5) 0%, transparent 70%);
}

.feature-icon-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Keep old .feature-icon classes for secondary feature grid */
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.feature-icon.blue   { background: rgba(26,86,240,0.1); color: var(--blue); }
.feature-icon.teal   { background: rgba(14,198,198,0.1); color: var(--teal); }
.feature-icon.purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.feature-icon svg { width: 28px; height: 28px; }

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 24px;
  transition: gap var(--transition), color var(--transition);
}

.feature-link:hover {
  gap: 10px;
  color: var(--blue-light);
}

/* ============================================================
   LIFESTYLE / PAYMENT SECTION
   ============================================================ */

.lifestyle {
  padding: 120px 0;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.lifestyle-bg-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,86,240,0.2) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

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

.lifestyle-images {
  position: relative;
  height: 560px;
}

.lifestyle-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.lifestyle-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 60%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.08);
}

.lifestyle-content {
  position: relative;
  z-index: 1;
}

.lifestyle-content .section-title {
  color: var(--white);
}

.lifestyle-content .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.lifestyle-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lifestyle-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lifestyle-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26,86,240,0.2);
  border: 1px solid rgba(26,86,240,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7fa8ff;
}

.lifestyle-feature-icon svg { width: 22px; height: 22px; }

.lifestyle-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.lifestyle-feature-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials {
  padding: 120px 0;
  background: var(--off-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-header .section-subtitle {
  margin: 16px auto 0;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(26,86,240,0.1);
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  font-family: Georgia, serif;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing {
  padding: 120px 0;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header .section-subtitle {
  margin: 16px auto 0;
}

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

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.pricing-card.standard {
  background: var(--white);
}

.pricing-card.premium {
  background: var(--navy);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

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

.pricing-card.metal {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue), var(--teal));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-card.standard .pricing-tier-name  { color: var(--gray-500); }
.pricing-card.premium  .pricing-tier-name  { color: rgba(255,255,255,0.6); }
.pricing-card.metal    .pricing-tier-name  { color: rgba(255,255,255,0.5); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
}

.pricing-card.standard .pricing-currency,
.pricing-card.standard .pricing-amount,
.pricing-card.standard .pricing-period { color: var(--navy); }

.pricing-card.premium  .pricing-currency,
.pricing-card.premium  .pricing-amount,
.pricing-card.premium  .pricing-period,
.pricing-card.metal    .pricing-currency,
.pricing-card.metal    .pricing-amount,
.pricing-card.metal    .pricing-period { color: var(--white); }

.pricing-desc {
  font-size: 0.875rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-card.standard .pricing-desc { color: var(--gray-500); }
.pricing-card.premium  .pricing-desc,
.pricing-card.metal    .pricing-desc  { color: rgba(255,255,255,0.55); }

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
}

.pricing-feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.standard .pricing-feature-item { color: var(--text-body); }
.pricing-card.standard .pricing-feature-item svg { color: var(--blue); }

.pricing-card.premium .pricing-feature-item  { color: rgba(255,255,255,0.85); }
.pricing-card.premium .pricing-feature-item svg { color: var(--teal); }

.pricing-card.metal .pricing-feature-item    { color: rgba(255,255,255,0.8); }
.pricing-card.metal .pricing-feature-item svg { color: #a0b8ff; }

.pricing-card .btn-pricing {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.pricing-card.standard .btn-pricing {
  background: rgba(26,86,240,0.08);
  color: var(--blue);
}

.pricing-card.standard .btn-pricing:hover {
  background: rgba(26,86,240,0.15);
  transform: translateY(-2px);
}

.pricing-card.premium .btn-pricing {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
}

.pricing-card.premium .btn-pricing:hover {
  box-shadow: 0 8px 24px rgba(26,86,240,0.4);
  transform: translateY(-2px);
}

.pricing-card.metal .btn-pricing {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.pricing-card.metal .btn-pricing:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* Metal shimmer effect */
.pricing-card.metal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 40%,
    rgba(255,255,255,0.04) 100%
  );
  pointer-events: none;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.faq-bg-glow {
  position: absolute;
  top: -10%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,86,240,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-subtitle {
  margin: 16px auto 0;
}

/* --- Search bar -------------------------------------------- */

.faq-search-wrap {
  max-width: 680px;
  margin: 0 auto 36px;
}

.faq-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  color: var(--gray-500);
  flex-shrink: 0;
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 16px 52px 16px 52px;
  font-size: 1rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 100px;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.faq-search-input::placeholder {
  color: var(--gray-300);
}

.faq-search-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,86,240,0.1), var(--shadow-sm);
}

.faq-search-clear {
  position: absolute;
  right: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.faq-search-clear:hover {
  background: var(--gray-300);
  color: var(--text-dark);
}

.faq-no-results {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  font-size: 0.9375rem;
  color: var(--gray-500);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.faq-no-results a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Category filters -------------------------------------- */

.faq-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.faq-cat-btn {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--gray-500);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.faq-cat-btn:hover {
  color: var(--blue);
  border-color: rgba(26,86,240,0.3);
  background: rgba(26,86,240,0.04);
}

.faq-cat-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,86,240,0.3);
}

/* --- Accordion list --------------------------------------- */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: rgba(26,86,240,0.2);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}

.faq-item.faq-open {
  border-color: rgba(26,86,240,0.3);
  box-shadow: 0 4px 24px rgba(26,86,240,0.1);
}

.faq-item.faq-hidden {
  display: none;
}

.faq-item.faq-search-highlight {
  border-color: rgba(26,86,240,0.4);
  box-shadow: 0 0 0 3px rgba(26,86,240,0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
}

.faq-question-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  transition: color var(--transition);
}

.faq-item.faq-open .faq-question-text {
  color: var(--blue);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  color: var(--gray-500);
}

.faq-item.faq-open .faq-icon {
  background: rgba(26,86,240,0.1);
  color: var(--blue);
  transform: rotate(180deg);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 28px 28px;
  border-top: 1px solid var(--gray-100);
}

.faq-answer-inner p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  list-style: none;
  margin: 12px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-answer-inner ul li {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.faq-answer-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.faq-answer-inner ul li strong {
  color: var(--navy);
  font-weight: 600;
}

/* Search highlight */
mark.faq-highlight {
  background: rgba(26,86,240,0.12);
  color: var(--navy);
  border-radius: 3px;
  padding: 0 2px;
  font-style: normal;
}

/* --- Bottom CTA ------------------------------------------- */

.faq-cta {
  text-align: center;
  margin-top: 56px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.faq-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}

.faq-cta-link:hover {
  gap: 10px;
}

/* --- Responsive ------------------------------------------- */

@media (max-width: 768px) {
  .faq-categories {
    gap: 6px;
  }

  .faq-cat-btn {
    font-size: 0.8125rem;
    padding: 7px 14px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }

  .faq-cta {
    padding: 32px 24px;
    margin-top: 40px;
  }

  .faq-search-input {
    font-size: 0.9375rem;
    padding: 14px 48px 14px 48px;
  }
}

@media (max-width: 480px) {
  .faq-cta-actions {
    flex-direction: column;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1e42 50%, #0a1f3d 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,86,240,0.3) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-banner-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner-actions .btn-primary {
  font-size: 1.0625rem;
  padding: 16px 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #060d1a;
  color: rgba(255,255,255,0.55);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  color: rgba(255,255,255,0.55);
}

.footer-social a:hover {
  background: rgba(26,86,240,0.2);
  border-color: rgba(26,86,240,0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-col-links a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   SCROLL ANIMATIONS — AOS style via JS
   ============================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }
[data-animate][data-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 640px; padding: 44px 40px; }
  .hero-title { font-size: clamp(2.25rem, 7vw, 3.875rem); }

  .lifestyle-inner { grid-template-columns: 1fr; gap: 60px; }
  .lifestyle-images { height: 380px; order: -1; }

  .pricing-card.premium { transform: none; }
  .pricing-card.premium:hover { transform: translateY(-4px); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-login { display: none; }
  .nav-hamburger { display: flex; }

  .features-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .pricing-grid       { grid-template-columns: 1fr; }

  .hero-stats         { gap: 24px; flex-wrap: wrap; }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner { gap: 12px; }
  .trust-divider   { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 32px 24px; border-radius: 24px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 12px; flex-wrap: wrap; }
  .hero-stats > div { padding: 12px 14px; }
  .hero-stat-value { font-size: 1.5rem; }
  .cta-banner-actions { flex-direction: column; }
  .pricing-card { padding: 32px 24px; }
}

/* ---- Performance: reduce animations on mobile/low-power ---- */
@media (max-width: 768px) {
  /* Simplify orb animations on mobile */
  .hero-orb-1 { animation: orb1 24s ease-in-out infinite; filter: blur(60px); }
  .hero-orb-2 { animation: orb2 30s ease-in-out infinite; filter: blur(55px); }
  .hero-orb-3 { display: none; }
  .hero-orb-4 { display: none; }

  /* Reduce gradient complexity */
  .hero-bg { animation-duration: 28s; }

  /* Disable expensive glass shimmer on mobile */
  .hero-content::before { animation: none; }

  /* Simplify CTA button animation */
  .hero-cta-group .btn-primary { animation: neonPulse 4s ease-in-out infinite; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg        { animation: none; }
  .hero-orb       { animation: none; }
  .hero-orb-1     { animation: none; }
  .hero-orb-2     { animation: none; }
  .hero-orb-3     { animation: none; }
  .hero-orb-4     { animation: none; }
  .hero-ring      { animation: none !important; }
  .hero-title     { animation: none; }
  .hero-title .char { animation: none; opacity: 1; transform: none; }
  .hero-badge     { animation: none; }
  .hero-subtitle  { animation: none; }
  .hero-cta-group { animation: none; }
  .hero-cta-group .btn-primary { animation: none; }
  .hero-card-1    { animation: none; }
  .hero-card-2    { animation: none; }
  .hero-content::before { animation: none; }
  .hero-title span { animation: none; }
}
