/* ==========================================================================
   NextGen Studio - Complete Design System & Responsive Stylesheet
   Theme: Midnight Navy, Electric Neon Cyan & Vibrant Tech Blue
   Core Expertise: Performance UGC Video Ads + Custom Web & Marketing
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --color-primary: #00D2FF;
  --color-primary-rgb: 0, 210, 255;
  --color-secondary: #0072FF;
  --color-secondary-rgb: 0, 114, 255;
  --color-accent-teal: #00F2FE;
  --color-accent-green: #10B981;
  --color-accent-amber: #F59E0B;
  --color-accent-purple: #8B5CF6;
  --color-accent-coral: #FF5A5F;
  
  /* Background Layers */
  --bg-deep: #050814;
  --bg-navy: #080E21;
  --bg-surface: #0E1736;
  --bg-surface-elevated: #131F46;
  --bg-surface-alt: #0B122B;
  --bg-card-glass: rgba(14, 23, 54, 0.7);
  --bg-card-hover: rgba(20, 35, 78, 0.9);

  /* Borders & Glows */
  --border-subtle: rgba(0, 210, 255, 0.15);
  --border-bright: rgba(0, 210, 255, 0.5);
  --border-glass: rgba(255, 255, 255, 0.08);
  --glow-cyan: 0 0 25px rgba(0, 210, 255, 0.35);
  --glow-cyan-lg: 0 0 50px rgba(0, 210, 255, 0.45);
  --glow-blue: 0 0 30px rgba(0, 114, 255, 0.4);
  --shadow-card: 0 15px 35px -5px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.08);
  --shadow-elevated: 0 25px 50px -12px rgba(0, 0, 0, 0.7);

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-heading: #F8FAFC;
  --text-body: #CBD5E1;
  --text-muted: #8493A8;
  --text-cyan: #00D2FF;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #00D2FF 0%, #0072FF 100%);
  --grad-primary-hover: linear-gradient(135deg, #33DCFF 0%, #1A82FF 100%);
  --grad-alt: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
  --grad-text: linear-gradient(135deg, #FFFFFF 20%, #00D2FF 100%);
  --grad-text-alt: linear-gradient(135deg, #00D2FF 0%, #38EF7D 100%);
  --grad-dark-card: linear-gradient(145deg, rgba(14, 23, 54, 0.85) 0%, rgba(8, 14, 33, 0.95) 100%);
  --grad-badge: linear-gradient(90deg, rgba(0, 210, 255, 0.15), rgba(0, 114, 255, 0.15));

  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 210, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(0, 114, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 75%, rgba(0, 210, 255, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: var(--bg-deep);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 210, 255, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Ambient Glowing Background Blobs */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.35;
  max-width: 100vw;
  overflow: hidden;
}
.glow-1 {
  top: -120px;
  right: -40px;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, #0072FF, #00D2FF);
}
.glow-2 {
  top: 40%;
  left: -80px;
  width: min(450px, 70vw);
  height: min(450px, 70vw);
  background: radial-gradient(circle, rgba(0, 210, 255, 0.8), rgba(0, 114, 255, 0.4));
}
.glow-3 {
  bottom: 10%;
  right: -60px;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  background: radial-gradient(circle, #0072FF, #10B981);
}

/* Text Gradient Helpers */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.text-gradient-alt {
  background: var(--grad-text-alt);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.text-cyan {
  color: var(--color-primary);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--grad-primary);
  color: #030816;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.4);
}
.btn-primary:hover {
  background: var(--grad-primary-hover);
  box-shadow: 0 6px 30px rgba(0, 210, 255, 0.6);
  transform: translateY(-2px);
  color: #030816;
}

.btn-outline {
  background: rgba(14, 23, 54, 0.6);
  border-color: var(--border-bright);
  color: #FFF;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(0, 210, 255, 0.15);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

.btn-pulse {
  animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.8), 0 0 50px rgba(0, 114, 255, 0.4);
  }
}

/* ==========================================================================
   Header & Announcement Bar
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #050E28 0%, #0D2254 50%, #050E28 100%);
  border-bottom: 1px solid rgba(0, 210, 255, 0.2);
  padding: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: #E2E8F0;
  position: relative;
  z-index: 101;
  overflow: hidden;
}
.announcement-marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-duplicate {
  display: none;
}
.announcement-badge {
  background: rgba(0, 210, 255, 0.18);
  border: 1px solid var(--border-bright);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.12rem 0.5rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.announcement-link {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.25rem;
  font-size: 0.78rem;
  white-space: nowrap;
}
.announcement-link:hover {
  color: #FFF;
}

/* Mobile Announcement: Running Marquee Text */
@media (max-width: 768px) {
  .top-announcement {
    padding: 0.38rem 0;
    white-space: nowrap;
  }
  .announcement-marquee-track {
    display: flex;
    justify-content: flex-start;
    width: max-content;
    animation: announcement-marquee 18s linear infinite;
  }
  .announcement-marquee-track:hover,
  .announcement-marquee-track:active {
    animation-play-state: paused;
  }
  .announcement-content {
    padding-inline: 1.5rem;
    font-size: 0.76rem;
    gap: 0.5rem;
  }
  .announcement-duplicate {
    display: flex;
  }
}

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

/* Sticky Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(5, 8, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}
.site-header.scrolled {
  background: rgba(5, 8, 20, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}
.brand-logo:hover img {
  transform: scale(1.03);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 0.85vw, 1rem);
  list-style: none;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  font-size: clamp(0.78rem, 0.84vw, 0.88rem);
  color: var(--text-body);
  position: relative;
  padding-block: 0.3rem;
  padding-inline: 0.15rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.75rem, 0.8vw, 0.82rem);
  font-weight: 600;
  color: var(--text-heading);
  padding: 0.38rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  white-space: nowrap;
}
.nav-phone-btn i {
  color: var(--color-primary);
}
.nav-phone-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-cta-btn {
  padding: 0.45rem 1rem;
  font-size: clamp(0.78rem, 0.82vw, 0.85rem);
  white-space: nowrap;
}

.nav-toggle-btn {
  display: none;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-bright);
  color: var(--color-primary);
  font-size: 1.15rem;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.nav-toggle-btn:hover {
  background: var(--color-primary);
  color: #030816;
}

/* Mobile Drawer Menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(6, 11, 24, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-bright);
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-normal);
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  justify-content: space-between;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mobile-menu .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(14, 23, 54, 0.5);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.mobile-menu .nav-link i {
  color: var(--color-primary);
  width: 18px;
}
.mobile-menu .nav-link:hover {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--border-bright);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   Hero Section (UGC Priority - Exact Equal Height & Top/Bottom Alignment)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding-top: clamp(0.8rem, 1.8vh, 1.6rem);
  padding-bottom: clamp(0.8rem, 1.8vh, 1.6rem);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 2.2vw, 2.5rem);
  align-items: stretch;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: stretch;
}

.hero-left-pane {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
  gap: clamp(0.6rem, 1.3vh, 1rem);
  animation: fadeInPane 0.35s ease forwards;
}
.hero-left-pane.active {
  display: flex;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-bright);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.8px;
  width: fit-content;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.5px;
}
.hero-title .sub-heading {
  display: block;
  font-size: clamp(0.6rem, 2vw, 0.84rem);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: clamp(0.4px, 0.12vw, 1.2px);
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.hero-desc {
  font-size: clamp(0.84rem, 0.98vw, 0.95rem);
  color: var(--text-body);
  line-height: 1.5;
}

/* Flash Launch Offer Card Inside Hero */
.hero-offer-box {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.14) 0%, rgba(0, 114, 255, 0.14) 100%);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
}
.hero-offer-details {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.offer-badge-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.2);
  padding: 0.12rem 0.5rem;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.offer-price {
  font-size: 1.38rem;
  font-weight: 900;
  color: #FFF;
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  line-height: 1.1;
}
.offer-price small {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
}
.offer-orig {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}
.offer-sub-text {
  font-size: 0.71rem;
  color: #E2E8F0;
  font-weight: 500;
}
.hero-offer-box .btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.84rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero-cta-group .btn {
  padding: 0.56rem 1.25rem;
  font-size: 0.88rem;
}

/* Trust Metrics Grid (Always 1 Single Row) */
.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-glass);
  width: 100%;
}
.trust-metric-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}
.trust-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.78rem;
  flex-shrink: 0;
}
.trust-bold {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1.1;
  white-space: nowrap;
}
.trust-text {
  font-size: 0.64rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Right Hero Visual Card - Equal Height Stretch */
.hero-visual-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 0.85rem 0.95rem;
  box-shadow: var(--shadow-card), var(--glow-cyan);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 480px;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  gap: 0.35rem;
  width: 100%;
  flex-wrap: nowrap;
}

.hero-showcase-tabs {
  display: flex;
  background: rgba(6, 11, 24, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 0.2rem;
  gap: 0.2rem;
  flex-shrink: 0;
}
.hero-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: clamp(0.68rem, 1.8vw, 0.75rem);
  font-weight: 600;
  padding: 0.24rem 0.58rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.hero-tab-btn.active {
  background: var(--grad-primary);
  color: #030816;
  font-weight: 700;
}

.visual-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10B981;
  font-size: clamp(0.6rem, 1.5vw, 0.66rem);
  font-weight: 800;
  padding: 0.18rem 0.45rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.visual-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
  animation: pulse-dot 1.2s infinite;
}

/* Tab Panes */
.hero-tab-pane {
  display: none;
  height: 100%;
}
.hero-tab-pane.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* UGC Reel Grid: 2x2 SQUARE Video Format Cards */
.visual-reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  flex: 1;
  min-height: 380px;
  height: 100%;
}
.reel-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 175px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.reel-item:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.3);
}
.reel-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.reel-item:hover .reel-thumb {
  transform: scale(1.08);
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.45rem;
  transition: background var(--transition-fast);
  z-index: 2;
}
.reel-tag-name {
  align-self: flex-start;
  background: rgba(0, 210, 255, 0.9);
  color: #030816;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.12rem 0.42rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.reel-play-btn {
  align-self: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 0.76rem;
  transition: transform var(--transition-bounce), background var(--transition-fast);
}
.reel-item:hover .reel-play-btn {
  transform: scale(1.15);
  background: var(--color-primary);
  color: #030816;
}
.reel-meta-info {
  font-size: 0.62rem;
  color: #E2E8F0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.visual-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.74rem;
  color: var(--text-muted);
  gap: 0.5rem;
  width: 100%;
}
#visualFooterLeft, #visualFooterRight {
  white-space: nowrap;
}

/* Web Mockup Window Inside Hero Visual */
.web-mockup-window {
  background: rgba(6, 11, 24, 0.95);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mockup-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.85rem;
  background: rgba(14, 23, 54, 0.8);
  border-bottom: 1px solid var(--border-glass);
}
.mockup-dots {
  display: flex;
  gap: 0.35rem;
}
.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.mockup-address {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(5, 8, 20, 0.6);
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  color: var(--text-body);
}
.mockup-speed-badge {
  font-size: 0.7rem;
  color: #10B981;
  font-weight: 700;
}

.mockup-screen-content {
  padding: 0.85rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.65rem;
}
.mockup-hero-banner {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.12), rgba(0, 114, 255, 0.12));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-align: center;
}
.mockup-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.mockup-hero-banner h4 {
  font-size: 0.92rem;
  color: #FFF;
  margin-bottom: 0.65rem;
  font-weight: 700;
}
.mockup-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
.mockup-stat-box {
  background: rgba(5, 8, 20, 0.8);
  border: 1px solid var(--border-glass);
  padding: 0.45rem 0.35rem;
  border-radius: var(--radius-sm);
}
.m-stat-val {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-primary);
}
.m-stat-label {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.mockup-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.mockup-mini-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14, 23, 54, 0.6);
  border: 1px solid var(--border-glass);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  font-weight: 600;
  color: #FFF;
}

/* ==========================================================================
   Technology & Client Marquee
   ========================================================================== */
.tech-marquee-section {
  padding-block: 2rem;
  background: rgba(8, 14, 33, 0.7);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  position: relative;
}
.marquee-title {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}
.marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(14, 23, 54, 0.7);
  border: 1px solid var(--border-glass);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFF;
  white-space: nowrap;
}
.tech-pill i {
  font-size: 1.1rem;
}
.tech-pill:hover {
  border-color: var(--color-primary);
  background: rgba(0, 210, 255, 0.1);
}

/* ==========================================================================
   Section Headers (Common)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 1060px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(1.4rem, 2.5vw, 2.2rem);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  white-space: nowrap;
  text-align: center;
}
.section-title {
  font-size: clamp(1.1rem, 3.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  white-space: nowrap;
}
.section-title .text-gradient,
.section-title .text-gradient-alt {
  white-space: nowrap;
}
.section-subtitle {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 820px;
  margin-inline: auto;
}

/* ==========================================================================
   UGC Video Ads Showcase Section
   ========================================================================== */
.showcase-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  z-index: 1;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.format-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.format-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.format-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.format-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.format-card:hover .format-media img {
  transform: scale(1.06);
}

.format-type-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 8, 20, 0.85);
  border: 1px solid var(--border-bright);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.format-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.format-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.9);
  color: #030816;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
  transition: transform var(--transition-bounce);
}
.format-card:hover .format-play-btn {
  transform: scale(1.15);
}

.format-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.format-title {
  font-size: 1.2rem;
  color: #FFF;
  margin-bottom: 0.5rem;
}
.format-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.format-metrics {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}
.format-metric-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   Why UGC vs Studio Ads (Data & Comparison Matrix)
   ========================================================================== */
.why-ugc-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--bg-surface-alt);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}
.stat-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--transition-normal);
}
.stat-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.25rem;
}
.stat-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.comparison-box {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th, .comparison-table td {
  padding: 1.15rem 1.5rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border-glass);
}
.comparison-table th {
  background: rgba(6, 11, 24, 0.85);
  font-weight: 700;
  font-size: 0.95rem;
}
.comparison-table tbody tr:hover {
  background: rgba(0, 210, 255, 0.04);
}
.highlight-col {
  color: #FFF;
  font-weight: 600;
  background: rgba(0, 210, 255, 0.08);
}
.cross-icon {
  color: #FF5A5F;
  font-weight: bold;
  margin-right: 0.4rem;
}
.check-icon {
  color: #10B981;
  font-weight: bold;
  margin-right: 0.4rem;
}
.comp-value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Creators Niches Grid */
.creators-section {
  padding-block: 1rem 1.75rem;
  position: relative;
  z-index: 1;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.niche-item {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all var(--transition-fast);
}
.niche-item:hover {
  border-color: var(--color-primary);
  background: rgba(0, 210, 255, 0.1);
  transform: translateY(-3px);
}
.niche-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.niche-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFF;
}

/* ==========================================================================
   Services Hub & Interactive Filter Grid
   ========================================================================== */
.services-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  z-index: 1;
}

.service-filters-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.service-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(14, 23, 54, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 0.35rem;
  justify-content: center;
}
.filter-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.filter-btn:hover {
  color: #FFF;
}
.filter-btn.active {
  background: var(--grad-primary);
  color: #030816;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.35);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.service-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card), var(--glow-cyan);
}
.service-card.featured-service {
  border-color: var(--border-bright);
  background: linear-gradient(145deg, rgba(0, 210, 255, 0.08) 0%, rgba(14, 23, 54, 0.9) 100%);
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.15);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.95rem;
}

.service-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.service-badge-deal {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(0, 210, 255, 0.2);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.service-title {
  font-size: clamp(1.05rem, 1.16vw, 1.16rem);
  color: #FFF;
  margin-bottom: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.2px;
}
.service-desc {
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 1.1rem;
  min-height: 4.6rem;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
  flex: 1;
}
.service-feature-list li {
  font-size: 0.82rem;
  color: #E2E8F0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}
.service-feature-list li i {
  color: var(--color-primary);
  margin-top: 0.2rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-glass);
}
.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.service-cta-link:hover {
  color: #FFF;
  gap: 0.75rem;
}

/* ==========================================================================
   Deep-Dive Sections (Web Development & Marketing Spotlights)
   ========================================================================== */
.deep-dive-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  z-index: 1;
}
.bg-surface-alt {
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.deep-dive-grid.reverse-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.deep-dive-lead {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.capability-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cap-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.capability-item h4 {
  font-size: 1.05rem;
  color: #FFF;
  margin-bottom: 0.25rem;
}
.capability-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.deep-dive-btn-wrap {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}

/* Tech Stack Card in Web Dev Deep-Dive */
.tech-stack-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.tech-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}
.tech-pill-active {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFF;
}
.live-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.tech-badges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.tech-spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(6, 11, 24, 0.7);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
}
.tech-spec-item i {
  font-size: 1.6rem;
  min-width: 32px;
  text-align: center;
}
.tech-spec-item strong {
  display: block;
  font-size: 0.95rem;
  color: #FFF;
}
.tech-spec-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.tech-guarantee-banner {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #E2E8F0;
}

/* 3-Stage Profit Funnel Card in Marketing Deep-Dive */
.growth-funnel-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.funnel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
  gap: 0.5rem;
}
.funnel-header h4 {
  font-size: clamp(0.85rem, 1.4vw, 1.1rem);
  color: #FFF;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}
.funnel-header h4 i {
  font-size: 1rem;
  flex-shrink: 0;
}
.funnel-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.funnel-stages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.funnel-stage {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(6, 11, 24, 0.7);
}
.stage-top { border-left: 3px solid #00D2FF; }
.stage-mid { border-left: 3px solid #0072FF; }
.stage-bottom { border-left: 3px solid #10B981; }

.stage-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
}
.stage-body h5 {
  font-size: 0.95rem;
  color: #FFF;
  margin-bottom: 0.2rem;
}
.stage-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.funnel-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-glass);
  text-align: center;
}
.strip-val {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
}
.strip-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   4-Step UGC Video Process Pipeline
   ========================================================================== */
.workflow-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--bg-surface-alt);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.workflow-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.step-number {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--color-primary);
  margin-bottom: 0.85rem;
}
.step-title {
  font-size: 1.15rem;
  color: #FFF;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Pricing & Packages Matrix (UGC First)
   ========================================================================== */
.pricing-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  z-index: 1;
}

.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}
.pricing-tabs {
  display: flex;
  background: rgba(14, 23, 54, 0.9);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  padding: 0.4rem;
  gap: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.15);
}
.pricing-tab-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}
.pricing-tab-btn.active {
  background: var(--grad-primary);
  color: #030816;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.pricing-grid-pane {
  display: none;
}
.pricing-grid-pane.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.pricing-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(155deg, rgba(0, 210, 255, 0.1) 0%, rgba(8, 14, 33, 0.98) 100%);
  box-shadow: var(--shadow-elevated), 0 0 35px rgba(0, 210, 255, 0.25);
  transform: scale(1.03);
  z-index: 2;
  padding-top: 2.75rem;
}
.pricing-card.featured .plan-header {
  margin-top: 0.4rem;
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #030816;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1.5rem;
}
.plan-name {
  font-size: 1.45rem;
  color: #FFF;
  margin-bottom: 0.35rem;
}
.plan-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-price-wrap {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
}
.plan-price {
  font-size: 2.35rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1.1;
}
.plan-price small {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.plan-orig-price {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 0.25rem;
}
.save-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan-features li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}
.plan-features li i {
  color: var(--color-primary);
  margin-top: 0.2rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================= */
.testimonials-section {
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  background: var(--bg-surface-alt);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

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

.testimonial-card {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}
.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.stars-row {
  color: #FFB800;
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-heading);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}
.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(8, 14, 33, 0.95);
  padding: 6px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.3);
  flex-shrink: 0;
}
.client-name {
  font-weight: 700;
  color: #FFF;
  font-size: 0.95rem;
}
.client-brand {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding-top: clamp(1.75rem, 3vw, 2.75rem);
  padding-bottom: clamp(1rem, 2vw, 1.75rem);
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item.active {
  border-color: var(--border-bright);
}

.faq-question {
  padding: 1.35rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-icon {
  font-size: 0.85rem;
  color: var(--color-primary);
  transition: transform var(--transition-fast);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.35rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  display: none;
  border-top: 1px solid var(--border-glass);
  padding-top: 1rem;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   Contact & Booking Form (Pre-selected ₹9k Deal)
   ========================================================================== */
.contact-section {
  padding-top: clamp(1rem, 2vw, 1.75rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  z-index: 1;
}

.contact-box {
  background: var(--grad-dark-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-card), var(--glow-cyan);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-start;
}

.contact-info-panel h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}
.contact-info-panel p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.direct-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(6, 11, 24, 0.7);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.contact-item-link:hover {
  border-color: var(--color-primary);
  background: rgba(0, 210, 255, 0.1);
  transform: translateX(4px);
}
.contact-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.15);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-item-title {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.contact-item-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFF;
}

.agency-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFF;
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFF;
}
.form-control {
  width: 100%;
  background: rgba(5, 8, 20, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: #FFF;
  transition: all var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
  background: rgba(8, 14, 33, 0.95);
}
.form-control::placeholder {
  color: var(--text-muted);
}
select.form-control option {
  background: #080E21;
  color: #FFF;
}
textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #030611;
  border-top: 1px solid var(--border-glass);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.footer-tagline-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(0, 210, 255, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

.footer-col h4 {
  font-size: 1.05rem;
  color: #FFF;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-links a {
  color: var(--text-muted);
  margin-inline: 0.25rem;
}
.footer-bottom-links a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Video Lightbox / Modal
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.video-modal.active {
  display: flex;
  opacity: 1;
}

/* Direct Instant Quotation Modal */
.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 22, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.quote-modal.active {
  display: flex;
  opacity: 1;
}
.quote-modal-card {
  position: relative;
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  background: rgba(11, 20, 42, 0.98);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 210, 255, 0.25);
  padding: 1.75rem 1.6rem;
  animation: modal-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFF;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.quote-modal-close:hover {
  background: var(--color-primary);
  color: #030816;
  border-color: var(--color-primary);
}
.quote-modal-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.quote-modal-title {
  font-size: clamp(1.2rem, 3.5vw, 1.45rem);
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.quote-modal-sub {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.quote-modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.quote-modal-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #CBD5E1;
}

.modal-content-card {
  position: relative;
  max-width: min(330px, 88vw);
  max-height: min(560px, 78vh);
  width: 100%;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 45px rgba(0, 210, 255, 0.45);
  animation: modal-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-pop {
  0% { transform: scale(0.9) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.modal-close-btn:hover {
  background: var(--color-primary);
  color: #030816;
}

.modal-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-height: min(560px, 78vh);
  height: 100%;
}
.modal-video-frame > img,
#modalVideoThumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-reel-sim-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.95rem;
  z-index: 2;
}

.sim-creator-info {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 3;
}
.sim-creator-info .sim-avatar,
.sim-avatar {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  border-radius: 50% !important;
  border: 2px solid var(--color-primary);
  object-fit: cover !important;
  flex-shrink: 0;
  display: block;
}

.sim-actions-col {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: center;
  z-index: 3;
}
.sim-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.15rem;
  color: #FFF;
}
.sim-action-btn span {
  font-size: 0.65rem;
  font-weight: 700;
}

/* Floating Quick Action Buttons */
.floating-actions-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 95;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-bounce);
}
.float-btn:hover {
  transform: scale(1.12);
}
.float-whatsapp {
  background: #25D366;
  color: #FFF;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}
.float-call {
  background: var(--grad-primary);
  color: #030816;
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.6);
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries (100% Mobile Perfect)
   ========================================================================== */

/* Laptops & Tablets Navigation (max-width: 1180px) */
@media (max-width: 1180px) {
  .desktop-nav, .nav-phone-btn {
    display: none;
  }
  .nav-toggle-btn {
    display: inline-flex;
  }
}

/* Medium Laptops & Large Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .niches-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .workflow-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid .footer-col:last-child {
    grid-column: span 3;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .deep-dive-grid, .deep-dive-grid.reverse-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-inline: auto;
    gap: 2.5rem;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    gap: 1.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile Devices & Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 1rem !important;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-tag {
    font-size: clamp(0.58rem, 2.3vw, 0.65rem) !important;
    letter-spacing: 0.4px !important;
    padding: 0.2rem 0.65rem !important;
    white-space: nowrap !important;
    justify-content: center !important;
    margin-inline: auto !important;
    text-align: center !important;
    max-width: 95vw;
  }
  .section-title {
    font-size: clamp(1.15rem, 4.2vw, 1.75rem);
    white-space: nowrap;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }
  .hero-offer-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
    width: 100%;
  }
  .offer-price {
    justify-content: center;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
    gap: 0.75rem;
  }
  .hero-visual-card {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem;
  }
  .visual-reel-grid {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
    width: 100%;
  }
  .reel-item {
    min-height: 140px;
    height: clamp(140px, 42vw, 190px);
    width: 100%;
  }
  .visual-footer-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }
  #visualFooterLeft, #visualFooterRight {
    font-size: 0.72rem !important;
    white-space: nowrap;
    text-align: center;
  }
  .trust-metrics-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.35rem;
    padding-top: 0.5rem;
  }
  .trust-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.18rem;
    min-width: 0;
  }
  .trust-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 0.72rem;
  }
  .trust-bold {
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .trust-text {
    font-size: 0.56rem;
    white-space: nowrap;
  }
  .service-filters-wrapper {
    margin-bottom: 1.75rem;
    padding-inline: 0.5rem;
  }
  .service-filter-pills {
    width: 100% !important;
    max-width: 460px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
    padding: 0.4rem !important;
    border-radius: 12px !important;
    background: rgba(10, 18, 40, 0.92) !important;
    border: 1px solid rgba(0, 210, 255, 0.22) !important;
  }
  .filter-btn {
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: clamp(0.7rem, 2.5vw, 0.78rem) !important;
    padding: 0.5rem 0.4rem !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
    gap: 0.35rem !important;
  }
  .filter-btn:last-child {
    grid-column: span 2 !important;
    width: 100% !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem;
    max-width: 520px;
    margin-inline: auto;
  }
  .service-card {
    padding: 1.35rem 1.25rem;
    border-radius: var(--radius-lg);
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
  }
  .service-card-top {
    margin-bottom: 0.75rem;
  }
  .service-badge,
  .service-badge-deal {
    font-size: 0.7rem;
    padding: 0.22rem 0.65rem;
  }
  .service-title {
    font-size: 1.12rem;
    white-space: normal;
    min-height: auto;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .service-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
    min-height: auto;
  }
  .service-feature-list {
    gap: 0.45rem;
    margin-bottom: 1rem;
  }
  .service-feature-list li {
    font-size: 0.82rem;
    line-height: 1.4;
    gap: 0.5rem;
  }
  .service-feature-list li i {
    font-size: 0.76rem;
    margin-top: 0.2rem;
  }
  .service-card-footer {
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-glass);
  }
  .service-cta-link {
    font-size: 0.88rem;
    font-weight: 700;
  }
  .formats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .format-media img {
    height: clamp(240px, 60vw, 320px);
  }
  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }
  .workflow-grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .deep-dive-btn-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 1.25rem !important;
  }
  .deep-dive-btn-wrap .btn {
    width: auto !important;
    max-width: 90% !important;
    padding: 0.6rem 1.35rem !important;
    font-size: 0.86rem !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-inline: auto !important;
  }
  .growth-funnel-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-lg);
  }
  .funnel-header {
    gap: 0.4rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.75rem;
  }
  .funnel-header h4 {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem) !important;
    white-space: nowrap !important;
  }
  .funnel-badge {
    font-size: clamp(0.6rem, 2vw, 0.68rem) !important;
    padding: 0.16rem 0.5rem !important;
    white-space: nowrap !important;
  }
  /* Mobile Comparison Card Layout (No Horizontal Scroll Needed) */
  .comparison-box {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    padding: 0;
  }
  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
  }
  .comparison-table tr {
    background: rgba(13, 24, 48, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 16px;
    padding: 1.25rem 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .comparison-table td {
    padding: 0 !important;
    border: none !important;
  }
  .comparison-table td.feature-name,
  .comparison-table td:first-child {
    font-size: 1.05rem;
    color: #FFFFFF;
    font-weight: 800;
    padding-bottom: 0.6rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .comparison-table td:nth-child(2) {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.25) !important;
    border-radius: 12px;
    padding: 0.8rem 0.95rem !important;
    color: #CBD5E1;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
  }
  .comparison-table td:nth-child(2)::before {
    content: '✕ TRADITIONAL STUDIO';
    font-weight: 800;
    color: #F87171;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    background: rgba(239, 68, 68, 0.14);
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 0.1rem;
    white-space: nowrap;
  }
  .comparison-table td:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.14) 0%, rgba(0, 114, 255, 0.12) 100%) !important;
    border: 1.5px solid #00D2FF !important;
    border-radius: 12px;
    padding: 0.85rem 0.95rem !important;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.18), inset 0 0 12px rgba(0, 210, 255, 0.05);
    width: 100%;
  }
  .comparison-table td:nth-child(3)::before {
    content: '⚡ NEXTGEN UGC (WINNER)';
    font-weight: 900;
    color: #00F0FF;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 210, 255, 0.2);
    border: 1px solid rgba(0, 210, 255, 0.35);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.1rem;
    white-space: nowrap;
  }
  .comp-value {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    line-height: 1.4;
  }
  .comp-value .cross-icon {
    color: #F87171;
    font-size: 0.88rem;
    flex-shrink: 0;
  }
  .comp-value .check-icon {
    color: #10B981;
    font-size: 0.95rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-grid .footer-col:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* Small Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .container {
    padding-inline: 0.85rem !important;
  }
  .top-announcement {
    padding: 0.35rem 0;
    font-size: 0.75rem;
  }
  .nav-wrapper {
    height: 56px;
  }
  .brand-logo img {
    height: 28px;
  }
  .nav-cta-btn {
    display: none;
  }
  .mobile-menu {
    top: 56px;
    height: calc(100vh - 56px);
    padding: 1rem;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-title .sub-heading {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .section-tag {
    font-size: 0.58rem !important;
    letter-spacing: 0.3px !important;
    padding: 0.18rem 0.6rem !important;
    white-space: nowrap !important;
    justify-content: center !important;
    margin-inline: auto !important;
    text-align: center !important;
  }
  .section-title {
    font-size: clamp(1.02rem, 4.4vw, 1.35rem) !important;
    white-space: nowrap !important;
    letter-spacing: -0.3px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .trust-metrics-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.2rem;
  }
  .trust-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.12rem;
  }
  .trust-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    font-size: 0.68rem;
  }
  .trust-bold {
    font-size: 0.76rem;
    white-space: nowrap;
  }
  .trust-text {
    font-size: 0.52rem;
    white-space: nowrap;
  }
  .niches-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.55rem;
  }
  .niche-item {
    padding: 0.95rem 0.5rem;
  }
  .niche-icon {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
  }
  .niche-label {
    font-size: 0.76rem;
    line-height: 1.25;
  }
  .mockup-metrics-row {
    grid-template-columns: 1fr;
  }
  .mockup-features-grid {
    grid-template-columns: 1fr;
  }
  .growth-funnel-card {
    padding: 1.15rem 0.85rem !important;
  }
  .funnel-header {
    gap: 0.3rem !important;
    margin-bottom: 0.85rem !important;
    padding-bottom: 0.6rem !important;
  }
  .funnel-header h4 {
    font-size: clamp(0.72rem, 3.1vw, 0.84rem) !important;
    white-space: nowrap !important;
    letter-spacing: -0.2px;
  }
  .funnel-header h4 i {
    font-size: 0.82rem !important;
  }
  .funnel-badge {
    font-size: 0.58rem !important;
    padding: 0.14rem 0.42rem !important;
    white-space: nowrap !important;
  }
  .deep-dive-btn-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 1.1rem !important;
  }
  .deep-dive-btn-wrap .btn {
    width: auto !important;
    max-width: 94% !important;
    padding: 0.52rem 1.15rem !important;
    font-size: 0.82rem !important;
    gap: 0.45rem !important;
    margin-inline: auto !important;
  }
  .service-filters-wrapper {
    margin-bottom: 1.5rem;
    padding-inline: 0.25rem;
  }
  .service-filter-pills {
    width: 100% !important;
    max-width: 440px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.35rem !important;
    padding: 0.35rem !important;
    border-radius: 12px !important;
    background: rgba(10, 18, 40, 0.92) !important;
    border: 1px solid rgba(0, 210, 255, 0.22) !important;
  }
  .filter-btn {
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.68rem !important;
    padding: 0.48rem 0.35rem !important;
    white-space: nowrap !important;
    border-radius: 7px !important;
    gap: 0.3rem !important;
  }
  .filter-btn:last-child {
    grid-column: span 2 !important;
    width: 100% !important;
  }
  .filter-btn i {
    font-size: 0.72rem;
  }
  .pricing-tabs-wrapper {
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
    padding-inline: 0.5rem;
  }
  .pricing-tabs {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    max-width: 390px !important;
    padding: 0.25rem !important;
    gap: 0.25rem !important;
    border-radius: 9999px !important;
    background: rgba(10, 18, 40, 0.92) !important;
    border: 1px solid rgba(0, 210, 255, 0.25) !important;
  }
  .pricing-tab-btn {
    flex: 1 !important;
    width: auto !important;
    justify-content: center !important;
    font-size: clamp(0.72rem, 2.7vw, 0.82rem) !important;
    padding: 0.52rem 0.65rem !important;
    white-space: nowrap !important;
    border-radius: 9999px !important;
    gap: 0.35rem !important;
  }
  .pricing-tab-btn i {
    font-size: 0.75rem;
  }
  .pricing-card {
    padding: 1.5rem 1rem;
  }
  .pricing-card.featured {
    padding: 2.35rem 1.1rem 1.5rem 1.1rem !important;
  }
  .pricing-card.featured .plan-header {
    margin-top: 0.45rem;
  }
  .contact-box {
    padding: 1.15rem 0.85rem;
  }
  .form-control {
    font-size: 16px;
  }
  .floating-actions-bar {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
  .modal-content-card {
    width: 95vw;
    margin: 0.5rem;
  }
  .quote-modal {
    padding: 0.5rem;
  }
  .quote-modal-card {
    width: 95vw;
    padding: 1.35rem 1rem;
    margin: 0.5rem auto;
    max-height: 94vh;
  }
  .quote-modal-header {
    padding-inline: 0.25rem;
    margin-bottom: 0.85rem;
  }
}
