/* ==========================================================================
   GOT VIRAL - PREMIUM STYLESHEET (Elementor Free Compatible)
   ========================================================================== */

/* Typography Import - Outfit & Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Design Tokens & Theme Configuration */
:root, .gv-wrapper {
  /* Color Palette - Bright, Premium, Colorful */
  --gv-color-bg-primary: #ffffff;
  --gv-color-bg-secondary: #f8fafc;
  --gv-color-bg-tertiary: #f1f5f9;
  
  --gv-color-text-primary: #0f172a;
  --gv-color-text-secondary: #334155;
  --gv-color-text-muted: #64748b;
  
  /* Brand Accents */
  --gv-accent-blue: #3b82f6;
  --gv-accent-purple: #8b5cf6;
  --gv-accent-pink: #ec4899;
  --gv-accent-orange: #f97316;
  --gv-accent-emerald: #10b981;
  --gv-accent-sky: #0ea5e9;
  
  /* Glassmorphism Settings */
  --gv-glass-bg: rgba(255, 255, 255, 0.7);
  --gv-glass-border: rgba(255, 255, 255, 0.6);
  --gv-glass-blur: 16px;
  
  /* Shadow Systems */
  --gv-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --gv-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.04), 0 2px 4px rgba(15, 23, 42, 0.02);
  --gv-shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.06), 0 4px 8px rgba(15, 23, 42, 0.03);
  --gv-shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.04);
  --gv-shadow-glow-blue: 0 10px 30px rgba(59, 130, 246, 0.15);
  --gv-shadow-glow-purple: 0 10px 30px rgba(139, 92, 246, 0.15);
  --gv-shadow-glow-pink: 0 10px 30px rgba(236, 72, 153, 0.15);
  
  /* Layout */
  --gv-font-sans: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --gv-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --gv-radius-sm: 8px;
  --gv-radius-md: 16px;
  --gv-radius-lg: 24px;
  --gv-radius-xl: 32px;
  --gv-radius-full: 9999px;
  
  /* Animation Timing */
  --gv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gv-transition-fast: 0.2s var(--gv-ease);
  --gv-transition-normal: 0.4s var(--gv-ease);
  --gv-transition-slow: 0.8s var(--gv-ease);
}

/* ==========================================================================
   GLOBAL WRAPPER & RESET GENTLE
   ========================================================================== */
.gv-wrapper {
  background-color: var(--gv-color-bg-primary);
  color: var(--gv-color-text-primary);
  font-family: var(--gv-font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gv-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.gv-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.gv-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.gv-section-alt {
  background-color: var(--gv-color-bg-secondary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Grids & Flex */
.gv-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.gv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gv-flex-center { display: flex; align-items: center; justify-content: center; }

/* Responsive Grids */
@media (max-width: 1024px) {
  .gv-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gv-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gv-section { padding: 80px 0; }
  .gv-section-alt { padding: 80px 0; }
}

@media (max-width: 768px) {
  .gv-grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .gv-grid-3 { grid-template-columns: 1fr; }
  .gv-grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.gv-title-large {
  font-family: var(--gv-font-sans);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--gv-color-text-primary);
}

.gv-title-section {
  font-family: var(--gv-font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--gv-color-text-primary);
}

.gv-title-card {
  font-family: var(--gv-font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.gv-subtitle {
  font-family: var(--gv-font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--gv-color-text-secondary);
  max-width: 600px;
  margin-bottom: 32px;
}

.gv-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--gv-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(59, 130, 246, 0.1);
  color: var(--gv-accent-blue);
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.gv-text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, var(--gv-accent-blue) 0%, var(--gv-accent-purple) 50%, var(--gv-accent-pink) 100%);
}

.gv-text-gradient-sunset {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, var(--gv-accent-pink) 0%, var(--gv-accent-orange) 100%);
}

/* ==========================================================================
   BUTTONS (MAGNETIC CAPABLE)
   ========================================================================== */
.gv-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--gv-radius-full);
  font-family: var(--gv-font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  outline: none;
  border: none;
  z-index: 2;
}

.gv-btn-primary {
  background: linear-gradient(135deg, var(--gv-accent-blue) 0%, var(--gv-accent-purple) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.gv-btn-primary:hover {
  background: linear-gradient(135deg, var(--gv-accent-blue) 20%, var(--gv-accent-purple) 80%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.gv-btn-secondary {
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  backdrop-filter: blur(var(--gv-glass-blur));
  color: var(--gv-color-text-primary);
  box-shadow: var(--gv-shadow-sm);
}

.gv-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.15);
  color: var(--gv-color-text-primary);
  transform: translateY(-2px);
  box-shadow: var(--gv-shadow-md);
}

.gv-btn-text {
  background: transparent;
  color: var(--gv-accent-blue);
  padding: 8px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--gv-transition-fast);
}

.gv-btn-text:hover {
  gap: 12px;
}

.gv-btn-text svg {
  width: 18px;
  height: 18px;
  transition: transform var(--gv-transition-fast);
}

/* ==========================================================================
   GLASSMORPHIC CARDS
   ========================================================================== */
.gv-card {
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  backdrop-filter: blur(var(--gv-glass-blur));
  border-radius: var(--gv-radius-lg);
  padding: 32px;
  box-shadow: var(--gv-shadow-glass);
  transition: transform var(--gv-transition-normal), box-shadow var(--gv-transition-normal), border-color var(--gv-transition-normal);
  position: relative;
  overflow: hidden;
}

.gv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gv-shadow-xl);
  border-color: rgba(59, 130, 246, 0.25);
}

/* ==========================================================================
   INTERACTIVE GRADIENT MESH BACKGROUNDS
   ========================================================================== */
.gv-mesh-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.gv-mesh-blob {
  position: absolute;
  border-radius: var(--gv-radius-full);
  filter: blur(80px);
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  will-change: transform;
}

.gv-mesh-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gv-accent-blue) 0%, rgba(255,255,255,0) 70%);
  top: -10%;
  right: -5%;
  animation: gv-float-blob-1 25s infinite alternate ease-in-out;
}

.gv-mesh-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gv-accent-purple) 0%, rgba(255,255,255,0) 70%);
  bottom: -15%;
  left: -10%;
  animation: gv-float-blob-2 30s infinite alternate ease-in-out;
}

.gv-mesh-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gv-accent-pink) 0%, rgba(255,255,255,0) 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: gv-float-blob-3 20s infinite alternate ease-in-out;
}

@keyframes gv-float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 60px) scale(1.1); }
  100% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes gv-float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -80px) scale(0.9); }
  100% { transform: translate(-40px, 40px) scale(1.15); }
}

@keyframes gv-float-blob-3 {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-40%, -60%) rotate(180deg) scale(1.2); }
  100% { transform: translate(-60%, -40%) rotate(360deg) scale(0.9); }
}

/* ==========================================================================
   SCROLL REVEAL SYSTEMS
   ========================================================================== */
.gv-reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: opacity 0.8s var(--gv-ease), transform 0.8s var(--gv-ease), filter 0.8s var(--gv-ease);
}

.gv-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(10px);
  transition: opacity 0.8s var(--gv-ease), transform 0.8s var(--gv-ease), filter 0.8s var(--gv-ease);
}

.gv-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(10px);
  transition: opacity 0.8s var(--gv-ease), transform 0.8s var(--gv-ease), filter 0.8s var(--gv-ease);
}

.gv-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(10px);
  transition: opacity 0.8s var(--gv-ease), transform 0.8s var(--gv-ease), filter 0.8s var(--gv-ease);
}

.gv-revealed {
  opacity: 1;
  transform: translate(0) scale(1);
  filter: blur(0);
}

/* Stagger delays */
.gv-delay-1 { transition-delay: 0.1s; }
.gv-delay-2 { transition-delay: 0.2s; }
.gv-delay-3 { transition-delay: 0.3s; }
.gv-delay-4 { transition-delay: 0.4s; }
.gv-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   HEADER / NAVIGATION BAR
   ========================================================================== */
.gv-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--gv-radius-full);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: top var(--gv-transition-normal), background var(--gv-transition-normal), box-shadow var(--gv-transition-normal);
}

.gv-navbar.gv-scrolled {
  top: 12px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.gv-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gv-font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--gv-color-text-primary);
  letter-spacing: -0.02em;
}

.gv-nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--gv-grad-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.gv-nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.gv-nav-link {
  font-family: var(--gv-font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--gv-color-text-secondary);
  transition: color var(--gv-transition-fast);
}

.gv-nav-link:hover {
  color: var(--gv-accent-blue);
}

.gv-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.gv-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gv-color-text-primary);
  margin: 6px 0;
  transition: transform var(--gv-transition-normal), opacity var(--gv-transition-normal);
}

@media (max-width: 900px) {
  .gv-nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--gv-radius-lg);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--gv-transition-normal), opacity var(--gv-transition-normal);
    box-shadow: var(--gv-shadow-lg);
  }

  .gv-nav-menu.gv-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .gv-nav-toggle {
    display: block;
  }

  .gv-navbar.gv-menu-open .gv-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .gv-navbar.gv-menu-open .gv-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .gv-navbar.gv-menu-open .gv-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.gv-hero-section {
  height: 100vh;
  max-height: 1080px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, #fcfdff 0%, #ffffff 100%);
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 80px;
}

.gv-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.65;
}

.gv-hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.gv-hero-content {
  text-align: left;
  max-width: 650px;
  z-index: 2;
}

.gv-hero-tagline {
  font-family: var(--gv-font-sans);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--gv-color-text-primary);
}

.gv-hero-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--gv-color-text-secondary);
  max-width: 540px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Hero floating metrics tags */
.gv-hero-metrics {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.gv-hero-metric-tag {
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  backdrop-filter: blur(var(--gv-glass-blur));
  padding: 10px 20px;
  border-radius: var(--gv-radius-full);
  box-shadow: var(--gv-shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gv-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gv-color-text-secondary);
  transition: transform var(--gv-transition-normal), box-shadow var(--gv-transition-normal);
  cursor: default;
}

.gv-hero-metric-tag:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--gv-shadow-md);
  border-color: rgba(59, 130, 246, 0.2);
}

.gv-hero-metric-tag span {
  color: var(--gv-accent-blue);
  font-weight: 800;
}

/* Right Visual Area */
.gv-hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gv-hero-scene {
  position: relative;
  width: 100%;
  height: 380px;
  transform-style: preserve-3d;
}

.gv-hero-glass-card {
  position: absolute;
  background: var(--gv-glass-bg);
  backdrop-filter: blur(var(--gv-glass-blur));
  border: 1px solid var(--gv-glass-border);
  border-radius: var(--gv-radius-md);
  padding: 20px;
  box-shadow: var(--gv-shadow-lg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s var(--gv-ease);
}

.gv-hero-card-1 {
  top: 5%;
  left: 0;
  width: 220px;
  border-left: 4px solid var(--gv-accent-blue);
  z-index: 3;
}

.gv-hero-card-2 {
  top: 40%;
  right: 0;
  width: 200px;
  border-left: 4px solid var(--gv-accent-pink);
  z-index: 4;
}

.gv-hero-card-3 {
  bottom: 5%;
  left: 15%;
  width: 210px;
  border-left: 4px solid var(--gv-accent-emerald);
  z-index: 2;
}

.gv-hero-card-meta {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gv-color-text-muted);
  margin-bottom: 6px;
}

.gv-hero-card-title {
  font-family: var(--gv-font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.gv-hero-card-chart {
  margin-top: 12px;
}

.gv-hero-card-stat {
  font-size: 0.75rem;
  color: var(--gv-color-text-muted);
}

/* Hero scroll indicator */
.gv-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gv-color-text-muted);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.gv-hero-scroll:hover {
  opacity: 1;
  color: var(--gv-color-text-primary);
}

.gv-hero-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid var(--gv-color-text-muted);
  border-radius: 10px;
  position: relative;
}

.gv-hero-scroll-wheel {
  width: 4px;
  height: 6px;
  background: var(--gv-accent-blue);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: gv-scroll-wheel 1.5s infinite;
}

@keyframes gv-scroll-wheel {
  0% { opacity: 0; top: 6px; }
  30% { opacity: 1; }
  100% { opacity: 0; top: 18px; }
}

/* Custom Pointer Cursor & Trailing Background Glow */
.gv-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  mix-blend-mode: screen;
}

.gv-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--gv-accent-blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  transition: width 0.15s var(--gv-ease), height 0.15s var(--gv-ease), background-color 0.15s var(--gv-ease);
}

/* Hide default cursor on desktops with custom cursor supported */
@media (hover: hover) and (pointer: fine) {
  .gv-wrapper {
    cursor: none;
  }
  .gv-wrapper a, 
  .gv-wrapper button, 
  .gv-wrapper .gv-btn, 
  .gv-wrapper .gv-services-tab, 
  .gv-wrapper .gv-showcase-tab, 
  .gv-wrapper .gv-faq-trigger,
  .gv-wrapper .gv-hero-scroll {
    cursor: none;
  }
}

.gv-cursor-hover {
  width: 24px;
  height: 24px;
  background-color: rgba(59, 130, 246, 0.15);
  border: 1.5px solid var(--gv-accent-blue);
}

@media (max-width: 900px) {
  .gv-hero-section {
    height: auto;
    min-height: 100vh;
    max-height: none;
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .gv-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .gv-hero-content {
    margin: 0 auto;
    text-align: center;
  }
  .gv-hero-metrics {
    justify-content: center;
  }
  .gv-hero-scene {
    height: 300px;
    max-width: 440px;
    margin: 0 auto;
  }
  .gv-hero-glass-card {
    padding: 16px;
  }
  .gv-hero-card-1 { width: 180px; }
  .gv-hero-card-2 { width: 160px; }
  .gv-hero-card-3 { width: 170px; }
  .gv-hero-scroll {
    display: none;
  }
}

/* ==========================================================================
   2. TRUST SECTION
   ========================================================================== */
.gv-trust-section {
  padding: 60px 0;
  border-top: 1px solid var(--gv-color-bg-tertiary);
  border-bottom: 1px solid var(--gv-color-bg-tertiary);
  background: white;
}

.gv-trust-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gv-color-text-muted);
  margin-bottom: 32px;
}

.gv-marquee-container {
  overflow: hidden;
  display: flex;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.gv-marquee-content {
  display: flex;
  gap: 80px;
  animation: gv-marquee 30s linear infinite;
  min-width: 100%;
}

.gv-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--gv-font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gv-color-text-muted);
  opacity: 0.6;
  transition: opacity var(--gv-transition-fast), color var(--gv-transition-fast);
}

.gv-marquee-item:hover {
  opacity: 1;
  color: var(--gv-color-text-primary);
}

.gv-marquee-logo {
  height: 32px;
  width: auto;
  fill: currentColor;
}

@keyframes gv-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   3. ABOUT SECTION
   ========================================================================== */
.gv-about-section {
  background: #ffffff;
}

.gv-about-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

/* Creative floating cards mockup in about section */
.gv-about-card-stack {
  position: relative;
  width: 80%;
  height: 80%;
}

.gv-about-floating-card {
  position: absolute;
  padding: 24px;
  border-radius: var(--gv-radius-md);
  width: 260px;
  box-shadow: var(--gv-shadow-lg);
  background: var(--gv-glass-bg);
  backdrop-filter: blur(var(--gv-glass-blur));
  border: 1px solid var(--gv-glass-border);
  transition: transform var(--gv-transition-normal), z-index 0s;
}

.gv-about-card-1 {
  top: 10%;
  left: 10%;
  z-index: 3;
  transform: rotate(-6deg);
  border-left: 4px solid var(--gv-accent-blue);
}

.gv-about-card-2 {
  top: 30%;
  right: 5%;
  z-index: 2;
  transform: rotate(4deg);
  border-left: 4px solid var(--gv-accent-purple);
}

.gv-about-card-3 {
  bottom: 5%;
  left: 20%;
  z-index: 4;
  transform: rotate(-2deg);
  border-left: 4px solid var(--gv-accent-pink);
}

.gv-about-floating-card:hover {
  z-index: 10;
  transform: scale(1.05) rotate(0deg);
  border-color: rgba(59,130,246,0.3);
}

.gv-about-card-metric {
  font-family: var(--gv-font-sans);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.gv-services-section {
  background-color: var(--gv-color-bg-secondary);
}

.gv-services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

/* Service Navigation tabs/pills for categories */
.gv-services-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gv-services-tab {
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  padding: 10px 24px;
  border-radius: var(--gv-radius-full);
  font-family: var(--gv-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gv-color-text-secondary);
  cursor: pointer;
  transition: all var(--gv-transition-normal);
}

.gv-services-tab.gv-active, .gv-services-tab:hover {
  background: linear-gradient(135deg, var(--gv-accent-blue) 0%, var(--gv-accent-purple) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--gv-shadow-md);
}

/* Services Grid & Interactive Cards */
.gv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  transition: all 0.5s ease;
}

@media (max-width: 1024px) {
  .gv-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gv-services-grid {
    grid-template-columns: 1fr;
  }
}

.gv-service-card {
  --rx: 0deg;
  --ry: 0deg;
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  backdrop-filter: blur(var(--gv-glass-blur));
  border-radius: var(--gv-radius-lg);
  padding: 40px;
  box-shadow: var(--gv-shadow-glass);
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0px);
  transform-style: preserve-3d;
  transition: box-shadow var(--gv-transition-normal), border-color var(--gv-transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gv-service-card:hover {
  box-shadow: var(--gv-shadow-xl);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Service Card Glowing Background on Hover */
.gv-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(99, 102, 241, 0.08) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gv-service-card:hover::after {
  opacity: 1;
}

.gv-service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--gv-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--gv-accent-blue);
  transform: translateZ(20px);
  transition: transform var(--gv-transition-normal);
}

.gv-service-card:hover .gv-service-icon-box {
  transform: translateZ(30px) scale(1.05);
}

.gv-service-title {
  font-family: var(--gv-font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gv-color-text-primary);
  transform: translateZ(20px);
}

.gv-service-desc {
  font-size: 0.95rem;
  color: var(--gv-color-text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  transform: translateZ(10px);
}

.gv-service-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateZ(10px);
}

.gv-service-item {
  font-size: 0.85rem;
  color: var(--gv-color-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gv-service-item svg {
  width: 16px;
  height: 16px;
  color: var(--gv-accent-emerald);
}

.gv-service-btn {
  transform: translateZ(15px);
  margin-top: auto;
  align-self: flex-start;
}

/* ==========================================================================
   5. WHY CHOOSE US
   ========================================================================== */
.gv-why-section {
  background: #ffffff;
}

.gv-why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.gv-why-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .gv-why-comparison {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.gv-why-card {
  padding: 48px;
  border-radius: var(--gv-radius-lg);
  position: relative;
  overflow: hidden;
}

.gv-why-traditional {
  background: var(--gv-color-bg-secondary);
  border: 1px solid var(--gv-color-bg-tertiary);
}

.gv-why-gotviral {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: var(--gv-shadow-lg);
}

/* Elegant dynamic gradient border for Got Viral */
.gv-why-gotviral::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gv-grad-primary);
}

.gv-why-card-title {
  font-family: var(--gv-font-sans);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.gv-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gv-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gv-why-icon-box {
  width: 24px;
  height: 24px;
  border-radius: var(--gv-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.gv-why-traditional .gv-why-icon-box {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.gv-why-gotviral .gv-why-icon-box {
  background: rgba(16, 185, 129, 0.1);
  color: var(--gv-accent-emerald);
}

.gv-why-item-title {
  font-family: var(--gv-font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gv-color-text-primary);
}

.gv-why-item-desc {
  font-size: 0.9rem;
  color: var(--gv-color-text-secondary);
}

/* ==========================================================================
   6. PROCESS SECTION
   ========================================================================== */
.gv-process-section {
  background-color: var(--gv-color-bg-secondary);
}

.gv-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.gv-process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Animated connecting line in background */
.gv-process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: rgba(15, 23, 42, 0.05);
  z-index: 1;
}

.gv-process-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--gv-grad-primary);
  border-radius: var(--gv-radius-full);
  transition: height 0.5s ease;
}

.gv-process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.gv-process-step:last-child {
  margin-bottom: 0;
}

.gv-process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.gv-process-content {
  width: 45%;
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  backdrop-filter: blur(var(--gv-glass-blur));
  border-radius: var(--gv-radius-lg);
  padding: 32px;
  box-shadow: var(--gv-shadow-sm);
  transition: transform var(--gv-transition-normal), box-shadow var(--gv-transition-normal);
}

.gv-process-step:hover .gv-process-content {
  transform: translateY(-4px);
  box-shadow: var(--gv-shadow-lg);
  border-color: rgba(59, 130, 246, 0.2);
}

.gv-process-number {
  font-family: var(--gv-font-sans);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gv-accent-blue) 0%, var(--gv-accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.gv-process-step-title {
  font-family: var(--gv-font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gv-color-text-primary);
}

.gv-process-desc {
  font-size: 0.95rem;
  color: var(--gv-color-text-secondary);
}

.gv-process-node {
  width: 48px;
  height: 48px;
  border-radius: var(--gv-radius-full);
  background: white;
  border: 4px solid var(--gv-color-bg-tertiary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--gv-font-sans);
  color: var(--gv-color-text-muted);
  box-shadow: var(--gv-shadow-sm);
  transition: all var(--gv-transition-normal);
}

.gv-process-step.gv-active .gv-process-node {
  border-color: var(--gv-accent-blue);
  color: var(--gv-accent-blue);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  transform: translateX(-50%) scale(1.15);
}

@media (max-width: 768px) {
  .gv-process-line {
    left: 24px;
    transform: none;
  }
  
  .gv-process-step {
    flex-direction: row !important;
    justify-content: flex-start;
    margin-bottom: 48px;
  }
  
  .gv-process-content {
    width: calc(100% - 64px);
    margin-left: 64px;
  }
  
  .gv-process-node {
    left: 24px;
    transform: translateX(-50%);
  }
  
  .gv-process-step.gv-active .gv-process-node {
    transform: translateX(-50%) scale(1.1);
  }
}

/* ==========================================================================
   7. FEATURE SHOWCASE
   ========================================================================== */
.gv-showcase-section {
  background: #ffffff;
}

.gv-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gv-showcase-tab {
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  padding: 12px 28px;
  border-radius: var(--gv-radius-full);
  font-family: var(--gv-font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gv-color-text-secondary);
  cursor: pointer;
  transition: all var(--gv-transition-normal);
}

.gv-showcase-tab.gv-active {
  background: var(--gv-color-text-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--gv-shadow-md);
}

.gv-showcase-panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.gv-showcase-panel.gv-active {
  display: grid;
  animation: gv-fade-in 0.5s ease forwards;
}

@keyframes gv-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gv-showcase-panel-content {
  display: flex;
  flex-direction: column;
}

.gv-showcase-visual {
  background: var(--gv-color-bg-secondary);
  border: 1px solid var(--gv-color-bg-tertiary);
  border-radius: var(--gv-radius-xl);
  padding: 24px;
  box-shadow: var(--gv-shadow-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CSS-based interactive mockups */
.gv-mockup-dashboard {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: var(--gv-radius-md);
  box-shadow: var(--gv-shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gv-mockup-header {
  height: 48px;
  background: var(--gv-color-bg-secondary);
  border-bottom: 1px solid var(--gv-color-bg-tertiary);
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gv-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--gv-radius-full);
}
.gv-mockup-dot:nth-child(1) { background: #ef4444; }
.gv-mockup-dot:nth-child(2) { background: #eab308; }
.gv-mockup-dot:nth-child(3) { background: #22c55e; }

.gv-mockup-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gv-mockup-chart-container {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 20px;
}

.gv-mockup-chart-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.gv-mockup-chart-line {
  border-bottom: 1px dashed rgba(15, 23, 42, 0.05);
  width: 100%;
}

.gv-mockup-chart-bar {
  width: 10%;
  background: linear-gradient(180deg, var(--gv-accent-blue) 0%, rgba(59, 130, 246, 0.4) 100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  height: 0%;
  transition: height 1s ease;
  z-index: 2;
  position: relative;
}

.gv-mockup-chart-bar::after {
  content: attr(data-val);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gv-accent-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gv-mockup-chart-bar:hover::after {
  opacity: 1;
}

.gv-mockup-chart-bar:nth-child(2) { background: linear-gradient(180deg, var(--gv-accent-purple) 0%, rgba(139, 92, 246, 0.4) 100%); }
.gv-mockup-chart-bar:nth-child(3) { background: linear-gradient(180deg, var(--gv-accent-pink) 0%, rgba(236, 72, 153, 0.4) 100%); }

@media (max-width: 900px) {
  .gv-showcase-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   8. PORTFOLIO
   ========================================================================== */
.gv-portfolio-section {
  background-color: var(--gv-color-bg-secondary);
}

.gv-portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

@media (max-width: 768px) {
  .gv-portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.gv-portfolio-card {
  background: white;
  border-radius: var(--gv-radius-xl);
  overflow: hidden;
  border: 1px solid var(--gv-color-bg-tertiary);
  box-shadow: var(--gv-shadow-md);
  transition: transform var(--gv-transition-normal), box-shadow var(--gv-transition-normal);
}

.gv-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gv-shadow-xl);
}

.gv-portfolio-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  background: #eaeaea;
  overflow: hidden;
}

.gv-portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--gv-transition-slow);
}

.gv-portfolio-card:hover .gv-portfolio-img {
  transform: scale(1.05);
}

.gv-portfolio-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 16px;
  border-radius: var(--gv-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.gv-portfolio-body {
  padding: 32px;
}

.gv-portfolio-title {
  font-family: var(--gv-font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gv-color-text-primary);
}

.gv-portfolio-desc {
  font-size: 0.95rem;
  color: var(--gv-color-text-secondary);
  margin-bottom: 24px;
}

.gv-portfolio-metrics {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--gv-color-bg-tertiary);
  padding-top: 20px;
}

.gv-portfolio-stat {
  display: flex;
  flex-direction: column;
}

.gv-portfolio-num {
  font-family: var(--gv-font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gv-accent-blue);
  line-height: 1.2;
}

.gv-portfolio-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gv-color-text-muted);
}

/* ==========================================================================
   9. TESTIMONIALS
   ========================================================================== */
.gv-testimonials-section {
  background: #ffffff;
}

.gv-testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.gv-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.gv-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.gv-slider-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 16px;
}

.gv-testimonial-card {
  background: var(--gv-glass-bg);
  border: 1px solid var(--gv-glass-border);
  backdrop-filter: blur(var(--gv-glass-blur));
  border-radius: var(--gv-radius-xl);
  padding: 48px;
  box-shadow: var(--gv-shadow-lg);
  position: relative;
}

.gv-testimonial-rating {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  margin-bottom: 24px;
}

.gv-testimonial-quote {
  font-family: var(--gv-font-sans);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--gv-color-text-primary);
  margin-bottom: 32px;
  position: relative;
}

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

.gv-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--gv-radius-full);
  background: #eaeaea;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: var(--gv-shadow-sm);
}

.gv-testimonial-info {
  display: flex;
  flex-direction: column;
}

.gv-testimonial-name {
  font-family: var(--gv-font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gv-color-text-primary);
}

.gv-testimonial-role {
  font-size: 0.85rem;
  color: var(--gv-color-text-muted);
}

/* Slider Controls */
.gv-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.gv-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--gv-radius-full);
  border: 1px solid var(--gv-glass-border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--gv-shadow-sm);
  transition: all var(--gv-transition-fast);
  color: var(--gv-color-text-secondary);
}

.gv-slider-btn:hover {
  background: var(--gv-color-text-primary);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}

.gv-slider-dots {
  display: flex;
  gap: 8px;
}

.gv-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--gv-radius-full);
  background: var(--gv-color-bg-tertiary);
  cursor: pointer;
  transition: all var(--gv-transition-fast);
}

.gv-slider-dot.gv-active {
  width: 24px;
  background: var(--gv-accent-blue);
}

/* ==========================================================================
   10. STATISTICS SECTION
   ========================================================================== */
.gv-stats-section {
  background-color: var(--gv-color-bg-secondary);
}

.gv-stat-box {
  text-align: center;
  padding: 40px;
  background: white;
  border: 1px solid var(--gv-color-bg-tertiary);
  border-radius: var(--gv-radius-lg);
  box-shadow: var(--gv-shadow-sm);
  transition: transform var(--gv-transition-normal), box-shadow var(--gv-transition-normal);
}

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

.gv-stat-number {
  font-family: var(--gv-font-sans);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gv-color-text-primary);
  margin-bottom: 8px;
}

.gv-stat-label {
  font-family: var(--gv-font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gv-color-text-muted);
}

/* ==========================================================================
   11. FAQ ACCORDION SECTION
   ========================================================================== */
.gv-faq-section {
  background: #ffffff;
}

.gv-faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
}

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

.gv-faq-item {
  border: 1px solid var(--gv-color-bg-tertiary);
  background: var(--gv-color-bg-secondary);
  border-radius: var(--gv-radius-md);
  overflow: hidden;
  transition: border-color var(--gv-transition-fast), background var(--gv-transition-fast);
}

.gv-faq-item:hover, .gv-faq-item.gv-active {
  border-color: rgba(59, 130, 246, 0.25);
  background: white;
}

.gv-faq-trigger {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--gv-font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gv-color-text-primary);
  text-align: left;
  gap: 20px;
}

.gv-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--gv-radius-full);
  background: white;
  border: 1px solid var(--gv-color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gv-color-text-primary);
  transition: transform var(--gv-transition-normal), background var(--gv-transition-normal);
  flex-shrink: 0;
}

.gv-faq-item.gv-active .gv-faq-icon {
  transform: rotate(45deg);
  background: var(--gv-color-text-primary);
  color: white;
  border-color: transparent;
}

.gv-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gv-faq-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--gv-color-text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   12. CTA BANNER SECTION
   ========================================================================== */
.gv-cta-section {
  background: #ffffff;
  position: relative;
}

.gv-cta-box {
  background: linear-gradient(135deg, rgba(59,130,246,0.03) 0%, rgba(139,92,246,0.03) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--gv-radius-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gv-shadow-xl);
}

.gv-cta-mesh-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(255,255,255,0) 70%);
  border-radius: var(--gv-radius-full);
  filter: blur(60px);
  pointer-events: none;
}

.gv-cta-blob-1 { top: -200px; left: -200px; }
.gv-cta-blob-2 { bottom: -200px; right: -200px; }

.gv-cta-title {
  font-family: var(--gv-font-sans);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--gv-color-text-primary);
}

.gv-cta-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gv-color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
  .gv-cta-box {
    padding: 48px 24px;
  }
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
.gv-footer {
  background-color: var(--gv-color-bg-secondary);
  border-top: 1px solid var(--gv-color-bg-tertiary);
  padding: 80px 0 40px 0;
}

.gv-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .gv-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .gv-footer-brand-col {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .gv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gv-footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gv-footer-grid {
    grid-template-columns: 1fr;
  }
  .gv-footer-brand-col {
    grid-column: span 1;
  }
}

.gv-footer-brand-desc {
  font-size: 0.95rem;
  color: var(--gv-color-text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.gv-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--gv-radius-full);
  border: 1px solid var(--gv-glass-border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gv-color-text-secondary);
  transition: all var(--gv-transition-fast);
}

.gv-footer-social-link:hover {
  background: var(--gv-color-text-primary);
  color: white;
  transform: translateY(-2px);
}

.gv-footer-col-title {
  font-family: var(--gv-font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gv-color-text-primary);
  margin-bottom: 24px;
}

.gv-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gv-footer-link {
  font-size: 0.9rem;
  color: var(--gv-color-text-secondary);
  text-decoration: none;
  transition: color var(--gv-transition-fast), padding-left var(--gv-transition-fast);
}

.gv-footer-link:hover {
  color: var(--gv-accent-blue);
  padding-left: 4px;
}

.gv-footer-bottom {
  border-top: 1px solid var(--gv-color-bg-tertiary);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gv-footer-copyright {
  font-size: 0.85rem;
  color: var(--gv-color-text-muted);
}

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

.gv-footer-legal-link {
  font-size: 0.85rem;
  color: var(--gv-color-text-muted);
  text-decoration: none;
  transition: color var(--gv-transition-fast);
}

.gv-footer-legal-link:hover {
  color: var(--gv-color-text-primary);
}

@media (max-width: 768px) {
  .gv-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
