/* ============================================
   AGI SOCIAL — style.css  (Light Premium Theme)
   ============================================ */

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

/* ===== Design Tokens ===== */
:root {
  /* Light Backgrounds */
  --bg-base:   #ffffff;
  --bg-1:      #f8f9ff;
  --bg-2:      #f0f4ff;
  --bg-3:      #e8effe;
  --bg-card:   #ffffff;
  --bg-card-h: #f3f5ff;

  /* Dark Section Backgrounds */
  --bg-dark:   #060a14;
  --bg-dark-2: #0b1020;

  /* Brand Palette */
  --violet:       #7c3aed;
  --violet-mid:   #8b5cf6;
  --violet-light: #a78bfa;
  --cyan:         #06b6d4;
  --cyan-light:   #22d3ee;
  --blue:         #3b82f6;
  --blue-light:   #60a5fa;
  --magenta:      #ec4899;
  --white:        #ffffff;

  /* Text (light sections — overridden in dark sections) */
  --txt:       #0b0d18;
  --txt-muted: #4a5270;
  --txt-dim:   #8892b0;

  /* Borders (light) */
  --border:        rgba(11,13,24,0.07);
  --border-hover:  rgba(11,13,24,0.18);
  --border-violet: rgba(124,58,237,0.28);
  --border-cyan:   rgba(6,182,212,0.28);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #7c3aed 0%, #3b82f6 55%, #06b6d4 100%);
  --grad-violet:  linear-gradient(135deg, #6d28d9 0%, #a78bfa 100%);
  --grad-text:    linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
  --grad-card:    linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(6,182,212,0.03) 100%);
  --grad-hero:    linear-gradient(160deg, #060a14 0%, #0d1830 100%);

  /* Glows */
  --glow-violet: 0 0 28px rgba(124,58,237,0.40), 0 0 56px rgba(124,58,237,0.15);
  --glow-cyan:   0 0 28px rgba(6,182,212,0.40),  0 0 56px rgba(6,182,212,0.15);
  --glow-sm:     0 4px 20px rgba(124,58,237,0.28);
  --glow-md:     0 8px 40px rgba(124,58,237,0.35);

  /* Shadows */
  --sh-xs: 0  2px  8px rgba(11,13,24,0.06);
  --sh-sm: 0  4px 18px rgba(11,13,24,0.09);
  --sh-md: 0  8px 36px rgba(11,13,24,0.12);
  --sh-lg: 0 24px 64px rgba(11,13,24,0.15);

  /* Typography */
  --ff-body:    'Inter', -apple-system, sans-serif;
  --ff-display: 'Space Grotesk', -apple-system, sans-serif;

  /* Layout */
  --sec-py:  120px;
  --wrap:    1280px;
  --wrap-px: 24px;

  /* Radius */
  --r-sm:    8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 9999px;

  /* Transition */
  --t:  0.28s ease;
  --ts: 0.55s cubic-bezier(0.22,1,0.36,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg-base);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Container ===== */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--wrap-px);
}

/* ===== Gradient Text ===== */
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
}

/* ===== Section Tag ===== */
.section-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.22);
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  color: var(--txt);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--txt-muted);
  line-height: 1.78;
  max-width: 740px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--txt-muted);
  line-height: 1.85;
  margin-bottom: 36px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--t);
  border: 1.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--glow-sm);
  border-color: rgba(124,58,237,0.30);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-md);
}
.btn--ghost {
  background: rgba(11,13,24,0.05);
  color: var(--txt);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(11,13,24,0.09);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.btn--outline {
  background: transparent;
  color: var(--txt);
  border-color: var(--border-hover);
}
.btn--outline:hover {
  background: var(--bg-2);
  transform: translateY(-3px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.30);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
}
.btn--large { padding: 18px 40px; font-size: 1rem; }

/* ================================================================
   VIDEO MODAL / LIGHTBOX
================================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.video-modal__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.90);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.video-modal.active .video-modal__container {
  transform: scale(1);
}

.video-modal__video {
  display: block;
  max-width: min(92vw, 520px);   /* portrait cap */
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.80),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 60px rgba(124,58,237,0.20);
  background: #000;
}
/* Landscape videos: allow wider */
.video-modal__video.is-landscape {
  max-width: min(94vw, 960px);
}

.video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.video-modal__close:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.10);
}

.video-modal__meta {
  margin-top: 16px;
  text-align: center;
}
.video-modal__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2px;
}
.video-modal__cat {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--violet-light);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* Hover effect on card is now just a preview cue — dimmer overlay */
.video-card { cursor: pointer; }

/* ================================================================
   LANGUAGE SWITCHER
================================================================ */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  background: rgba(11,13,24,0.06);
  border: 1px solid var(--border);
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--txt-muted);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  font-family: var(--ff-body);
}
.lang-btn:hover { background: rgba(11,13,24,0.10); color: var(--txt); }
.lang-btn .lang-arrow { transition: transform var(--t); display: flex; align-items: center; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }

.navbar.scrolled .lang-btn {
  background: rgba(11,13,24,0.06);
  border-color: rgba(11,13,24,0.12);
  color: var(--txt-muted);
}
.navbar.scrolled .lang-btn:hover { background: rgba(11,13,24,0.10); color: var(--txt); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  min-width: 155px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.20s ease, transform 0.20s ease;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--txt-muted);
  transition: background var(--t), color var(--t);
  border-left: 2px solid transparent;
}
.lang-option:hover { background: var(--bg-1); color: var(--txt); }
.lang-option--active {
  color: var(--violet);
  background: rgba(124,58,237,0.05);
  border-left-color: var(--violet);
}

.navbar.scrolled .lang-dropdown { background: #fff; border-color: rgba(11,13,24,0.09); }
.navbar.scrolled .lang-option { color: var(--txt-muted); }
.navbar.scrolled .lang-option:hover { background: var(--bg-1); color: var(--txt); }
.navbar.scrolled .lang-option--active { color: var(--violet); background: rgba(124,58,237,0.05); border-left-color: var(--violet); }

/* Mobile language row */
.lang-mobile-row {
  display: flex;
  gap: 8px;
  padding: 10px 18px 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.lang-mobile-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 10px;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--txt-muted);
  border: 1px solid var(--border);
  transition: all var(--t);
  text-align: center;
}
.lang-mobile-option:hover { border-color: var(--violet); color: var(--violet); }
.lang-mobile-option--active { background: rgba(124,58,237,0.07); border-color: var(--violet); color: var(--violet); }
.navbar.scrolled .lang-mobile-option { color: var(--txt-muted); border-color: rgba(11,13,24,0.12); }
.navbar.scrolled .lang-mobile-option--active { color: var(--violet); border-color: var(--violet); background: rgba(124,58,237,0.07); }

/* ================================================================
   CURSOR SPOTLIGHT
================================================================ */
.cursor-spotlight {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124,58,237,0.035) 0%,
    rgba(59,130,246,0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  top: 0; left: 0;
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: all var(--t);
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Light silver/gray glass on scroll */
.navbar.scrolled {
  padding: 6px 0;
  background: rgba(240, 243, 252, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(11,13,24,0.08);
  box-shadow: 0 2px 20px rgba(11,13,24,0.08);
}

.navbar__container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo-img {
  /* 2× the previous size */
  height: 112px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  transition: filter var(--t), height var(--t);
}
.navbar.scrolled .navbar__logo-img {
  /* slight size reduction when scrolled to keep bar compact */
  height: 96px;
  filter: drop-shadow(0 1px 6px rgba(11,13,24,0.10));
}

.navbar__brand { flex-shrink: 0; display: block; }

.brand-nova    { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 800; color: var(--txt); }
.brand-digital { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 800; color: var(--violet); }

.navbar__menu {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}

.navbar__link {
  font-size: 0.88rem; font-weight: 600;
  color: var(--txt-muted);
  padding: 8px 15px;
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
}
.navbar__link:hover { color: var(--txt); background: rgba(11,13,24,0.05); }
.navbar__link.active { color: var(--violet); background: rgba(124,58,237,0.07); }

/* Scrolled navbar: dark text on light silver background */
.navbar.scrolled .navbar__link          { color: var(--txt-muted); }
.navbar.scrolled .navbar__link:hover    { color: var(--txt); background: rgba(11,13,24,0.05); }
.navbar.scrolled .navbar__link.active   { color: var(--violet); background: rgba(124,58,237,0.07); }
.navbar.scrolled .brand-nova            { color: var(--txt); }
.navbar.scrolled .brand-digital         { color: var(--violet); }

.navbar__cta { flex-shrink: 0; }

.navbar__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; padding: 9px;
  border-radius: var(--r-sm);
  background: rgba(11,13,24,0.05);
  border: 1px solid var(--border);
  margin-left: auto;
  transition: background var(--t);
}
.navbar.scrolled .navbar__hamburger { background: rgba(11,13,24,0.06); border-color: rgba(11,13,24,0.10); }
.navbar__hamburger:hover { background: var(--bg-2); }
.navbar__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--txt); border-radius: 2px;
  transition: all var(--t);
}
.navbar.scrolled .navbar__hamburger span { background: var(--txt); }
.navbar__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  padding: 16px var(--wrap-px) 24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  box-shadow: var(--sh-md);
}
.navbar.scrolled .navbar__mobile {
  background: rgba(240,243,252,0.98);
  border-top-color: rgba(11,13,24,0.08);
}
.navbar__mobile.open { display: block; }
.navbar__mobile ul   { display: flex; flex-direction: column; gap: 4px; }
.navbar__mobile .navbar__link { display: block; padding: 13px 18px; font-size: 1rem; }
.navbar__mobile .btn { display: flex; justify-content: center; margin-top: 16px; }

/* ================================================================
   BRAND INTRO — Light White Hero
================================================================ */
.brand-intro {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(
    ellipse 120% 100% at 50% 60%,
    #f0f4ff 0%,
    #f8f9ff 50%,
    #ffffff 100%
  );
}

/* Subtle dot grid */
.brand-intro::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(rgba(124,58,237,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.brand-intro__network {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.brand-intro__content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
  padding: 120px var(--wrap-px) 80px;
  width: 100%;
}

/* PNG transparent logo — drop-shadow follows the actual logo shape */
.brand-intro__logo {
  width: 300px;
  max-width: 72vw;
  height: auto;
  display: block;
  /* drop-shadow traces the real shape; box-shadow would create a white rectangle */
  filter:
    drop-shadow(0 0 40px rgba(124,58,237,0.28))
    drop-shadow(0 4px 20px rgba(11,13,24,0.10));
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

.brand-intro__tagline {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 500;
  color: var(--txt-muted);
  letter-spacing: 0.01em;
  max-width: 680px;
  line-height: 1.5;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.40s both;
}
.brand-intro__tagline strong { color: var(--violet); font-weight: 700; }

.brand-intro__actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.58s both;
}

.brand-intro__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--txt-dim);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  animation: fadeIn 1.2s ease 1s both;
}
.brand-intro__scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(124,58,237,0.50), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.40; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.18); }
}

/* Social network nodes — keep colored, they pop on light bg */
.sn-connections {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.sn-connections line {
  stroke: rgba(124,58,237,0.15);
  stroke-width: 0.4;
  animation: lineFlicker 4s ease-in-out infinite;
}
.sn-connections line:nth-child(2)  { animation-delay: 0.6s; }
.sn-connections line:nth-child(3)  { animation-delay: 1.2s; }
.sn-connections line:nth-child(4)  { animation-delay: 1.8s; }
.sn-connections line:nth-child(5)  { animation-delay: 2.4s; }
.sn-connections line:nth-child(6)  { animation-delay: 0.3s; }
.sn-connections line:nth-child(7)  { animation-delay: 0.9s; }
.sn-connections line:nth-child(8)  { animation-delay: 1.5s; }
.sn-connections line:nth-child(9)  { animation-delay: 2.1s; }
.sn-connections line:nth-child(10) { animation-delay: 2.7s; }
@keyframes lineFlicker { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

.sn-node {
  position: absolute; width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  animation: nodeFloat 7s ease-in-out infinite;
}
.sn-node svg { width: 28px; height: 28px; fill: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); flex-shrink: 0; }
.sn-node::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes nodeFloat { 0%, 100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-12px); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.25); opacity: 0; } }

.sn-node--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); box-shadow: 0 0 28px rgba(220,39,67,.40),0 4px 16px rgba(0,0,0,.15); animation-delay:0s; }
.sn-node--tt { background:#010101; border:1.5px solid #69C9D0; box-shadow:0 0 24px rgba(105,201,208,.35),0 4px 16px rgba(0,0,0,.15); animation-delay:1.0s; animation-duration:8s; }
.sn-node--fb { background:#1877F2; box-shadow:0 0 26px rgba(24,119,242,.45),0 4px 16px rgba(0,0,0,.15); animation-delay:2.0s; animation-duration:9s; }
.sn-node--yt { background:#FF0000; box-shadow:0 0 28px rgba(255,0,0,.40),0 4px 16px rgba(0,0,0,.15); animation-delay:0.5s; animation-duration:6.5s; }
.sn-node--li { background:#0A66C2; box-shadow:0 0 26px rgba(10,102,194,.45),0 4px 16px rgba(0,0,0,.15); animation-delay:1.5s; animation-duration:7.5s; }
.sn-node--wa { background:#25D366; box-shadow:0 0 24px rgba(37,211,102,.40),0 4px 16px rgba(0,0,0,.15); animation-delay:2.5s; animation-duration:8.5s; }
.sn-node--tg { background:#2CA5E0; box-shadow:0 0 24px rgba(44,165,224,.40),0 4px 16px rgba(0,0,0,.15); animation-delay:3.0s; animation-duration:7s; }

.sn-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.sn-orb--1 { width:480px; height:480px; top:-100px; left:-120px; background:radial-gradient(circle,rgba(124,58,237,0.10),transparent 70%); animation:orbDrift 14s ease-in-out infinite; }
.sn-orb--2 { width:380px; height:380px; bottom:-80px; right:-80px; background:radial-gradient(circle,rgba(6,182,212,0.10),transparent 70%); animation:orbDrift 18s ease-in-out infinite reverse; }
.sn-orb--3 { width:300px; height:300px; top:30%; left:40%; background:radial-gradient(circle,rgba(59,130,246,0.08),transparent 70%); animation:orbDrift 11s ease-in-out infinite 3s; }
.sn-orb--4 { width:260px; height:260px; bottom:20%; left:20%; background:radial-gradient(circle,rgba(236,72,153,0.07),transparent 70%); animation:orbDrift 16s ease-in-out infinite 6s reverse; }
@keyframes orbDrift { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-25px) scale(1.06); } 66% { transform: translate(-20px,20px) scale(0.95); } }

/* ================================================================
   HERO — DARK SECTION (keeps strong visual punch)
================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: 150px 0 80px;
  background: var(--grad-hero);
  /* Override text colors for dark section */
  color: rgba(255,255,255,0.90);
}

.hero__container {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 var(--wrap-px);
}

.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero__orb--1 { width:700px; height:700px; background:radial-gradient(circle,rgba(124,58,237,0.18),transparent 70%); top:-150px; left:-200px; }
.hero__orb--2 { width:580px; height:580px; background:radial-gradient(circle,rgba(6,182,212,0.10),transparent 70%); top:40%; right:-180px; }
.hero__orb--3 { width:460px; height:460px; background:radial-gradient(circle,rgba(59,130,246,0.12),transparent 70%); bottom:-80px; left:38%; }

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none; z-index: 1;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

.hero__floating-cards { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.floating-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.88);
  white-space: nowrap;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), 0 0 0 1px rgba(124,58,237,0.15);
}
.floating-card--1 { top: 22%; left: 5%; }
.floating-card--2 { top: 28%; right: 7%; }
.floating-card--3 { bottom: 32%; left: 7%; }
.floating-card--4 { bottom: 26%; right: 5%; }
.floating-card__icon { font-size: 1.1rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 22px;
  border-radius: var(--r-pill);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--violet-light);
  font-size: 0.82rem; font-weight: 700;
  margin-bottom: 32px;
}
.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--violet-light); display: inline-block;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: #fff;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin: 0 auto 52px;
  max-width: 680px;
}
.hero__subtitle strong { color: #fff; }

.hero__actions {
  display: flex; justify-content: center;
  gap: 14px; margin-bottom: 72px; flex-wrap: wrap;
}

.hero__ticker {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.ticker__track   { display: flex; gap: 32px; width: max-content; }
.ticker__track span { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.30); white-space: nowrap; }
.ticker__sep     { color: var(--violet-light) !important; opacity: 0.55; }

/* ================================================================
   GRADIENT TEXT MARQUEE BAR
================================================================ */
.text-marquee-bar {
  overflow: hidden;
  padding: 0;
  background: var(--grad-primary);
  position: relative;
}
.text-marquee-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeX 28s linear infinite;
  padding: 18px 0;
}
.text-marquee-bar span {
  font-size: 0.80rem;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 28px;
}
.text-marquee-bar .tmb-sep {
  color: rgba(255,255,255,0.50);
  font-size: 0.6rem;
  padding: 0;
}

/* ================================================================
   IMAGE MARQUEE STRIP
================================================================ */
.img-marquee {
  overflow: hidden;
  padding: 28px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.img-marquee--dark {
  background: var(--bg-dark-2);
  border-color: rgba(255,255,255,0.06);
}
.img-marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeX 40s linear infinite;
}
.img-marquee--reverse .img-marquee__track {
  animation-direction: reverse;
}
.img-marquee__item {
  width: 340px;
  height: 200px;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  transition: transform var(--t);
}
.img-marquee__item:hover { transform: scale(1.02); }
.img-marquee__item::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.30) 100%
  );
}
/* Subtle gradient tint on each image */
.img-marquee__item::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: rgba(124,58,237,0.06);
  z-index: 1;
}

@keyframes marqueeX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   PLATFORMS STRIP
================================================================ */
.platforms-strip {
  padding: 36px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.platforms-strip__label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--txt-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 var(--wrap-px);
}
.platform-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 0.84rem; font-weight: 700;
  border: 1.5px solid var(--border);
  transition: all var(--t);
  background: var(--bg-card);
  color: var(--txt-muted);
  box-shadow: var(--sh-xs);
}
.platform-pill:hover { transform: translateY(-3px); box-shadow: var(--sh-md); color: var(--txt); }
.platform-pill--ig:hover { border-color: #C13584; box-shadow: 0 8px 24px rgba(193,53,132,0.18); color: #C13584; }
.platform-pill--tt:hover { border-color: #69C9D0; box-shadow: 0 8px 24px rgba(1,1,1,0.12); }
.platform-pill--fb:hover { border-color: #1877F2; box-shadow: 0 8px 24px rgba(24,119,242,0.18); color: #1877F2; }
.platform-pill--yt:hover { border-color: #FF0000; box-shadow: 0 8px 24px rgba(255,0,0,0.15); color: #FF0000; }
.platform-pill--li:hover { border-color: #0A66C2; box-shadow: 0 8px 24px rgba(10,102,194,0.18); color: #0A66C2; }
.platform-pill--tg:hover { border-color: #2CA5E0; box-shadow: 0 8px 24px rgba(44,165,224,0.18); color: #2CA5E0; }
.platform-pill--wa:hover { border-color: #25D366; box-shadow: 0 8px 24px rgba(37,211,102,0.15); color: #25D366; }
.platform-icon svg { flex-shrink: 0; }

/* ================================================================
   TRUST / STATS
================================================================ */
.trust-section {
  padding: 80px 0;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm);
}
.trust-item {
  background: var(--bg-card);
  padding: 48px 28px; text-align: center;
  transition: background var(--t);
}
.trust-item:hover { background: var(--bg-1); }
.trust-item__icon { display: flex; justify-content: center; margin-bottom: 14px; color: var(--violet); }
.trust-item__counter,
.trust-item__text {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: inline-block; line-height: 1; margin-bottom: 8px;
}
.trust-item__plus {
  display: inline-block;
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.trust-item__label { font-size: 0.88rem; font-weight: 600; color: var(--txt-muted); }

/* ================================================================
   VIDEO PORTFOLIO
================================================================ */
.video-section {
  padding: var(--sec-py) 0;
  background: var(--bg-1);
}
.video-section__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; gap: 24px; flex-wrap: wrap;
}
.video-section__titles h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--txt); line-height: 1.15; margin-bottom: 4px;
}
.video-section__titles .gradient-text { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); font-family: var(--ff-display); font-weight: 800; }
.video-section__hint { display: block; font-size: 0.82rem; color: var(--txt-dim); margin-top: 10px; font-style: italic; }
.video-badge-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-violet);
  color: var(--violet); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  transition: all var(--t); white-space: nowrap; flex-shrink: 0;
}
.video-badge-btn:hover { background: var(--violet); border-color: var(--violet); color: #fff; box-shadow: var(--glow-violet); }
.video-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.video-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: #08090f;
  box-shadow: 0 20px 60px rgba(11,13,24,0.18), 0 0 0 1px var(--border);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
  position: relative; will-change: transform;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 36px 80px rgba(11,13,24,0.22), 0 0 0 1px rgba(124,58,237,0.25);
}
.video-wrapper {
  position: relative; aspect-ratio: 9/16;
  overflow: hidden; background: #08090f;
}
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.video-card:hover .video-wrapper video { transform: scale(1.03); }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.02) 40%, rgba(0,0,0,0.65) 100%);
  transition: opacity 0.3s ease; z-index: 2;
}
.video-card:hover .video-overlay, .video-card.is-playing .video-overlay { opacity: 0; pointer-events: none; }
.play-btn {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--grad-primary); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: all var(--t);
  box-shadow: var(--glow-violet);
}
.play-btn svg { color: #fff; margin-left: 4px; }
.play-btn:hover { transform: scale(1.12); }
.video-badge {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  padding: 5px 13px; border-radius: var(--r-pill);
  background: rgba(0,0,0,0.68); backdrop-filter: blur(10px);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
}
.video-num {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.72rem; font-weight: 800;
}
.video-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 56px 22px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.video-info h4 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.video-info .video-cat {
  font-size: 0.68rem; font-weight: 800; color: var(--violet-light);
  letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
}
.video-info .video-cat::before { content: ''; display: inline-block; width: 22px; height: 2px; background: var(--violet-light); border-radius: 2px; }
.video-card.is-playing .video-badge { background: var(--violet); border-color: var(--violet); }

/* ================================================================
   PHOTO SEPARATORS
================================================================ */
.photo-sep {
  position: relative; min-height: 460px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
  background-size: cover; background-position: center;
  background-attachment: fixed; background-repeat: no-repeat;
}
.photo-sep::before { content: ''; position: absolute; inset: 0; z-index: 1; }
.photo-sep--navy::before  { background: linear-gradient(135deg, rgba(6,10,20,0.88) 0%, rgba(12,18,36,0.80) 100%); }
.photo-sep--blue::before  { background: linear-gradient(135deg, rgba(6,10,20,0.86) 0%, rgba(8,14,40,0.78) 100%); }
.photo-sep--split::before { background: linear-gradient(to right, rgba(6,10,20,0.92) 0%, rgba(6,10,20,0.70) 50%, rgba(16,12,50,0.80) 100%); }
.photo-sep__content { position: relative; z-index: 2; max-width: 960px; padding: 60px var(--wrap-px); }
.photo-sep__tag {
  display: inline-block; padding: 5px 16px; border-radius: var(--r-pill);
  background: rgba(124,58,237,0.18); border: 1px solid rgba(124,58,237,0.40);
  color: var(--violet-light); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 22px;
}
.photo-sep__quote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 900;
  color: #fff; line-height: 1.20; margin-bottom: 22px; letter-spacing: -0.015em;
}
.photo-sep__quote em { font-style: normal; color: var(--cyan-light); }
.photo-sep__sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem); color: rgba(255,255,255,0.62);
  line-height: 1.70; max-width: 680px; margin: 0 auto 36px;
}
.photo-sep__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.photo-sep .btn--outline { border-color: rgba(255,255,255,0.28); color: #fff; }
.photo-sep .btn--outline:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.55); }
.photo-sep::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px; background: var(--grad-primary); z-index: 3; border-radius: 2px 2px 0 0;
}

/* ================================================================
   SERVICES
================================================================ */
.services-section { padding: var(--sec-py) 0; background: var(--bg-base); position: relative; }
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; z-index: 1; }

.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden; will-change: transform;
  box-shadow: var(--sh-xs);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-primary); opacity: 0; transition: opacity var(--t);
  border-radius: 2px 2px 0 0;
}
.service-card:hover {
  border-color: rgba(124,58,237,0.20);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(124,58,237,0.08);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity: 1; }
.service-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.service-card__icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--t);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-3deg); }
.service-card__icon--video { background: rgba(124,58,237,0.10); color: var(--violet); }
.service-card__icon--ads   { background: rgba(6,182,212,0.10);  color: var(--cyan); }
.service-card__icon--auto  { background: rgba(59,130,246,0.10); color: var(--blue); }
.service-card__icon--web   { background: rgba(236,72,153,0.08); color: var(--magenta); }
.service-card__icon--brand { background: rgba(124,58,237,0.10); color: var(--violet); }
.service-card__icon--strat { background: rgba(6,182,212,0.10);  color: var(--cyan); }
.service-card__title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--txt); line-height: 1.3; }
.service-card__desc  { font-size: 0.88rem; color: var(--txt-muted); line-height: 1.72; margin-bottom: 22px; }
.service-card__tags  { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.service-tag {
  font-size: 0.75rem; font-weight: 600; padding: 4px 12px;
  border-radius: var(--r-pill); background: var(--bg-1);
  border: 1px solid var(--border); color: var(--txt-muted); transition: all var(--t);
}
.service-card:hover .service-tag { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.18); color: var(--violet); }
.service-card__link { font-size: 0.83rem; font-weight: 700; color: var(--violet); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--t); }
.service-card__link:hover { gap: 12px; }

/* ================================================================
   ALL SERVICES LIST
================================================================ */
.all-services-section { padding: var(--sec-py) 0; background: var(--bg-2); }
.all-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.service-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  transition: all var(--t); box-shadow: var(--sh-xs);
}
.service-item:hover { border-color: rgba(124,58,237,0.22); transform: translateX(4px); box-shadow: var(--sh-sm); }
.service-item__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad-primary); flex-shrink: 0; }
.service-item span { font-size: 0.85rem; font-weight: 600; color: var(--txt-muted); line-height: 1.4; }
.service-item:hover span { color: var(--txt); }
.all-services-cta { text-align: center; margin-top: 52px; }

/* ================================================================
   WHY CHOOSE US
================================================================ */
.why-section { padding: var(--sec-py) 0; background: var(--bg-base); position: relative; overflow: hidden; }
.why-section::after {
  content: ''; position: absolute; width: 600px; height: 600px; top: -100px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.06), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; z-index: 1; }
.why-card {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: all var(--t); will-change: transform; box-shadow: var(--sh-xs);
}
.why-card:hover {
  border-color: rgba(124,58,237,0.22);
  transform: translateY(-6px);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(124,58,237,0.08);
}
.why-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: rgba(124,58,237,0.10); border: 1.5px solid rgba(124,58,237,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--violet); margin-bottom: 20px; transition: transform var(--t), box-shadow var(--t);
}
.why-card:hover .why-card__icon { transform: scale(1.08); box-shadow: var(--glow-violet); }
.why-card h3 { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 700; color: var(--txt); margin-bottom: 10px; }
.why-card p  { font-size: 0.88rem; color: var(--txt-muted); line-height: 1.68; }

/* ================================================================
   TARGET / FOR WHO
================================================================ */
.target-section { padding: var(--sec-py) 0; background: var(--bg-1); }
.target-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.target-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); transition: all var(--t); min-width: 130px; text-align: center;
  box-shadow: var(--sh-xs);
}
.target-item:hover {
  border-color: rgba(124,58,237,0.22); transform: translateY(-5px);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(124,58,237,0.08);
}
.target-item__icon { font-size: 2rem; }
.target-item span  { font-size: 0.88rem; font-weight: 700; color: var(--txt); }

/* ================================================================
   AI TRANSFORMATION SECTION
================================================================ */
.ai-section {
  padding: var(--sec-py) 0;
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.ai-section::after {
  content: ''; position: absolute; top: 50%; right: -200px; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.06), transparent 65%);
  pointer-events: none; filter: blur(40px);
}
.ai-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.ai-text { position: sticky; top: 120px; }
.ai-text .section-title  { text-align: left; }
.ai-text .section-tag    { margin-bottom: 20px; }
.ai-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.ai-card {
  padding: 24px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  transition: all var(--t); will-change: transform; box-shadow: var(--sh-xs);
}
.ai-card:hover { border-color: rgba(6,182,212,0.22); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.ai-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.ai-card h4 { font-size: 0.93rem; font-weight: 700; color: var(--txt); margin-bottom: 6px; }
.ai-card p  { font-size: 0.80rem; color: var(--txt-muted); line-height: 1.55; }

/* ================================================================
   METHOD / PROCESS
================================================================ */
.method-section { padding: var(--sec-py) 0; background: var(--bg-base); }
.method-steps { display: flex; flex-direction: column; max-width: 820px; margin: 0 auto; position: relative; }
.method-steps::before {
  content: ''; position: absolute; left: 27px; top: 44px; bottom: 44px; width: 2px;
  background: linear-gradient(to bottom, var(--violet) 0%, var(--cyan) 70%, transparent 100%);
  opacity: 0.20;
}
.method-step { display: grid; grid-template-columns: 54px 1fr; gap: 32px; padding: 28px 0; position: relative; }
.method-step__number {
  width: 54px; height: 54px; border-radius: var(--r-md);
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 0.95rem; font-weight: 900; color: #fff;
  flex-shrink: 0; box-shadow: var(--glow-sm);
  position: relative; z-index: 1; transition: transform var(--t), box-shadow var(--t);
}
.method-step:hover .method-step__number { transform: scale(1.08); box-shadow: var(--glow-md); }
.method-step__content h3 { font-family: var(--ff-display); font-size: 1.28rem; font-weight: 800; color: var(--txt); margin-bottom: 8px; }
.method-step__content p  { font-size: 1rem; color: var(--txt-muted); line-height: 1.75; }

/* ================================================================
   RESULTS
================================================================ */
.results-section { padding: var(--sec-py) 0; background: var(--bg-1); position: relative; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.result-card {
  padding: 32px 28px; background: var(--bg-card);
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  transition: all var(--t); will-change: transform; box-shadow: var(--sh-xs);
}
.result-card:hover { border-color: rgba(124,58,237,0.20); box-shadow: var(--sh-md); transform: translateY(-4px); }
.result-card__icon { font-size: 2.1rem; margin-bottom: 16px; }
.result-card h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--txt); margin-bottom: 8px; }
.result-card p  { font-size: 0.88rem; color: var(--txt-muted); line-height: 1.65; }

/* ================================================================
   CTA SECTION — DARK
================================================================ */
.cta-section {
  padding: var(--sec-py) 0;
  background: var(--bg-dark);
  position: relative; overflow: hidden; text-align: center;
  color: rgba(255,255,255,0.90);
}
.cta-section__orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.14), transparent 65%);
  pointer-events: none;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.03) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-section .section-tag {
  background: rgba(124,58,237,0.18); border-color: rgba(124,58,237,0.40); color: var(--violet-light);
}
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 900;
  line-height: 1.18; margin-bottom: 22px; color: #fff;
}
.cta-subtitle {
  font-size: 1.08rem; color: rgba(255,255,255,0.58);
  line-height: 1.75; margin-bottom: 48px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-subtitle strong { color: #fff; }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.cta-features { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.cta-features span { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.50); }
.cta-features svg { color: var(--violet-light); flex-shrink: 0; }

/* ================================================================
   FOOTER — DARK
================================================================ */
.footer {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 40px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 64px; }
.footer__logo { display: flex; align-items: baseline; gap: 0; margin-bottom: 16px; }
.footer__logo .brand-nova    { color: #fff; }
.footer__logo .brand-digital { color: var(--violet-light); }
.footer__tagline { font-size: 0.9rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-bottom: 28px; }
.footer__social { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.40); transition: all var(--t);
}
.social-link:hover { background: var(--violet); border-color: var(--violet); color: #fff; transform: translateY(-3px); box-shadow: var(--glow-violet); }
.footer__heading { font-family: var(--ff-display); font-size: 0.78rem; font-weight: 800; color: rgba(255,255,255,0.80); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.38); transition: color var(--t); }
.footer__links a:hover { color: var(--violet-light); }
.footer__contacts { display: flex; flex-direction: column; gap: 14px; }
.footer__contacts li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.38); }
.footer__contacts svg { color: var(--violet-light); flex-shrink: 0; }
.footer__contacts a { color: rgba(255,255,255,0.38); transition: color var(--t); }
.footer__contacts a:hover { color: var(--violet-light); }
.footer__bottom {
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer__bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.22); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.83rem; color: rgba(255,255,255,0.22); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,0.50); }

/* ===== WhatsApp Floating Button ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}
.wa-float svg { display: block; }
