/* index.css - Scale Verse Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #050508;
  --bg-card: rgba(10, 10, 18, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  
  /* Brand Gradients & Colors */
  --color-blue: #3b82f6;
  --color-purple: #a855f7;
  --color-cyan: #06b6d4;
  --color-magenta: #ec4899;
  
  --grad-primary: linear-gradient(135deg, var(--color-blue) 0%, var(--color-purple) 100%);
  --grad-cyan-purple: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-purple) 100%);
  --grad-text: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  --grad-glow: radial-gradient(circle at center, rgba(168, 85, 247, 0.15) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 100%);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--color-blue), var(--color-purple));
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--color-cyan), var(--color-magenta));
}

/* Typographical hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Glassmorphism Panel Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

/* Gradient Borders */
.gradient-border-box {
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-dark), var(--bg-dark)), var(--grad-primary);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 16px;
}

/* Floating Grid Background Effect */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
  pointer-events: none;
  z-index: 1;
}

.bg-radial-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, rgba(168, 85, 247, 0.04) 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px 0;
}

header.scrolled {
  padding: 14px 0;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-svg {
  height: 46px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

nav a:hover {
  color: var(--text-main);
}

.header-cta {
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--grad-primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 85, 247, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px 24px;
  z-index: 10;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 24px;
  display: inline-block;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.btn-primary {
  padding: 14px 32px;
  border-radius: 30px;
  background: var(--grad-primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
  padding: 14px 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: float ease-in-out 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* Apple Pinned Scroll Animation Section */
.scroll-section-container {
  position: relative;
  z-index: 10;
  height: 100vh; /* Fix: Matches viewport, eliminating the empty scrolling gap at the end */
  background: #030305;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0e0a1b 0%, #030305 70%);
}

.animation-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------
   NEW Central Mockups Layout
   ---------------------------------------------------- */
.center-mockups-container {
  position: relative;
  width: 340px;
  height: 340px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-mockups-container > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7); /* Fix: Centers all overlays relative to the parent */
  opacity: 0;
  pointer-events: none;
}

/* Globe default state mockup */
.mockup-globe {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.globe-outer-glow {
  position: absolute;
  top: -40px; left: -40px; right: -40px; bottom: -40px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(168, 85, 247, 0.1) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse-glow 4s infinite alternate ease-in-out;
}

.globe-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1e1b4b 0%, #090514 80%, #030008 100%);
  box-shadow: 
    inset 0 0 50px rgba(59, 130, 246, 0.4),
    inset -10px -10px 40px rgba(168, 85, 247, 0.3),
    0 0 30px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.globe-grid {
  position: absolute;
  width: 200%;
  height: 100%;
  background-image: 
    radial-gradient(circle, transparent 20%, #050508 100%),
    linear-gradient(rgba(59, 130, 246, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px, 20px 20px;
  animation: rotateGrid 24s linear infinite;
  transform: translate3d(-25%, 0, 0);
}

.globe-svg {
  position: absolute;
  width: 90%;
  height: 90%;
  fill: none;
  stroke: rgba(0, 240, 255, 0.45);
  stroke-width: 1;
  stroke-dasharray: 4 4;
  animation: rotateGlobe 40s linear infinite;
}

.globe-svg-solid {
  position: absolute;
  width: 90%;
  height: 90%;
  fill: none;
  stroke: rgba(168, 85, 247, 0.3);
  stroke-width: 1.5;
  animation: rotateGlobeCounter 50s linear infinite;
}

/* Mockup 1: Webpage Mockup (Browser Window) */
.mockup-web {
  width: 340px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.mockup-url {
  font-size: 9px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 2px 14px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 130px;
  text-align: center;
  font-family: monospace;
}

.mockup-body {
  flex-grow: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.web-hero {
  height: 52px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.web-hero-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.web-hero-bar {
  width: 70px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.web-text-row {
  display: flex;
  gap: 6px;
}

.web-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.web-bar.long { width: 100%; }
.web-bar.medium { width: 60%; }
.web-bar.short { width: 30%; }

.web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}

.web-box {
  height: 38px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

/* Mockup 2: Phone Mockup (Social Feed) */
.mockup-phone {
  width: 190px;
  height: 330px;
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  z-index: 10;
}

.phone-body {
  flex-grow: 1;
  padding: 22px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.social-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-image {
  height: 135px;
  background: linear-gradient(45deg, rgba(236, 72, 153, 0.15), rgba(168, 85, 247, 0.15));
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.heart-pulse-icon {
  color: var(--color-magenta);
  opacity: 0.15;
  animation: heartPulse 1.8s infinite ease-in-out;
}

.heart-pulse-icon svg {
  width: 44px;
  height: 44px;
}

.social-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 2px;
}

.action-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}
.action-icon.active {
  color: var(--color-magenta);
  fill: var(--color-magenta);
}

.social-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Floating engagement elements phone mockup */
.floating-bubble {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  z-index: 12;
  opacity: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.floating-bubble svg {
  width: 14px;
  height: 14px;
}

.bubble-1 { left: -24px; bottom: 120px; color: var(--color-magenta); }
.bubble-2 { right: -28px; bottom: 180px; color: var(--color-blue); }
.bubble-3 { right: -18px; bottom: 85px; }
.bubble-4 { left: -32px; bottom: 200px; }

/* Mockup 3: Ads Analytics Dashboard Mockup */
.mockup-ads {
  width: 320px;
  height: 210px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  flex-grow: 1;
}

.ads-stat-card {
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  text-align: center;
}

.ads-stat-label {
  font-size: 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.ads-stat-value {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-display);
}

.ads-chart-container {
  grid-column: span 2;
  height: 60px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.ads-chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ads-bar-chart {
  grid-column: span 2;
  height: 38px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 12px;
}

.ads-bar-chart .bar {
  width: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 4px 0 0;
  transition: all 0.5s ease;
}

/* Corrected Brand Logo Overlay (End Scroll) */
.globe-logo-overlay {
  width: 180px;
  height: 180px;
  z-index: 10;
  filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.6));
}

/* Floating Device and Platform Nodes */
.network-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.network-node::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 50%;
  background: var(--node-gradient, var(--grad-primary));
  z-index: -1;
  opacity: 0.7;
}

.network-node::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: #0d0d15;
  z-index: -1;
}

.network-node:hover {
  transform: scale(1.15);
  box-shadow: 0 0 30px var(--node-color, var(--color-blue));
}

.node-icon {
  width: 32px;
  height: 32px;
  color: white;
  transition: transform 0.3s ease;
}

.network-node:hover .node-icon {
  transform: scale(1.1);
}

/* Node Positions */
.node-laptop    { top: 20%; left: 16%; --node-color: #3b82f6; --node-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.node-mobile    { top: 42%; right: 12%; --node-color: #ec4899; --node-gradient: linear-gradient(135deg, #ec4899, #db2777); }
.node-tablet    { top: 62%; left: 15%; --node-color: #06b6d4; --node-gradient: linear-gradient(135deg, #06b6d4, #0891b2); }
.node-instagram { top: 15%; right: 26%; --node-color: #e1306c; --node-gradient: linear-gradient(135deg, #fccc63, #fbad50, #cd486b, #4c68d7); }
.node-linkedin  { top: 28%; right: 18%; --node-color: #0077b5; --node-gradient: linear-gradient(135deg, #0077b5, #005983); }
.node-facebook  { top: 16%; left: 32%; --node-color: #1877f2; --node-gradient: linear-gradient(135deg, #1877f2, #0d5dd7); }
.node-youtube   { top: 72%; right: 22%; --node-color: #ff0000; --node-gradient: linear-gradient(135deg, #ff0000, #c00000); }
.node-tiktok    { top: 74%; left: 32%; --node-color: #00f0ff; --node-gradient: linear-gradient(135deg, #010101, #00f0ff, #ff0050); }

/* Connecting Lines Layout */
.connection-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.connection-path {
  fill: none;
  stroke: var(--line-color, rgba(59, 130, 246, 0.3));
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 3px var(--line-color, rgba(59, 130, 246, 0.3)));
}

.connection-path-glow {
  fill: none;
  stroke: var(--line-color, rgba(59, 130, 246, 0.7));
  stroke-width: 4;
  opacity: 0.4;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: blur(4px);
}

.data-packet {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--packet-color, #ffffff);
  box-shadow: 0 0 10px 2px var(--packet-color, #ffffff);
  offset-rotate: auto;
  opacity: 0;
  z-index: 4;
}

/* ----------------------------------------------------
   NEW Left / Right Side Scrolling Cards Layout
   ---------------------------------------------------- */
/* Layout Wrapper for Scrolling Cards */
.scrolling-text-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.side-scroll-card-wrapper {
  position: absolute;
  width: 360px;
  z-index: 20;
  pointer-events: none;
}

.side-scroll-card-wrapper.card-left-wrapper {
  left: 6%;
  top: 32%;
}

.side-scroll-card-wrapper.card-right-wrapper {
  right: 6%;
  top: 32%;
}

.side-scroll-card {
  width: 100%;
  padding: 32px;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: box-shadow 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-badge svg {
  width: 22px;
  height: 22px;
}

.side-scroll-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.side-scroll-card p {
  font-size: 14.5px;
  line-height: 1.6;
}

/* Services Grid Section */
.services-section {
  position: relative;
  padding: 120px 24px;
  z-index: 10;
  background: #050508;
}

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

.section-header h2 {
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 18px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--grad-primary);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-blue);
  transition: color 0.3s ease;
  margin-top: auto;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-link {
  color: var(--color-purple);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* Brand Showcase Section */
.brand-showcase {
  position: relative;
  padding: 120px 24px;
  z-index: 10;
  background: #050508;
}

.showcase-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.showcase-image-wrapper {
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.showcase-image {
  width: 100%;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-badge-effect {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.showcase-content h3 {
  font-size: 36px;
  margin-bottom: 24px;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-content p {
  font-size: 16px;
  margin-bottom: 24px;
}

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

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.showcase-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

.showcase-list span {
  font-weight: 600;
  color: var(--text-main);
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 120px 24px;
  z-index: 10;
  background: #030305;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info h2 {
  font-size: 48px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-info p {
  font-size: 17px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-item-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.02);
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.contact-item-card:hover .contact-item-icon {
  background: var(--grad-primary);
  color: white;
}

.contact-item-details h4 {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item-details p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

/* Contact Form Grid */
.contact-form {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-field select option {
  color: #000000;
  background-color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-purple);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.15);
}

.form-field input:focus + label,
.form-field select:focus + label,
.form-field textarea:focus + label {
  color: var(--color-purple);
}

.form-submit-btn {
  padding: 16px;
  border-radius: 30px;
  background: var(--grad-primary);
  border: none;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.45);
}

.form-submit-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Success Message Card */
.form-success-message {
  text-align: center;
  padding: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-cyan);
  border: 2px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.success-check-circle svg {
  width: 40px;
  height: 40px;
}

.form-success-message h3 {
  font-size: 28px;
  color: white;
}

.form-success-message p {
  font-size: 15px;
}

/* Floating Actions Widgets */
.floating-widgets {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.floating-btn.whatsapp {
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.floating-btn.whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-4px) scale(1.08);
}

.floating-btn.phone {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  color: var(--color-blue);
  border-color: rgba(59, 130, 246, 0.2);
}

.floating-btn.phone:hover {
  background: var(--color-blue);
  color: white;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transform: translateY(-4px) scale(1.08);
}

/* Footer Section */
footer {
  background: #020204;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 24px 40px 24px;
  z-index: 10;
  position: relative;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  font-size: 15px;
  max-width: 320px;
}

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

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.social-icon-btn:hover {
  color: white;
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Animations declarations */
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-8px) translateX(-50%); }
}

@keyframes pulse-glow {
  0% { transform: scale(0.98); opacity: 0.8; }
  100% { transform: scale(1.02); opacity: 1; }
}

@keyframes rotateGlobe {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@keyframes rotateGrid {
  0% { transform: translate3d(-25%, 0, 0) rotate(0deg); }
  100% { transform: translate3d(-25%, 0, 0) rotate(360deg); }
}

@keyframes scaleIn {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.12); opacity: 0.3; }
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
  .hero h1 { font-size: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  
  .side-scroll-card-wrapper { width: 300px; }
  .side-scroll-card-wrapper.card-left-wrapper { left: 2%; }
  .side-scroll-card-wrapper.card-right-wrapper { right: 2%; }
}

@media (max-width: 768px) {
  header { padding: 16px 0; }
  
  /* Mobile Menu Toggle Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 30px;
    padding: 0;
  }
  
  .mobile-menu-btn .bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* Animate menu button into an X */
  .mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Mobile Drawer Navigation */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 100px 32px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  
  nav a {
    font-size: 18px;
    font-family: var(--font-display);
    font-weight: 600;
  }
  
  .header-cta {
    display: none; /* Hide on mobile header to avoid overlap */
  }
  
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  /* Stacking the form fields on phones */
  .form-grid-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  
  /* Pinned Scroll Section keeps Full Screen on Mobile */
  .scroll-section-container {
    height: 100vh !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
  }
  
  .sticky-wrapper {
    position: sticky !important;
    top: 0;
    height: 100vh !important;
    overflow: hidden !important;
    width: 100%;
  }
  
  .animation-viewport {
    height: 100vh !important;
    position: relative;
    display: flex;
    flex-direction: column !important; /* Stack mockup container above text cards vertically */
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
  }

  /* Adaptive layout for Mobile mockups container, positioned statically in vertical flex flow */
  .center-mockups-container {
    width: 250px !important;
    height: 250px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-bottom: 12px !important;
  }
  
  .mockup-globe { width: 230px !important; height: 230px !important; }
  .mockup-web { width: 250px !important; height: 160px !important; }
  .mockup-phone { width: 120px !important; height: 220px !important; border-width: 3px !important; }
  .mockup-phone .social-image { height: 80px !important; }
  .mockup-ads { width: 250px !important; height: 160px !important; }
  .mockup-ads .ads-stat-value { font-size: 14px !important; }
  .mockup-ads .ads-chart-container { height: 40px !important; }
  .globe-logo-overlay { width: 120px !important; height: 120px !important; }
  
  /* Smaller node orbits for mobile */
  .network-node {
    width: 52px !important;
    height: 52px !important;
  }
  .node-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* Tighten coordinates of nodes on mobile to avoid screen overflow */
  .node-laptop    { top: 12% !important; left: 8% !important; }
  .node-mobile    { top: 35% !important; right: 4% !important; }
  .node-tablet    { top: 56% !important; left: 6% !important; }
  .node-instagram { top: 7% !important; right: 16% !important; }
  .node-linkedin  { top: 22% !important; right: 8% !important; }
  .node-facebook  { top: 8% !important; left: 24% !important; }
  .node-youtube   { top: 68% !important; right: 12% !important; }
  .node-tiktok    { top: 70% !important; left: 20% !important; }
  
  /* Center mobile text cards container statically in the flex flow */
  .scrolling-text-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 90% !important;
    max-width: 450px !important;
    height: 170px !important; /* Fixed height for flex vertical flow alignment */
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 12px !important;
  }

  .side-scroll-card-wrapper {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 25 !important;
  }
  
  .side-scroll-card {
    padding: 20px 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(10, 10, 15, 0.85) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    margin-bottom: 0 !important;
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    transform: none !important;
  }

  .card-icon-badge {
    margin: 0 auto 12px auto !important;
  }

  .side-scroll-card h3 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  .side-scroll-card p {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }
}
