/* ========================================
   KARAGRAM - Premium Redesign
   3D Animations · Glassmorphism · Particles
   ======================================== */

:root {
  --primary: #E1306C;
  --secondary: #FD1D1D;
  --accent: #833AB4;
  --bg: #06050F;
  --surface: rgba(20, 18, 40, 0.7);
  --surface-solid: #14122A;
  --surface-light: #1E1C3A;
  --text: #FFFFFF;
  --text-muted: #9B9CB8;
  --border: rgba(255, 255, 255, 0.07);
  --glow-border: rgba(225, 48, 108, 0.2);
  --gradient: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #FD1D1D 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(225, 48, 108, 0.15));
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(225, 48, 108, 0.15);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --card-glow: 0 0 30px rgba(225, 48, 108, 0.08), 0 0 80px rgba(131, 58, 180, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
  transition: none;
  width: 100%;
}

/* ========================================
   BUTTONS - PREMIUM
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 48px rgba(225, 48, 108, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(225, 48, 108, 0.08);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-white {
  background: #fff;
  color: #111;
}

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* ========================================
   NAVBAR - FLOATING CURVED GLASSMORPHISM
   ======================================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 0;
  z-index: 1000;
  width: 95%;
  max-width: 1200px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar .container {
  padding: 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 36px;
  background: rgba(10, 9, 22, 0.35);
  backdrop-filter: blur(40px) saturate(2.2);
  -webkit-backdrop-filter: blur(40px) saturate(2.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 60px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(225, 48, 108, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
  top: 10px;
}

.navbar.scrolled .nav-wrapper {
  background: rgba(6, 5, 15, 0.82);
  border-color: rgba(225, 48, 108, 0.12);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(225, 48, 108, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.3s;
}

.nav-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--gradient) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-size: 13px !important;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
  transition: all 0.3s !important;
}

.nav-cta:hover {
  box-shadow: 0 6px 28px rgba(225, 48, 108, 0.5) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .navbar {
    max-width: calc(100% - 32px);
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 5, 15, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    font-size: 22px;
    padding: 16px 36px;
    border-radius: 16px;
  }
}

/* ========================================
   SECTION WAVE DIVIDERS
   ======================================== */
.section-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-wave svg path {
  fill: var(--bg);
}

/* ========================================
   HERO - IMMERSIVE 3D
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Extra hero glow layers */
.hero .container::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(225, 48, 108, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Animated Gradient Orbs */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(131, 58, 180, 0.2) 0%, transparent 70%);
}

.hero::after {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.15) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 13px;
  color: #22c55e;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2.5px;
}

.gradient-text,
.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust Avatars */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  margin-left: -10px;
  object-fit: cover;
  transition: transform 0.3s;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-avatars img:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 1;
}

.trust-text {
  font-size: 14px;
  color: var(--text-muted);
}

.trust-text strong {
  color: #fff;
}

/* 3D Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  perspective: 1200px;
}

.phone-mockup {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.phone-frame {
  background: linear-gradient(145deg, #2a2840, #16142a);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 80px rgba(225, 48, 108, 0.08);
  transition: transform 0.6s var(--transition);
  position: relative;
}

/* Reflective glow on phone */
.phone-frame::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), transparent 40%, rgba(225, 48, 108, 0.12));
  z-index: -1;
  opacity: 0.7;
  filter: blur(1px);
}

.phone-screen {
  width: 280px;
  height: 560px;
  border-radius: 36px;
  object-fit: cover;
  display: block;
}

.float-card {
  position: absolute;
  background: rgba(14, 12, 30, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 22px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(225, 48, 108, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
  transition: transform 0.3s;
}

.float-card:hover {
  transform: scale(1.05) translateY(-4px);
}

.float-card.left {
  top: 30%;
  left: -60px;
  animation-delay: -1s;
}

.float-card.right {
  bottom: 25%;
  right: -60px;
}

.float-card i {
  color: var(--primary);
  font-size: 20px;
}

.float-card strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.float-card span {
  font-size: 12px;
  color: var(--text-muted);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--primary);
  border-radius: 3px;
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(14px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-screen {
    width: 220px;
    height: 440px;
  }

  .float-card {
    display: none;
  }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: rgba(225, 48, 108, 0.06);
  border: 1px solid rgba(225, 48, 108, 0.12);
  border-radius: 50px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.section-badge.light::before {
  background: #fff;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  position: relative;
}

.section-title.light {
  color: #fff;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========================================
   HOW IT WORKS - TIMELINE
   ======================================== */
.how-it-works {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line */
.steps-container::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 34px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  overflow: hidden;
}

/* Gradient shimmer on hover */
.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.03), transparent 50%, rgba(225, 48, 108, 0.03));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.step-card:hover::after {
  opacity: 1;
}

.step-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--glow-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(225, 48, 108, 0.1);
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.step-icon {
  width: 76px;
  height: 76px;
  background: var(--gradient);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 12px 36px rgba(225, 48, 108, 0.3),
    0 0 20px rgba(225, 48, 108, 0.15);
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

/* Glow ring around icon */
.step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 26px;
  background: var(--gradient);
  opacity: 0.15;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.4s;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 16px 48px rgba(225, 48, 108, 0.4);
}

.step-card:hover .step-icon::after {
  opacity: 0.3;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.step-line {
  display: none;
}

.steps-progress {
  margin-top: 48px;
}

.progress-line {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.progress-fill.animated {
  width: 100%;
}

@media (max-width: 992px) {
  .steps-container {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .steps-container::before {
    display: none;
  }
}

/* ========================================
   LIVE STATS
   ======================================== */
.live-stats {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0920 0%, var(--bg) 100%);
  position: relative;
}

.live-dashboard {
  display: grid;
  gap: 24px;
}

.live-main-stat {
  background: linear-gradient(135deg, rgba(20, 18, 40, 0.8), rgba(14, 12, 28, 0.9));
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(225, 48, 108, 0.08);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient gradient glow */
.live-main-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(225, 48, 108, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.live-pulse-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(225, 48, 108, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.live-main-content {
  position: relative;
  z-index: 1;
}

.live-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.live-number {
  display: block;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.live-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 12px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50px;
  font-size: 14px;
}

.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.live-stat-box {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.live-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.live-stat-box:hover::before {
  transform: scaleX(1);
}

.live-stat-box:hover {
  transform: translateY(-6px);
  border-color: var(--glow-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--card-glow);
}

.live-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.live-stat-icon.photos {
  background: rgba(225, 48, 108, 0.12);
  color: var(--primary);
}

.live-stat-icon.likes {
  background: rgba(253, 29, 29, 0.12);
  color: var(--secondary);
}

.live-stat-icon.videos {
  background: rgba(131, 58, 180, 0.12);
  color: var(--accent);
}

.live-stat-icon.countries {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.live-stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.live-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.live-activity-section {
  background: var(--surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.activity-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 15px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(6, 5, 15, 0.6);
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.activity-row:hover {
  border-color: var(--border);
  background: rgba(20, 18, 40, 0.5);
}

.activity-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.activity-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

.activity-details strong {
  display: block;
  font-size: 14px;
}

.activity-location {
  font-size: 12px;
  color: var(--text-muted);
}

.activity-action {
  text-align: right;
}

.activity-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.activity-badge.post {
  background: rgba(225, 48, 108, 0.12);
  color: var(--primary);
}

.activity-badge.like {
  background: rgba(253, 29, 29, 0.12);
  color: var(--secondary);
}

.activity-badge.story {
  background: rgba(131, 58, 180, 0.12);
  color: var(--accent);
}

.activity-badge.follower {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.activity-badge.reel {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

.activity-time {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 992px) {
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .live-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FEATURES - 3D CARDS
   ======================================== */
.features {
  padding: 120px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

/* Top gradient line */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}

/* Ambient glow overlay */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(131, 58, 180, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--glow-border);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35), 0 0 40px rgba(225, 48, 108, 0.1);
}

.feature-card.featured {
  grid-column: span 2;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-icon {
  margin-bottom: 20px;
}

.icon-bg {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.2);
  transition: transform 0.3s;
}

.feature-card:hover .icon-bg {
  transform: scale(1.05) rotate(3deg);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  padding: 6px 14px;
  background: rgba(225, 48, 108, 0.06);
  border: 1px solid rgba(225, 48, 108, 0.1);
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
}

.feature-visual {
  margin-top: 20px;
}

.visual-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
}

.visual-fill {
  height: 100%;
  width: 75%;
  background: var(--gradient);
  border-radius: 6px;
  animation: visualPulse 3s ease-in-out infinite;
}

@keyframes visualPulse {

  0%,
  100% {
    width: 65%;
  }

  50% {
    width: 85%;
  }
}

.visual-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.visual-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.4;
}

.visual-dots span:first-child {
  opacity: 1;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.featured {
    grid-column: span 1;
  }
}

/* ========================================
   CREATORS
   ======================================== */
.creators {
  padding: 120px 0;
  background: #0a0920;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.creator-card {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

/* Hover gradient border effect */
.creator-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.2), transparent 40%, rgba(225, 48, 108, 0.15));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
  pointer-events: none;
}

.creator-card:hover::before {
  opacity: 1;
}

.creator-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(225, 48, 108, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), var(--card-glow);
}

.creator-card.featured {
  grid-column: span 2;
}

.creator-cover img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.creator-info {
  padding: 24px;
  text-align: center;
}

.creator-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--surface-solid);
  margin: -60px auto 14px;
  object-fit: cover;
}

.creator-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.creator-handle {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.creator-bio {
  color: var(--text-muted);
  font-size: 14px;
  margin: 12px 0;
  line-height: 1.6;
}

.creator-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 20px 0;
}

.creator-stats strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.creator-stats span {
  font-size: 12px;
  color: var(--text-muted);
}

.creators-cta {
  text-align: center;
  margin-top: 60px;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(20, 18, 40, 0.7), rgba(14, 12, 28, 0.8));
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(225, 48, 108, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.creators-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(225, 48, 108, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.creators-cta p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 16px;
  position: relative;
}

@media (max-width: 1024px) {
  .creators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .creator-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .creators-grid {
    grid-template-columns: 1fr;
  }

  .creator-card.featured {
    grid-column: span 1;
  }
}

/* ========================================
   WHY KARAGRAM - COMPARISON
   ======================================== */
.why-karagram {
  padding: 120px 0;
  background: var(--bg);
}

.comparison-container {
  display: grid;
  gap: 48px;
}

.comparison-table {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* Gradient accent on Karagram column */
.comparison-table::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(180deg, rgba(225, 48, 108, 0.04) 0%, rgba(131, 58, 180, 0.02) 100%);
  pointer-events: none;
  border-left: 1px solid rgba(225, 48, 108, 0.06);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 28px;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.karagram-col {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.karagram-col i {
  font-size: 16px;
}

.competitor-col {
  text-align: center;
  color: var(--text-muted);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-col {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-col.feature-col {
  font-weight: 600;
  font-size: 14px;
}

.comparison-col.feature-col i {
  color: var(--text-muted);
  font-size: 14px;
  width: 20px;
}

.comparison-col.competitor-col {
  justify-content: center;
  color: rgba(239, 68, 68, 0.8);
}

.comparison-col.karagram-col i {
  color: #22c55e;
}

.comparison-col.karagram-col span {
  font-size: 13px;
  color: var(--text-muted);
}

.limited {
  color: rgba(251, 191, 36, 0.8) !important;
  font-size: 13px;
}

/* Success Metrics */
.success-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric-card {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(225, 48, 108, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.metric-card:hover::after {
  opacity: 1;
}

.metric-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--glow-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--card-glow);
}

.metric-card.featured {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(225, 48, 108, 0.25);
}

.metric-card.featured:hover {
  box-shadow: 0 24px 72px rgba(225, 48, 108, 0.35);
  transform: translateY(-10px) scale(1.03);
}

.metric-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}

.metric-card.featured .metric-icon {
  background: rgba(255, 255, 255, 0.2);
}

.metric-value {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.metric-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

/* Switch CTA */
.switch-cta {
  text-align: center;
  padding: 60px 44px;
  background: linear-gradient(135deg, rgba(20, 18, 40, 0.7), rgba(14, 12, 28, 0.8));
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(225, 48, 108, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.switch-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(131, 58, 180, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.switch-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: 0 auto 28px;
  box-shadow: 0 12px 36px rgba(225, 48, 108, 0.3),
    0 0 20px rgba(225, 48, 108, 0.15);
  position: relative;
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {

  0%,
  100% {
    box-shadow: 0 12px 36px rgba(225, 48, 108, 0.3), 0 0 20px rgba(225, 48, 108, 0.15);
  }

  50% {
    box-shadow: 0 12px 36px rgba(225, 48, 108, 0.4), 0 0 40px rgba(225, 48, 108, 0.2);
  }
}

.switch-cta h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.switch-cta p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 15px;
  position: relative;
}

@media (max-width: 768px) {

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1.2fr;
    padding: 14px 16px;
  }

  .success-metrics {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SHOWCASE - 3D CAROUSEL
   ======================================== */
.showcase {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0920 100%);
}

.showcase-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  position: relative;
  perspective: 1000px;
}

.showcase-item {
  position: absolute;
  opacity: 0;
  transform: scale(0.85) translateX(100px) rotateY(-15deg);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 48px;
}

.showcase-item.active {
  opacity: 1;
  position: relative;
  transform: scale(1) translateX(0) rotateY(0);
  pointer-events: auto;
}

.showcase-phone {
  flex-shrink: 0;
}

.showcase-frame {
  background: linear-gradient(145deg, #2a2840, #16142a);
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 60px rgba(225, 48, 108, 0.08);
  position: relative;
}

/* Reflective glow */
.showcase-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), transparent 40%, rgba(225, 48, 108, 0.1));
  z-index: -1;
  filter: blur(1px);
}

.showcase-frame img {
  width: 240px;
  height: 480px;
  border-radius: 34px;
  object-fit: cover;
  display: block;
}

.showcase-info {
  max-width: 360px;
}

.showcase-number {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.showcase-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.showcase-info p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.showcase-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.showcase-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.showcase-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: scale(1.1);
}

.showcase-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gradient);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.4);
}

@media (max-width: 768px) {
  .showcase-item {
    flex-direction: column;
    gap: 24px;
  }

  .showcase-frame img {
    width: 200px;
    height: 400px;
  }

  .showcase-info {
    text-align: center;
  }
}

/* ========================================
   TRUST / SECURITY
   ======================================== */
.trust-section {
  padding: 120px 0;
  background: var(--bg);
}

.trust-header {
  text-align: center;
  margin-bottom: 64px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.5s;
  transform-origin: left;
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--glow-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--card-glow);
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(225, 48, 108, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 22px;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
}

/* Glow ring */
.trust-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 21px;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  filter: blur(6px);
  transition: opacity 0.4s;
}

.trust-card:hover .trust-icon {
  transform: scale(1.1) rotate(5deg);
}

.trust-card:hover .trust-icon::after {
  opacity: 0.2;
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(20, 18, 40, 0.7);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.trust-badge-item:hover {
  border-color: var(--glow-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-badge-item i {
  color: var(--primary);
  font-size: 18px;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 120px 0;
  background: #0a0920;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(20, 18, 40, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Quote marks */
.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--glow-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), var(--card-glow);
}

.testimonial-card.featured {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(225, 48, 108, 0.25);
}

.testimonial-card.featured:hover {
  box-shadow: 0 24px 72px rgba(225, 48, 108, 0.35);
  transform: translateY(-10px) scale(1.02);
}

.stars {
  color: #fbbf24;
  margin-bottom: 18px;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card>p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-card.featured>p {
  color: rgba(255, 255, 255, 0.95);
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.author h4 {
  font-size: 15px;
  font-weight: 700;
}

.author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-card.featured .author span {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
  padding: 120px 0;
  background: var(--bg);
}

.faq-grid {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(20, 18, 40, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
}

.faq-item:hover {
  border-color: var(--glow-border);
  transform: translateX(4px);
}

.faq-item.active {
  border-color: rgba(225, 48, 108, 0.2);
  background: rgba(20, 18, 40, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 20px rgba(225, 48, 108, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq-question i {
  transition: transform 0.3s;
  font-size: 14px;
  color: var(--text-muted);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 28px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================
   CTA / DOWNLOAD
   ======================================== */
.cta-section {
  padding: 140px 0;
  text-align: center;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.15), transparent 50%);
  pointer-events: none;
}

/* Animated floating shapes */
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  animation: ctaFloat 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaFloat {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.cta-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 44px;
}

.download-counter {
  margin-bottom: 44px;
}

.counter-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.7;
}

.counter-number {
  font-size: 52px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cta-buttons .btn-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.btn-text {
  font-size: 18px;
  font-weight: 700;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg);
  border-top: none;
  padding: 0 0 28px;
  position: relative;
}

.footer-top {
  padding: 72px 0 0;
  position: relative;
}

/* Gradient divider instead of border */
.footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 48, 108, 0.2), rgba(131, 58, 180, 0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 16px 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.social-link::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  filter: blur(4px);
  transition: opacity 0.3s;
}

.social-link:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px) scale(1.1);
}

.social-link:hover::after {
  opacity: 0.3;
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 12px;
}

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links-col a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.made-with {
  margin-top: 8px;
}

.made-with i {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ACTIVITY NOTIFICATIONS
   ======================================== */
.activity-notifications {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.activity-notification {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(6, 5, 15, 0.92);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(225, 48, 108, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: notifSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    notifFadeOut 0.5s ease 4.5s forwards;
  max-width: 340px;
  pointer-events: auto;
}

@keyframes notifSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes notifFadeOut {
  to {
    opacity: 0;
    transform: translateX(120%);
  }
}

.activity-notification img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

.activity-notification-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.activity-notification-content span {
  font-size: 12px;
  color: var(--text-muted);
}

.activity-notification-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--surface-solid);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 16px 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--primary);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(14, 12, 28, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  z-index: 999;
  position: relative;
}

.back-to-top::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  z-index: -1;
  filter: blur(4px);
  transition: opacity 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  position: fixed;
}

.back-to-top:hover {
  background: var(--gradient);
  border-color: transparent;
  transform: translateY(-4px);
}

.back-to-top:hover::after {
  opacity: 0.3;
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-element.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Staggered delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ========================================
   HOW IT WORKS - CONNECTOR LINES
   ======================================== */
.steps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px auto 30px;
  position: relative;
  max-width: 700px;
}

.connector-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.5), 0 0 40px rgba(225, 48, 108, 0.2);
  animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.5), 0 0 40px rgba(225, 48, 108, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.7), 0 0 60px rgba(225, 48, 108, 0.35);
  }
}

.connector-line {
  height: 2px;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.connector-line::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(225, 48, 108, 0.1), rgba(131, 56, 236, 0.5));
}

.connector-left::before {
  right: 0;
  background: linear-gradient(90deg, rgba(131, 56, 236, 0.1), rgba(225, 48, 108, 0.6));
  animation: connectorSlideLeft 2s ease-out forwards;
}

.connector-right::before {
  left: 0;
  background: linear-gradient(90deg, rgba(225, 48, 108, 0.6), rgba(131, 56, 236, 0.1));
  animation: connectorSlideRight 2s ease-out forwards;
}

@keyframes connectorSlideLeft {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes connectorSlideRight {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

.connector-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(225, 48, 108, 0.6);
}

.connector-left::after {
  left: 0;
  animation: dotMoveLeft 3s ease-in-out infinite;
}

.connector-right::after {
  right: 0;
  animation: dotMoveRight 3s ease-in-out infinite;
}

@keyframes dotMoveLeft {

  0%,
  100% {
    left: 100%;
  }

  50% {
    left: 0%;
  }
}

@keyframes dotMoveRight {

  0%,
  100% {
    right: 100%;
  }

  50% {
    right: 0%;
  }
}

/* Step footer tags */
.step-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--primary);
  background: rgba(225, 48, 108, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(225, 48, 108, 0.15);
}

.step-tag i {
  font-size: 10px;
}

/* ========================================
   LIVE NETWORK - GLOBE ANIMATION
   ======================================== */
.live-globe-wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px;
  background: rgba(10, 9, 22, 0.6);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.live-globe-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(131, 56, 236, 0.08), transparent 60%);
  pointer-events: none;
}

.live-globe {
  width: 180px;
  height: 180px;
  position: relative;
  flex-shrink: 0;
}

.globe-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 56, 236, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.globe-center i {
  font-size: 32px;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(225, 48, 108, 0.5);
}

.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(225, 48, 108, 0.15);
}

.globe-ring.ring-1 {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  animation: globeRotate 8s linear infinite;
}

.globe-ring.ring-2 {
  width: 140px;
  height: 140px;
  margin: -70px 0 0 -70px;
  border-color: rgba(131, 56, 236, 0.12);
  animation: globeRotate 12s linear infinite reverse;
}

.globe-ring.ring-3 {
  width: 178px;
  height: 178px;
  margin: -89px 0 0 -89px;
  border-color: rgba(255, 255, 255, 0.06);
  animation: globeRotate 16s linear infinite;
}

@keyframes globeRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.globe-ping {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.6);
}

.globe-ping.ping-1 {
  top: 20px;
  right: 30px;
  animation: globePing 2s ease-in-out infinite;
}

.globe-ping.ping-2 {
  bottom: 30px;
  left: 20px;
  animation: globePing 2s ease-in-out infinite 0.7s;
}

.globe-ping.ping-3 {
  top: 50%;
  right: 5px;
  animation: globePing 2s ease-in-out infinite 1.4s;
}

@keyframes globePing {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}

/* Sparkline bars in stat boxes */
.live-stat-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-left: auto;
  padding-left: 12px;
}

.sparkline-bar {
  width: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.sparkline-bar.active {
  background: var(--gradient);
  box-shadow: 0 0 6px rgba(225, 48, 108, 0.3);
}

.live-stat-box {
  display: flex;
  align-items: center;
}

/* Activity count badge */
.activity-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--primary);
  background: rgba(225, 48, 108, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(225, 48, 108, 0.15);
  font-weight: 600;
}

/* ========================================
   CREATOR ENHANCEMENTS
   ======================================== */
.creator-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.creator-verified {
  color: #3b82f6;
  font-size: 14px;
}

.creator-category {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px 0;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.category-tag i {
  font-size: 10px;
  color: var(--primary);
}

.creator-engagement {
  margin-top: 12px;
}

.engagement-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.engagement-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 1s ease-out;
}

.engagement-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.creator-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

/* Creator Perks Grid */
.creator-perks {
  margin-top: 48px;
  text-align: center;
  padding: 40px;
  background: rgba(10, 9, 22, 0.5);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.creator-perks h3 {
  font-size: 22px;
  margin-bottom: 24px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.perk-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
}

.perk-item:hover {
  background: rgba(225, 48, 108, 0.06);
  border-color: rgba(225, 48, 108, 0.15);
  transform: translateY(-4px);
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(131, 56, 236, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk-icon i {
  font-size: 18px;
  color: var(--primary);
}

.perk-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .perks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .live-globe-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .live-globe {
    width: 140px;
    height: 140px;
  }
}

/* ========================================
   QR CODE SECTIONS
   ======================================== */
.qr-code-section {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-code-box {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(225, 48, 108, 0.1);
}

.qr-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Footer download section */
.footer-download {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-qr-box {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

.footer-download-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-download-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .footer-download {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   SECTION SCROLL TRANSITION ANIMATIONS
   ======================================== */
section {
  position: relative;
}

.section-transition {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-transition.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}