/* ==========================================================================
   UGC HUNTERS - HIGH CONVERTING META ADS LANDING PAGE STYLES
   THEME: ULTRA-MODERN GLASSMORPHISM & FIERY LIGHTNING PALETTE
   OPTIMIZATION: 100% MOBILE-FIRST & CLOUDFLARE PRODUCTION READY
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Base Colors */
  --bg-primary: #07070b;
  --bg-secondary: #0c0c14;
  
  /* Glassmorphism Surface Variables */
  --glass-bg: rgba(22, 20, 32, 0.55);
  --glass-bg-hover: rgba(32, 28, 48, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-border-hover: rgba(255, 85, 0, 0.45);
  --glass-highlight: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px) saturate(180%);

  /* Brand Accents (Fire / Amber / Gold / Crimson) */
  --primary-gold: #ffb800;
  --primary-orange: #ff5500;
  --primary-red: #ff0055;
  --primary-glow: rgba(255, 85, 0, 0.45);

  /* High Converting WhatsApp Green */
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;
  --whatsapp-glow: rgba(37, 211, 102, 0.45);

  /* Text Colors */
  --text-white: #ffffff;
  --text-heading: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #ffb800 0%, #ff5500 50%, #ff0055 100%);
  --grad-fire: linear-gradient(135deg, #ffcc00 0%, #ff5500 45%, #ff0055 100%);
  --grad-gold: linear-gradient(135deg, #fde047 0%, #ffb800 50%, #ff5500 100%);
  --grad-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --grad-glass-card: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  --grad-glass-fire: linear-gradient(135deg, rgba(255, 85, 0, 0.12) 0%, rgba(255, 0, 85, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-glass: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-neon-fire: 0 0 35px rgba(255, 85, 0, 0.45);
  --shadow-neon-whatsapp: 0 0 30px rgba(37, 211, 102, 0.45);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 0;
}

/* Ambient Warm Glows for Glass Reflections */
.ambient-glow-1 {
  position: fixed;
  top: -10%;
  left: 15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, rgba(255, 0, 85, 0.06) 50%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  top: 45%;
  right: -10%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, rgba(255, 85, 0, 0.05) 50%, transparent 70%);
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-3 {
  position: fixed;
  bottom: 5%;
  left: 10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.08) 0%, rgba(255, 85, 0, 0.03) 50%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: var(--grad-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-orange {
  background: linear-gradient(135deg, #ffb800 0%, #ff5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   TOP NOTIFICATION BAR (GLASS EFFECT)
   ========================================================================== */
.top-banner {
  background: rgba(30, 12, 16, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 85, 0, 0.35);
  padding: 10px 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.top-banner .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffb800;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffb800;
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}

.top-banner a {
  color: #ffb800;
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.top-banner a:hover {
  color: #ffffff;
}

/* ==========================================================================
   NAVBAR (FROSTED GLASS EFFECT)
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 16, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: var(--transition);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(255, 85, 0, 0.35));
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-fire);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-whatsapp);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px var(--whatsapp-glow);
  filter: brightness(1.08);
}

/* ==========================================================================
   BUTTONS & CTA STYLES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  min-height: 48px;
}

.btn-whatsapp {
  background: var(--grad-whatsapp);
  color: #ffffff;
  box-shadow: 0 6px 28px var(--whatsapp-glow);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
  filter: brightness(1.07);
}

.btn-fire {
  background: var(--grad-fire);
  color: #ffffff;
  box-shadow: 0 6px 28px var(--primary-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-fire:hover, .btn-fire:active {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 35px rgba(255, 85, 0, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.btn-secondary:hover, .btn-secondary:active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 85, 0, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), var(--glass-highlight);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.12rem;
}

.btn-sm {
  padding: 12px 22px;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

.btn .icon {
  font-size: 1.25em;
  display: inline-flex;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 55px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: var(--radius-full);
  color: #ffb800;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.15), var(--glass-highlight);
}

.hero-badge .fire-icon {
  font-size: 1.1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}

.hero-guarantee {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-guarantee span {
  color: #22c55e;
  font-weight: 700;
}

/* Hero Metrics Row */
.hero-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* ==========================================================================
   HERO VIDEO SHOWCASE CARD (GLASSMORPHIC & MOBILE RESPONSIVE)
   ========================================================================== */
.hero-visual-card {
  position: relative;
  background: var(--grad-glass-fire);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass), 0 0 50px rgba(255, 85, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Top Status Bar */
.hero-card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
  gap: 8px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 85, 0, 0.15);
  border: 1px solid rgba(255, 85, 0, 0.35);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffb800;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  white-space: nowrap;
}

.roas-pill {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  white-space: nowrap;
}

/* Video Wrapper */
.hero-video-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/14;
  max-height: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #0d0d16;
}

.hero-video-overlay-top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.live-tag {
  background: rgba(239, 68, 68, 0.92);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.4);
}

.sound-toggle-btn {
  pointer-events: auto;
  background: rgba(10, 10, 16, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.15rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.sound-toggle-btn:hover, .sound-toggle-btn:active {
  background: var(--primary-orange);
  transform: scale(1.08);
  border-color: #fff;
}

/* Hero Bottom Control Box */
.hero-card-bottom-box {
  background: rgba(14, 14, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.video-creator-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.creator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ff5500;
  object-fit: cover;
  flex-shrink: 0;
}

.creator-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
}

.creator-handle {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.hero-video-cta-btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  background: var(--grad-whatsapp);
  color: #fff;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--whatsapp-glow);
  border: 1px solid rgba(255, 255, 255, 0.25);
  min-height: 48px;
}

.hero-video-cta-btn:hover, .hero-video-cta-btn:active {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ==========================================================================
   CLIENT & PLATFORM LOGOS
   ========================================================================== */
.platforms-section {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(14, 14, 22, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: relative;
  z-index: 2;
}

.platforms-title {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

.platform-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  transition: var(--transition);
}

.platform-pill:hover {
  color: var(--text-white);
  border-color: rgba(255, 85, 0, 0.45);
  background: rgba(255, 85, 0, 0.08);
  transform: translateY(-2px);
}

.platform-icon {
  font-size: 1.15rem;
}

/* ==========================================================================
   PROBLEM VS SOLUTION SECTION
   ========================================================================== */
.section {
  padding: 85px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffb800;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vs-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass);
  position: relative;
  transition: var(--transition);
}

.vs-card.bad {
  border-top: 4px solid #ef4444;
}

.vs-card.good {
  border-top: 4px solid #ff5500;
  background: linear-gradient(180deg, rgba(255, 85, 0, 0.1) 0%, rgba(20, 18, 30, 0.6) 100%);
  box-shadow: var(--shadow-glass), 0 0 50px rgba(255, 85, 0, 0.15);
}

.vs-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.vs-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  backdrop-filter: var(--glass-blur);
  flex-shrink: 0;
}

.vs-card.bad .vs-icon-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.vs-card.good .vs-icon-badge {
  background: rgba(255, 85, 0, 0.18);
  color: #ff5500;
  border: 1px solid rgba(255, 85, 0, 0.4);
}

.vs-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
}

.vs-card.bad .vs-list li .bullet {
  color: #ef4444;
  font-size: 1.1rem;
  line-height: 1;
}

.vs-card.good .vs-list li .bullet {
  color: #ffb800;
  font-size: 1.1rem;
  line-height: 1;
}

/* ==========================================================================
   DYNAMIC UGC VIDEO PORTFOLIO (TOUCH-FRIENDLY & MOBILE RESPONSIVE)
   ========================================================================== */
.portfolio-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0c14 100%);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  white-space: nowrap;
  touch-action: manipulation;
}

.filter-btn:hover {
  color: var(--text-white);
  border-color: rgba(255, 85, 0, 0.4);
}

.filter-btn.active {
  background: var(--grad-fire);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.video-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 85, 0, 0.3), var(--glass-highlight);
}

.video-card-media {
  position: relative;
  aspect-ratio: 9/16;
  background: #0a0a10;
  overflow: hidden;
}

.video-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  background-color: #0a0a10;
}

.video-card:hover .video-card-media video {
  transform: scale(1.03);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}

.video-top-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.niche-badge {
  background: rgba(10, 10, 16, 0.7);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffb800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--glass-highlight);
}

.roas-badge {
  background: rgba(34, 197, 94, 0.9);
  color: #000;
  font-weight: 800;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.4);
}

.play-center-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 85, 0, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0.9;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(255, 85, 0, 0.5), var(--glass-highlight);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.video-card:hover .play-center-btn {
  transform: translate(-50%, -50%) scale(1.08);
  opacity: 1;
  background: var(--primary-orange);
}

.video-bottom-info {
  pointer-events: auto;
}

.video-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.video-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.video-card-footer {
  padding: 14px 16px;
  background: rgba(14, 14, 24, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  box-shadow: var(--glass-highlight);
}

.video-card-cta {
  color: #ffb800;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  padding: 4px 0;
}

.video-card-cta:hover {
  color: #ff5500;
  transform: translateX(3px);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-fire);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 85, 0, 0.2), var(--glass-highlight);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.15) 0%, rgba(255, 184, 0, 0.15) 100%);
  border: 1px solid rgba(255, 85, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
  flex-shrink: 0;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.86rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li span {
  color: #ffb800;
  font-weight: 700;
}

/* ==========================================================================
   WHY CHOOSE UGC HUNTERS
   ========================================================================== */
.why-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.08) 0%, transparent 60%);
}

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

.stat-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 0, 0.45);
}

.stat-number-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 4-Step Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 0, 0.4);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 85, 0, 0.45);
  margin-bottom: 10px;
}

.process-card-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE ROI & PACKAGE CALCULATOR
   ========================================================================== */
.calculator-box {
  background: linear-gradient(180deg, rgba(26, 22, 38, 0.65) 0%, rgba(14, 14, 24, 0.8) 100%);
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-glass), 0 0 60px rgba(255, 85, 0, 0.18);
  max-width: 900px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.calc-control-group {
  margin-bottom: 24px;
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.calc-value-badge {
  background: rgba(255, 85, 0, 0.2);
  border: 1px solid #ff5500;
  color: #ffb800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  box-shadow: var(--glass-highlight);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: var(--transition);
  touch-action: pan-y;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ff5500;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.8);
  border: 2px solid #ffffff;
}

.niche-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 10, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px; /* Prevents auto-zoom on iOS */
  outline: none;
  cursor: pointer;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.calc-result-card {
  background: rgba(14, 14, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.calc-result-title {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.calc-result-stat {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.calc-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  text-align: left;
}

.calc-details-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.calc-details-list li span:last-child {
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 0, 0.4);
}

.testimonial-stars {
  color: #ffb800;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.94rem;
  line-height: 1.68;
  color: var(--text-body);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-fire);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  box-shadow: var(--glass-highlight);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.78rem;
  color: #22c55e;
  font-weight: 600;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.faq-item.active {
  border-color: rgba(255, 85, 0, 0.45);
  background: var(--glass-bg-hover);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  gap: 12px;
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: #ffb800;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding: 0 22px 20px;
}

/* ==========================================================================
   FINAL CTA / CONTACT LEAD SECTION
   ========================================================================== */
.final-cta-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #07070b 0%, #15090c 100%);
  position: relative;
}

.final-cta-card {
  background: radial-gradient(circle at top right, rgba(255, 85, 0, 0.22) 0%, rgba(20, 18, 30, 0.85) 70%);
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 50px 36px;
  text-align: center;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 85, 0, 0.2), var(--glass-highlight);
  max-width: 960px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.final-cta-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-body);
  max-width: 660px;
  margin: 0 auto 34px;
}

.quick-chat-box {
  background: rgba(14, 14, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  max-width: 580px;
  margin: 0 auto 28px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.chat-input-group {
  display: flex;
  gap: 12px;
}

.chat-input {
  flex-grow: 1;
  padding: 15px 18px;
  background: rgba(10, 10, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px; /* Prevents auto-zoom on iOS */
  outline: none;
  backdrop-filter: var(--glass-blur);
}

.chat-input:focus {
  border-color: #ff5500;
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.35);
}

.agency-contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.agency-contact-details a {
  color: #ffb800;
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040407;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 28px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #ffb800;
}

.footer-copy {
  color: var(--text-dim);
  line-height: 1.6;
}

/* ==========================================================================
   FULLSCREEN REEL VIEWER MODAL
   ========================================================================== */
.reel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reel-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
  touch-action: manipulation;
}

.modal-close-btn:hover, .modal-close-btn:active {
  background: rgba(239, 68, 68, 0.85);
  transform: scale(1.08);
}

.modal-content-wrap {
  display: flex;
  background: rgba(18, 16, 28, 0.92);
  border: 1px solid rgba(255, 85, 0, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 85, 0, 0.3), var(--glass-highlight);
}

.modal-video-container {
  flex: 1.1;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-container video {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.modal-sidebar {
  flex: 0.9;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(14, 13, 22, 0.95);
  backdrop-filter: var(--glass-blur);
  gap: 20px;
}

.modal-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.modal-video-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.modal-video-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-stats-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-highlight);
}

.modal-stat-item {
  display: flex;
  flex-direction: column;
}

.modal-stat-label {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.modal-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #22c55e;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-chat-bubble {
  background: rgba(18, 16, 28, 0.9);
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 16px 16px 4px 16px;
  padding: 12px 16px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md), 0 0 30px rgba(37, 211, 102, 0.2), var(--glass-highlight);
  margin-bottom: 10px;
  max-width: 260px;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInPop 0.5s ease;
}

.whatsapp-chat-bubble .avatar-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #25d366;
  flex-shrink: 0;
}

.whatsapp-trigger-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--grad-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: var(--shadow-neon-whatsapp);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.35);
  touch-action: manipulation;
}

.whatsapp-trigger-btn:hover, .whatsapp-trigger-btn:active {
  transform: scale(1.08);
  box-shadow: 0 0 45px rgba(37, 211, 102, 0.8);
}

.online-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #151322;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM CONVERSION BAR
   ========================================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 16, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(255, 85, 0, 0.35);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 85;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7), var(--glass-highlight);
}

.mobile-sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

.mobile-sticky-sub {
  font-size: 0.74rem;
  color: #ffb800;
  font-weight: 600;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInPop {
  0% { opacity: 0; transform: translateY(10px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FULL MOBILE OPTIMIZATION)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .hero-badge, .hero-cta-group, .hero-guarantee {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-metrics-row {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual-card {
    max-width: 420px;
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }
  .top-banner {
    font-size: 0.78rem;
    padding: 8px 12px;
  }
  .navbar {
    padding: 10px 0;
  }
  .brand-logo {
    height: 38px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .hero-section {
    padding: 36px 0 55px;
  }
  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-guarantee {
    font-size: 0.8rem;
    justify-content: center;
  }
  .hero-metrics-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 20px;
  }
  .hero-stat-card .stat-label {
    font-size: 0.72rem;
  }
  .hero-visual-card {
    padding: 12px;
  }
  .hero-video-wrapper {
    aspect-ratio: 9/15;
    max-height: 420px;
  }
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 34px;
  }
  .portfolio-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vs-card {
    padding: 26px 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card {
    padding: 24px 18px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-box {
    padding: 20px 12px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-card {
    padding: 22px 18px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonial-card {
    padding: 22px 18px;
  }
  .calculator-box {
    padding: 24px 16px;
  }
  .final-cta-section {
    padding: 60px 0;
  }
  .final-cta-card {
    padding: 34px 16px;
  }
  .quick-chat-box {
    padding: 16px;
  }
  .chat-input-group {
    flex-direction: column;
    gap: 10px;
  }
  .agency-contact-details {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  .modal-content-wrap {
    flex-direction: column;
    max-height: 94vh;
    border-radius: var(--radius-md);
  }
  .modal-video-container video {
    max-height: 48vh;
  }
  .modal-sidebar {
    padding: 18px 16px;
    gap: 14px;
  }
  .modal-video-title {
    font-size: 1.15rem;
  }
  .modal-video-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .modal-stats-card {
    padding: 10px;
    margin-bottom: 12px;
  }
  .mobile-sticky-cta {
    display: block;
  }
  .floating-whatsapp-widget {
    bottom: 78px;
    right: 14px;
  }
  .whatsapp-chat-bubble {
    display: none; /* Keep clean on small mobile screens */
  }
  .whatsapp-trigger-btn {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}
