/* ----------------------------------------------------
 * DESIGN SYSTEM & UTILITIES - GIPENCY PREMIUM LIGHT/DARK STYLE
 * ---------------------------------------------------- */

:root {
  /* Default Dark Theme Variables */
  --bg-color-1: #060816;
  --bg-color-2: #0b1026;
  --primary: #6d5dfb;
  --secondary: #00d4ff;
  --accent: #8b5cf6;
  --white: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.3);
  --border-light: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(13, 17, 39, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(20px);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
  
  /* Icon category colors */
  --c-purple: #6d5dfb;
  --c-cyan: #00d4ff;
  --c-orange: #ff7b00;
  --c-yellow: #ffd700;
  --c-green: #10b981;
  --c-wa: #25d366;
  --c-ig: #e1306c;
  --c-tg: #0088cc;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Layout Dimensions */
  --app-max-width: 430px;
}

/* Light Theme Variables (Default layout target class) */
body.light-version {
  --bg-color-1: #f3f6fc;
  --bg-color-2: #ffffff;
  --primary: #4f46e5;
  --secondary: #0ea5e9;
  --accent: #8b5cf6;
  --white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --border-light: rgba(15, 23, 42, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-blur: blur(25px);
  --glass-shadow: 0 12px 32px rgba(109, 93, 251, 0.04), 0 4px 6px rgba(0, 0, 0, 0.01);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  background-color: var(--bg-color-1);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

/* Custom Scrollbar for inner container */
.scroll-container::-webkit-scrollbar {
  width: 5px;
}
.scroll-container::-webkit-scrollbar-track {
  background: rgba(6, 8, 22, 0.05);
}
.scroll-container::-webkit-scrollbar-thumb {
  background: rgba(109, 93, 251, 0.15);
  border-radius: 10px;
}
.scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(109, 93, 251, 0.35);
}

/* ----------------------------------------------------
 * PRE-LOADER ANIMATION
 * ---------------------------------------------------- */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color-1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.svg-loader-logo {
  width: 80px;
  height: 80px;
  animation: logo-spin 4s linear infinite;
}

.loader-bar-bg {
  width: 180px;
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

body:not(.light-version) .loader-bar-bg {
  background: rgba(255, 255, 255, 0.05);
}

.loader-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: absolute;
  left: -100%;
  animation: load-slide 2.5s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

.loader-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-secondary);
  text-shadow: 0 0 10px rgba(109, 93, 251, 0.2);
}

@keyframes logo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes load-slide {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ----------------------------------------------------
 * BACKGROUNDS (AURORA & GRID MESH)
 * ---------------------------------------------------- */
.bg-glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  filter: blur(100px);
  background: radial-gradient(circle at 50% 50%, var(--bg-color-2), var(--bg-color-1));
  transition: background 0.4s ease;
}

body.light-version .bg-glow-container {
  background: radial-gradient(circle at 50% 50%, #ffffff, #f0f3fc);
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0.45;
  filter: blur(60px);
  transition: all 0.4s ease;
}

body.light-version .aurora-orb {
  mix-blend-mode: multiply;
  opacity: 0.25;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, rgba(109, 93, 251, 0) 70%);
  top: -10%;
  left: -10%;
  animation: drift-orb-1 25s ease-in-out infinite alternate;
}

body.light-version .orb-1 {
  background: radial-gradient(circle, rgba(109, 93, 251, 0.4) 0%, rgba(109, 93, 251, 0) 70%);
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--secondary) 0%, rgba(0, 212, 255, 0) 70%);
  bottom: 10%;
  right: -5%;
  animation: drift-orb-2 22s ease-in-out infinite alternate;
}

body.light-version .orb-2 {
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0) 70%);
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent) 0%, rgba(139, 92, 246, 0) 70%);
  top: 40%;
  left: 30%;
  animation: drift-orb-3 28s ease-in-out infinite alternate;
}

body.light-version .orb-3 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0) 70%);
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #f43f5e 0%, rgba(244, 63, 94, 0) 70%);
  top: 15%;
  right: 20%;
  animation: drift-orb-4 18s ease-in-out infinite alternate;
}

body.light-version .orb-4 {
  background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, rgba(244, 63, 94, 0) 70%);
}

@keyframes drift-orb-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(120px, 80px) scale(1.2); }
  100% { transform: translate(-40px, 150px) scale(0.9); }
}

@keyframes drift-orb-2 {
  0% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-100px, -120px) scale(0.8); }
  100% { transform: translate(50px, 40px) scale(1.2); }
}

@keyframes drift-orb-3 {
  0% { transform: translate(0, 0) scale(0.9); }
  50% { transform: translate(-80px, 100px) scale(1.1); }
  100% { transform: translate(80px, -50px) scale(1); }
}

@keyframes drift-orb-4 {
  0% { transform: translate(0, 0) scale(1.2); }
  50% { transform: translate(60px, -60px) scale(0.9); }
  100% { transform: translate(-120px, 40px) scale(1.1); }
}

/* Grid Overlay Background */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.007) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center top;
  z-index: 2;
  pointer-events: none;
  transition: all 0.4s ease;
}

body:not(.light-version) .grid-overlay {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
}

/* ----------------------------------------------------
 * NATIVE APP FRAME (MOBILE-FIRST CENTERED LAYOUT)
 * ---------------------------------------------------- */
.app-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: var(--app-max-width);
  margin: 0 auto;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25), 
              0 0 100px rgba(109, 93, 251, 0.03);
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.03);
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}

body:not(.light-version) .app-frame {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 
              0 0 100px rgba(109, 93, 251, 0.07);
  background: rgba(6, 8, 22, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.scroll-container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 20px 20px 40px 20px;
  -webkit-overflow-scrolling: touch;
}

/* ----------------------------------------------------
 * TOP NAVIGATION BAR
 * ---------------------------------------------------- */
.top-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 5px 25px 5px;
  position: relative;
  z-index: 20;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.theme-toggle, .menu-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--glass-shadow);
}

.theme-toggle:hover, .menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 93, 251, 0.3);
}

.theme-toggle:active, .menu-toggle:active {
  transform: translateY(0);
}

.icon-moon, .icon-hamburger {
  width: 16px;
  height: 16px;
}

/* ----------------------------------------------------
 * HERO SECTION & FLOATING CHARS
 * ---------------------------------------------------- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
  position: relative;
}

/* Floating Character styling */
.floating-char {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 4;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.char-top-left {
  top: -65px;
  left: -75px;
  width: 220px;
  animation: float-top-left 6s ease-in-out infinite;
}

.char-top-right {
  top: -30px;
  right: -70px;
  width: 210px;
  animation: float-top-right 5.5s ease-in-out infinite;
}

.char-bottom-left {
  bottom: -90px;
  left: -90px;
  width: 250px;
  animation: float-bottom-left 5s ease-in-out infinite;
}

.char-bottom-right {
  bottom: -90px;
  right: -85px;
  width: 245px;
  animation: float-bottom-right 6.5s ease-in-out infinite;
}

@keyframes float-top-left {
  0% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

@keyframes float-top-right {
  0% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
  100% { transform: translateY(0) rotate(1deg); }
}

@keyframes float-bottom-left {
  0% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(0) rotate(-1deg); }
}

@keyframes float-bottom-right {
  0% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
  100% { transform: translateY(0) rotate(1deg); }
}

/* Titles */
.brand-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.brand-title-gradient {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 45%, #eab308 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(109, 93, 251, 0.15));
}

.brand-hero-sub {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #eab308;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(234, 179, 8, 0.05);
}

.brand-hero-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 95%;
  margin-bottom: 28px;
}

/* Hero Button Stack */
.hero-btn-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  z-index: 10;
}

.btn-wa-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #6d5dfb, #8b5cf6);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(109, 93, 251, 0.3), 
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.btn-wa-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(109, 93, 251, 0.5), 
              0 0 15px rgba(0, 212, 255, 0.2);
}

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

.btn-price-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: var(--white);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03), 
              0 1px 2px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.btn-price-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(109, 93, 251, 0.2);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

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

.icon-wa {
  width: 18px;
  height: 18px;
}

/* ----------------------------------------------------
 * STATISTICS SECTION
 * ---------------------------------------------------- */
.stats-section {
  margin-bottom: 35px;
}

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

.stat-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(109, 93, 251, 0.2);
}

.stat-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(109, 93, 251, 0.15), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover .stat-glow {
  opacity: 1;
}

.stat-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(109, 93, 251, 0.05);
  border: 1px solid rgba(109, 93, 251, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  transform: rotate(5deg) scale(1.05);
  border-color: rgba(109, 93, 251, 0.3);
}

.stat-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--text-primary) 40%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ----------------------------------------------------
 * WHY CHOOSE US
 * ---------------------------------------------------- */
.why-choose-section {
  margin-bottom: 35px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-light), transparent);
}

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

.why-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 93, 251, 0.2);
}

.why-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(109, 93, 251, 0.05), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover .why-card-glow {
  opacity: 1;
}

.why-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(109, 93, 251, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid rgba(109, 93, 251, 0.15);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon-box {
  transform: scale(1.05);
  background: rgba(109, 93, 251, 0.15);
  border-color: var(--primary);
}

.why-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.why-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.why-desc {
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* ----------------------------------------------------
 * TESTIMONIALS SLIDER
 * ---------------------------------------------------- */
.testimonial-section {
  margin-bottom: 35px;
}

.slider-outer-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 5px 0 15px 0;
}

.testimonial-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: 2px;
  padding-right: 2px;
  cursor: grab;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(100% - 30px);
  scroll-snap-align: center;
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
}

.testimonial-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent 50%);
  pointer-events: none;
}

.testimonial-card.active-card {
  border-color: rgba(109, 93, 251, 0.3);
  box-shadow: 0 16px 36px rgba(109, 93, 251, 0.06), 
              0 0 25px rgba(109, 93, 251, 0.03);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.user-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(109, 93, 251, 0.2);
}

.user-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.user-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.stars {
  color: var(--c-yellow);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 12px;
}

.review-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(109, 93, 251, 0.05);
  border: 1px solid rgba(109, 93, 251, 0.1);
  border-radius: 12px;
  color: var(--primary);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 5px;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

body:not(.light-version) .dot {
  background: rgba(255, 255, 255, 0.15);
}

.dot.active {
  width: 18px;
  border-radius: 6px;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

/* ----------------------------------------------------
 * CTA SECTION
 * ---------------------------------------------------- */
.cta-section {
  margin-bottom: 35px;
}

.cta-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 30px 22px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.cta-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.05), rgba(109, 93, 251, 0.05), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cta-subtitle {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 22px;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2), 
              inset 0 1px 1px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  cursor: pointer;
}

.btn-cta-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

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

.cta-icon-wa {
  width: 18px;
  height: 18px;
}

/* ----------------------------------------------------
 * FOOTER
 * ---------------------------------------------------- */
.app-footer {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.footer-svg-logo {
  width: 22px;
  height: 22px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.copyright {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.developer-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-shadow: 0 0 5px rgba(109, 93, 251, 0.1);
}

/* ----------------------------------------------------
 * INITIALIZATION ENTRANCE ANIMATIONS
 * ---------------------------------------------------- */
.hero-section,
.stats-section,
.why-choose-section,
.testimonial-section,
.cta-section,
.app-footer {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Entrance classes triggered by JS */
.fade-up-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0) !important;
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }
.delay-6 { transition-delay: 0.85s; }
.delay-7 { transition-delay: 1s; }

/* ----------------------------------------------------
 * PREMIUM LIGHT TRACKING CARD BORDERS (Vercel/Linear Effect)
 * ---------------------------------------------------- */
.stat-card, .why-card, .testimonial-card, .cta-card, .link-card {
  position: relative;
  z-index: 10;
}

.stat-card::before, 
.why-card::before, 
.testimonial-card::before,
.cta-card::before,
.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.05) 40%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

body:not(.light-version) .stat-card::before, 
body:not(.light-version) .why-card::before, 
body:not(.light-version) .testimonial-card::before,
body:not(.light-version) .cta-card::before,
body:not(.light-version) .link-card::before {
  background: radial-gradient(
    250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.03) 40%,
    transparent 100%
  );
}

.stat-card:hover::before, 
.why-card:hover::before, 
.testimonial-card:hover::before,
.cta-card:hover::before,
.link-card:hover::before {
  opacity: 1;
}

/* ----------------------------------------------------
 * DIRECT LINKS STACK & CARDS
 * ---------------------------------------------------- */
.direct-links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  margin-top: 10px;
  z-index: 10;
}

.link-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 16px 20px;
  display: block;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  cursor: pointer;
}

.link-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(109, 93, 251, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.link-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(109, 93, 251, 0.3);
  box-shadow: 0 16px 36px rgba(109, 93, 251, 0.05), 
              0 0 20px rgba(109, 93, 251, 0.02);
}

body:not(.light-version) .link-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 
              0 0 20px rgba(109, 93, 251, 0.1);
}

.link-card:active {
  transform: translateY(-1px) scale(0.99);
}

.link-card:hover .link-card-glow {
  opacity: 1;
}

.link-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.link-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-text-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.link-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.link-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.chevron-arrow {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), fill 0.3s ease;
}

.link-card:hover .chevron-arrow {
  transform: translateX(4px);
  fill: var(--text-primary);
}

/* Category Glow States */
.icon-globe svg { fill: #3b82f6; }
body.light-version .icon-globe { border-color: rgba(59, 130, 246, 0.2); background: rgba(59, 130, 246, 0.05); }

.icon-heart svg { fill: #ec4899; }
body.light-version .icon-heart { border-color: rgba(236, 72, 153, 0.2); background: rgba(236, 72, 153, 0.05); }

.icon-spotify svg { fill: #1db954; }
body.light-version .icon-spotify { border-color: rgba(29, 185, 84, 0.2); background: rgba(29, 185, 84, 0.05); }

.icon-tiktok svg { fill: var(--text-primary); }
body.light-version .icon-tiktok { border-color: rgba(15, 23, 42, 0.15); background: rgba(15, 23, 42, 0.03); }
body:not(.light-version) .icon-tiktok { border-color: rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.03); }

#lnk-website:hover .icon-box { border-color: #3b82f6; box-shadow: 0 0 15px rgba(59, 130, 246, 0.3); }
#lnk-sociabuzz:hover .icon-box { border-color: #ec4899; box-shadow: 0 0 15px rgba(236, 72, 153, 0.3); }
#lnk-spotify:hover .icon-box { border-color: #1db954; box-shadow: 0 0 15px rgba(29, 185, 84, 0.3); }
#lnk-tiktok:hover .icon-box { border-color: var(--text-primary); box-shadow: 0 0 15px rgba(109, 93, 251, 0.2); }

/* ----------------------------------------------------
 * FLOATING PARTICLE DUST CANVAS
 * ---------------------------------------------------- */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.85;
}

