/* ==========================================================================
   MALAYIL MEDIA - AI DIGITAL MARKETING LANDING PAGE STYLESHEET
   Aesthetics: Deep Obsidian Dark Mode, Radiant Electric Cyan & Neon Blue Glow,
   Glassmorphism, High-Legibility Typography, Fluid Spacing & Micro-Interactions
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-primary: #07090e;
  --bg-secondary: #0b0f19;
  --bg-tertiary: #111827;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-card-hover: rgba(30, 41, 59, 0.8);
  --bg-glass: rgba(11, 15, 25, 0.75);
  
  /* Accents & Glows */
  --cyan-primary: #00f2fe;
  --cyan-bright: #38bdf8;
  --cyan-glow: rgba(0, 242, 254, 0.35);
  --blue-primary: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --teal-primary: #0d9488;
  --teal-bright: #14b8a6;
  --purple-glow: rgba(139, 92, 246, 0.25);
  
  /* Text Colors */
  --text-pure: #ffffff;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-highlight: #38bdf8;
  
  /* Borders & Highlights */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(56, 189, 248, 0.2);
  --border-hover: rgba(0, 242, 254, 0.5);
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 35px rgba(0, 242, 254, 0.25);
  --shadow-glow-blue: 0 0 35px rgba(37, 99, 235, 0.3);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Layout */
  --container-max: 1200px;
  --nav-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  overflow-x: clip;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Global Utilities & Typography --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-cyan {
  color: var(--cyan-primary);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 50%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-glow {
  text-shadow: 0 0 20px var(--cyan-glow);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--cyan-bright);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-pure);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.text-center {
  text-align: center;
}

.center-elements {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Ambient Canvas & Background Curves --- */
.bg-ambient-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  will-change: transform;
}

.blob-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.25) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
  top: -150px;
  right: -100px;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(13, 148, 136, 0.15) 50%, transparent 70%);
  bottom: 10%;
  left: -150px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-smooth);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00f2fe 0%, #2563eb 100%);
  color: #050b14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.55);
  color: #000;
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-glass);
  color: var(--text-pure);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: #050b14;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-icon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon-arrow {
  transform: translateX(4px);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(7, 9, 14, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 242, 254, 0.2);
  height: 76px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: clamp(20px, 3.5vw, 44px);
  padding-right: clamp(20px, 3.5vw, 44px);
  gap: 20px;
}

/* Brand Logo pinned cleanly on the far left */
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 4px 0;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

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

.logo-img {
  height: 52px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 242, 254, 0.35));
  transition: height var(--transition-smooth), filter var(--transition-fast);
}

.site-header.scrolled .logo-img {
  height: 44px;
}

/* Centered Navigation Menu with proper spacing */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 auto;
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 2px;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  box-shadow: 0 0 10px var(--cyan-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-pure);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-menu-cta {
  display: none;
}

/* Header CTA Group on the far right */
.header-cta-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: var(--border-glass);
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --- Hero Sticky Scroll Track & Sequence Pinning --- */
.hero-scroll-track {
  position: relative;
  width: 100%;
  height: 350vh; /* Dedicated scroll track giving ample room for the full animation before release */
  background: #07090e;
}

.hero-section.hero-sticky-frame {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  padding-top: calc(var(--nav-height) + 10px);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  overflow: hidden;
  background: radial-gradient(circle at 72% 45%, rgba(0, 242, 254, 0.09) 0%, transparent 60%), #07090e;
}

.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.5vw, 40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Scroll Prompt Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

.hero-scroll-indicator.hidden {
  opacity: 0;
}

.scroll-mouse-icon {
  width: 18px;
  height: 28px;
  border: 2px solid rgba(0, 242, 254, 0.5);
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel-dot {
  width: 3px;
  height: 5px;
  background: var(--cyan-primary);
  border-radius: 2px;
  margin-top: 4px;
  animation: scrollWheelBounce 1.6s infinite ease-in-out;
}

@keyframes scrollWheelBounce {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

.scroll-hint-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

/* Right Column: Seamlessly Blended Scroll-Driven AI Hologram Sequence */
.hero-sequence-column {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-sequence-blended-wrap {
  position: relative;
  width: 100%;
  max-width: min(390px, 90vw);
  max-height: min(690px, calc(100vh - var(--nav-height) - 80px));
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blend-ambient-glow {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.25) 0%, rgba(37, 99, 235, 0.16) 45%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 1;
}

.hero-blended-canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  margin: auto;
  /* Symmetrical balanced edge feathering into the background */
  mask-image: radial-gradient(ellipse 88% 92% at 50% 50%, black 72%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 50% 50%, black 72%, transparent 100%);
  filter: drop-shadow(0 0 35px rgba(0, 242, 254, 0.3));
}

/* Right Column: Hero Content */
.hero-content-column {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-headline .highlight-cyan {
  color: var(--cyan-primary);
  text-shadow: 0 0 35px var(--cyan-glow);
}

.hero-subheadline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-chip svg {
  color: var(--cyan-primary);
  flex-shrink: 0;
}

/* Hero Platform Ticker */
.platform-ticker-section {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(11, 15, 25, 0.4);
  backdrop-filter: blur(10px);
}

.ticker-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.platform-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.75;
  transition: all var(--transition-fast);
}

.platform-item:hover {
  opacity: 1;
  color: var(--cyan-bright);
  transform: translateY(-2px);
}

.platform-item svg {
  width: 22px;
  height: 22px;
}

/* --- Section 01: Bringing Ideas to Life (Showcase & Interactive Mockup) --- */
.showcase-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan-bright);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-pure);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.showcase-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.feature-pill-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.feature-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.pill-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid var(--cyan-bright);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Device Mockup */
.mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-glow {
  position: absolute;
  width: 380px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.25) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
}

.phone-mockup-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 600px;
  background: #0b0f19;
  border-radius: 46px;
  border: 4px solid #1e293b;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 242, 254, 0.2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-notch {
  width: 110px;
  height: 24px;
  background: #020617;
  border-radius: 20px;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
}

.phone-screen {
  flex: 1;
  background: #07090e;
  border-radius: 34px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

.mockup-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.mockup-tab-btn {
  flex: 1;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 4px;
  border-radius: var(--radius-pill);
  text-align: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.mockup-tab-btn.active {
  background: var(--cyan-primary);
  color: #050b14;
}

.mockup-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.mockup-tab-pane.active {
  display: block;
}

.screen-card {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 12px;
}

.screen-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.screen-stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cyan-primary);
}

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

/* --- Section 02: Our Expertise, Your Growth (Services Grid) --- */
.services-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.5) 50%, transparent 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  background: var(--bg-card-hover);
}

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

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  margin-bottom: 24px;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(4deg);
  background: var(--cyan-primary);
  color: #050b14;
  box-shadow: 0 0 20px var(--cyan-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-deliverables {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 18px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-main);
}

.deliverable-item svg {
  color: var(--cyan-bright);
  flex-shrink: 0;
}

.service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan-bright);
  transition: var(--transition-fast);
}

.service-action-btn:hover {
  color: #fff;
  transform: translateX(4px);
}

/* --- Section 03: Three Pillars of Success (Luminous Venn / Ecosystem Diagram) --- */
.pillars-section {
  position: relative;
  padding: 120px 0;
  z-index: 2;
  overflow: hidden;
}

.pillars-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* 3-Circle Venn Graphic */
.venn-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 480px;
  margin: 0 auto;
}

.venn-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.circle-top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 242, 254, 0.28) 0%, rgba(0, 242, 254, 0.08) 70%);
  border: 1.5px solid rgba(0, 242, 254, 0.4);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.2);
}

.circle-left {
  bottom: 30px;
  left: 20px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0.08) 70%);
  border: 1.5px solid rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 35px rgba(37, 99, 235, 0.2);
}

.circle-right {
  bottom: 30px;
  right: 20px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.28) 0%, rgba(13, 148, 136, 0.08) 70%);
  border: 1.5px solid rgba(13, 148, 136, 0.4);
  box-shadow: 0 0 35px rgba(13, 148, 136, 0.2);
}

.venn-circle:hover, .venn-circle.active {
  transform: scale(1.05);
  border-color: #fff;
  z-index: 10;
}

.circle-top:hover, .circle-top.active {
  transform: translateX(-50%) scale(1.05);
}

.venn-circle-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.venn-circle-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.venn-center-nexus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #020617;
  border: 2px solid var(--cyan-primary);
  box-shadow: 0 0 30px var(--cyan-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 15;
  text-align: center;
}

.nexus-badge {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--cyan-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Floating Detail Card */
.pillar-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}

.pillar-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 14px;
}

.pillar-detail-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 16px;
}

.pillar-detail-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pillar-item-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-item-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pillar-item-point svg {
  color: var(--cyan-primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Stats & Metrics Bar --- */
.stats-bar-section {
  position: relative;
  padding: 60px 0;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(16px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  padding: 10px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-value span {
  color: var(--cyan-primary);
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.stat-sublabel {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --- Section 04: Transformation Matrix (Before vs. With Malayil Media) --- */
.transformation-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.transform-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
}

.transform-card.before {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.transform-card.after {
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.15);
}

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

.transform-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.transform-card.before .transform-icon-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.transform-card.after .transform-icon-badge {
  background: rgba(0, 242, 254, 0.15);
  color: var(--cyan-primary);
}

.transform-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-pure);
}

.transform-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.transform-card.before .transform-item {
  color: var(--text-muted);
}

.transform-card.after .transform-item {
  color: var(--text-pure);
  font-weight: 500;
}

/* --- Section 05: Insights That Inspire (Real Performance Proof) --- */
.proof-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.proof-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.proof-tab-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.proof-tab-btn.active, .proof-tab-btn:hover {
  background: var(--cyan-primary);
  border-color: var(--cyan-primary);
  color: #050b14;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.proof-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  background: #020617;
  overflow: hidden;
}

.proof-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.proof-card:hover .proof-img-wrap img {
  transform: scale(1.05);
}

.proof-overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(8px);
  color: var(--cyan-bright);
  border: 1px solid var(--border-glass);
}

.proof-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 8px;
}

.proof-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.proof-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan-bright);
}

/* --- Section 06: Who I Am (Founder Story - Avinash M.M) --- */
.founder-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.6) 0%, transparent 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.founder-portrait-wrap {
  position: relative;
  text-align: center;
}

.founder-img-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.founder-img-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-badge-card {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: rgba(11, 15, 25, 0.9);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-align: left;
  box-shadow: var(--shadow-subtle);
}

.founder-name-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-pure);
}

.founder-title-text {
  font-size: 0.75rem;
  color: var(--cyan-bright);
}

.founder-story-content {
  display: flex;
  flex-direction: column;
}

.founder-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-pure);
  line-height: 1.65;
  margin-bottom: 20px;
  border-left: 3px solid var(--cyan-primary);
  padding-left: 20px;
}

.founder-bio {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.founder-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.founder-pillar-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.founder-pillar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
}

.founder-pillar-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Section 07: How It Works (4-Step Process) --- */
.process-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 242, 254, 0.2);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 242, 254, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}

.process-card:hover .process-step-num {
  color: var(--cyan-primary);
}

.process-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 10px;
}

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

/* --- Section 08: Interactive Lead Capture & Consultation Booking --- */
.contact-section {
  position: relative;
  padding: 120px 0;
  z-index: 2;
}

.contact-wrapper {
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.08) 0%, rgba(11, 15, 25, 0.8) 70%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 60px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-main);
}

.contact-perk-item svg {
  color: var(--cyan-primary);
  flex-shrink: 0;
}

.contact-direct-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.direct-connect-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.direct-connect-buttons {
  display: flex;
  gap: 12px;
}

/* Form Styles */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-pure);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  background: rgba(20, 30, 50, 0.85);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-dim);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Service Multi-Select Pills */
.service-pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pill-btn {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-pill-btn.selected {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
}

/* Budget Range Pills */
.budget-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.budget-pill-btn {
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.budget-pill-btn.selected {
  background: var(--cyan-primary);
  border-color: var(--cyan-primary);
  color: #050b14;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
}

/* --- Section 09: FAQ Accordion --- */
.faq-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-glass);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.1);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-pure);
}

.faq-icon-cross {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}

.faq-icon-cross::before, .faq-icon-cross::after {
  content: '';
  position: absolute;
  background: var(--cyan-bright);
  border-radius: 2px;
}

.faq-icon-cross::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

.faq-icon-cross::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
  transition: transform var(--transition-smooth);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Section 10: Final CTA Banner --- */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
}

.final-cta-card {
  position: relative;
  background: radial-gradient(circle at center, rgba(0, 242, 254, 0.15) 0%, rgba(37, 99, 235, 0.1) 40%, #0b0f19 80%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow);
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.15;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.final-cta-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 2;
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--cyan-bright);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* --- Sticky Mobile Bottom CTA Bar --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-glass);
  padding: 12px 16px;
  z-index: 99;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.875rem;
}

/* --- Lightbox Modal for Proof Images --- */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.3);
}

.lightbox-caption {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-pure);
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 1.5rem;
  color: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Success / Notification Modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #0b0f19;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-glow);
  position: relative;
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  color: var(--cyan-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 1px solid var(--cyan-bright);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

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

/* --- Keyframe Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.3)); }
  50% { filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.6)); }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1360px) {
  .header-container {
    padding-left: 28px;
    padding-right: 28px;
    gap: 16px;
  }
  .nav-menu {
    gap: 18px;
  }
  .nav-link {
    font-size: 0.88rem;
  }
  .logo-img {
    height: 48px;
  }
}

@media (max-width: 1140px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 12px;
  }
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.82rem;
    padding: 6px 1px;
  }
  .logo-img {
    height: 44px;
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 74px;
  }
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .logo-img {
    height: 44px;
  }
  .nav-menu, .header-cta-group {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px 24px 32px;
    border-bottom: 1px solid var(--border-glass);
    gap: 16px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
  }
  .nav-menu.mobile-active .nav-link {
    font-size: 1.05rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-menu.mobile-active .mobile-menu-cta {
    display: block;
    margin-top: 10px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-sequence-column {
    order: 2;
  }
  .hero-sequence-blended-wrap {
    max-width: 340px;
    margin: 0 auto;
  }
  .hero-content-column {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-chips {
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .founder-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-quote {
    border-left: none;
    border-top: 3px solid var(--cyan-primary);
    padding-left: 0;
    padding-top: 16px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }
  .logo-img {
    height: 40px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .transformation-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .budget-pills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-sticky-bar {
    display: flex;
  }
  .site-footer {
    padding-bottom: 90px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .venn-visual-wrapper {
    transform: scale(0.85);
    height: 420px;
  }
}

/* --- Local SEO & Geo-Targeting Hub --- */
.location-hub-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.7) 50%, transparent 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.location-region-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-region-name span {
  color: var(--cyan-primary);
}

.location-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.location-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.location-pill {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--cyan-bright);
}

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

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

