/* ═══════════════════════════════════
   VAYRA MEDIA — STYLES
   ═══════════════════════════════════ */

/* ─── PLUS JAKARTA SANS FONT IMPORT ────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── RESET & BASE ──────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #000319;
  --bg-secondary: #020824;
  --bg-card: rgba(8, 16, 40, 0.65);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.08);
  --cyan: #00c6ff;
  --blue: #1f6feb;
  --accent-blue: #1f6feb;
  --accent-cyan: #00c6ff;
  --grad-start: #1f6feb;
  --grad-end: #00c6ff;
  --brand-grad: linear-gradient(135deg, #1f6feb 0%, #00c6ff 100%);
  --brand-grad-rich: linear-gradient(135deg, #1f6feb 0%, #00c6ff 60%, #004ecc 100%);
  --gradient-glow: linear-gradient(90deg, rgba(31, 111, 235, 0.4), rgba(0, 198, 255, 0.4));
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #718096;
  --glass-bg: rgba(8, 16, 40, 0.65);
  --glow: 0 4px 24px rgba(0, 198, 255, 0.12);
  --glow-strong: 0 10px 40px rgba(31, 111, 235, 0.25);
  --radius-card: 16px;
  --section-pad: 120px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
}

/* ─── DOT GRID BG ───────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31, 111, 235, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* ─── CUSTOM CURSOR ─────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.2s, height 0.2s, opacity 0.2s;
}

@media (hover: none) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ─── SCROLL PROGRESS ───────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--brand-grad);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── LOADING SCREEN ────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-v-mark {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: loaderPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  filter: drop-shadow(0 0 20px var(--cyan));
}

@keyframes loaderPop {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.loader-text {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-letter {
  opacity: 0;
  animation: letterFade 0.3s ease forwards;
  animation-delay: calc(0.6s + var(--i) * 0.08s);
}

@keyframes letterFade {
  to {
    opacity: 1;
  }
}

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 20px auto 0;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: var(--brand-grad);
  width: 0%;
  border-radius: 2px;
  transition: width 1s ease;
}

/* ─── TYPOGRAPHY HELPERS ────────────────── */
.tag-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: inline-block;
}

.section-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 56px;
}

.section-center {
  text-align: center;
}

.section-center .section-sub {
  margin-inline: auto;
}

/* ─── GRADIENT TEXT ─────────────────────── */
.gradient-text,
.h1-gradient,
.closing-gradient,
.nav-brand-text,
.footer-brand-name {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SAAS DESIGN SYSTEM UTILITIES ──────── */
/* Hero title — Inter bold tight tracking */
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: -2.16px;
  line-height: 1.2;
  color: #fff;
}

/* Hero subtext */
.hero-subtext {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Glow utility */
.glow {
  box-shadow: var(--glow-strong);
}

.glow-subtle {
  box-shadow: var(--glow);
}

/* Secondary ghost button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.3);
}

/* ─── GLASS CARD ────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 198, 255, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 198, 255, 0.06);
}

/* ─── BUTTONS ───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 198, 255, 0.25);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 198, 255, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--cyan);
  text-decoration: none;
  background: transparent;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(0, 198, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.15);
}

.btn-plan {
  display: inline-block;
  width: 100%;
  text-align: center;
  color: var(--cyan);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(0, 198, 255, 0.4);
  text-decoration: none;
  background: transparent;
  transition: all 0.25s ease;
  margin-top: auto;
  letter-spacing: 0.01em;
}

.btn-plan:hover {
  background: rgba(0, 198, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 198, 255, 0.2);
}

.full-width {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ─── SECTION SEPARATOR ─────────────────── */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
  margin: 0;
}

/* ═══════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 212, 255, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-v-mark {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--cyan));
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 6px var(--cyan));
  }

  50% {
    filter: drop-shadow(0 0 18px var(--cyan)) drop-shadow(0 0 30px rgba(0, 102, 255, 0.5));
  }
}

.nav-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-text-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand-grad);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #fff;
}

.btn-nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-nav-cta:hover {
  background: var(--brand-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 198, 255, 0.3);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: none;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-link:hover {
  color: var(--cyan);
}

.mobile-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--brand-grad);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 114, 255, 0.4);
  transition: opacity 0.3s, transform 0.2s;
}

.mobile-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 32, 64, 0.6) 1px, transparent 1px);
  background-size: 32px 32px;
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-cyan {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.08);
  top: -10%;
  right: -5%;
}

.orb-blue {
  width: 500px;
  height: 500px;
  background: rgba(0, 102, 255, 0.06);
  bottom: -15%;
  left: -8%;
}

.particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
  animation: particleDrift var(--dur) linear infinite;
  animation-delay: var(--delay);
  left: var(--x);
  bottom: -10px;
  box-shadow: 0 0 6px var(--cyan);
}

@keyframes particleDrift {
  from {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-40vh) translateX(var(--drift));
    opacity: 0.3;
  }

  to {
    transform: translateY(-100vh) translateX(calc(var(--drift) * 2));
    opacity: 0;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -2.16px;
  display: flex;
  flex-direction: column;
}

.h1-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroLineIn 0.7s ease forwards;
  animation-delay: var(--delay);
}

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Right — Dashboard */
.hero-right {
  position: relative;
}

.dashboard-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--glow), 0 40px 80px rgba(0, 0, 0, 0.5);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dot.green {
  background: #22c55e;
}

.dash-dot.yellow {
  background: #eab308;
}

.dash-dot.red {
  background: #ef4444;
}

.dash-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 4px;
}

.dash-progress-wrap {
  margin-bottom: 20px;
}

.dash-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-family: 'Space Mono', monospace;
}

.dash-progress-bar {
  background: var(--border);
  border-radius: 999px;
  height: 8px;
  position: relative;
  overflow: visible;
}

.dash-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--brand-grad);
  width: 0%;
  transition: width 1.5s ease;
  box-shadow: 0 0 10px var(--cyan);
}

.dash-progress-text {
  position: absolute;
  right: 0;
  top: -22px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--cyan);
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.metric-card {
  background: rgba(15, 32, 64, 0.4);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
}

.metric-icon {
  font-size: 20px;
  margin-bottom: 6px;
}

.metric-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--cyan);
}

.metric-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
}

.dash-chart {
  margin-bottom: 16px;
}

.chart-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.line-chart {
  width: 100%;
  height: 60px;
}

.status-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  font-family: 'Space Mono', monospace;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulseStatus 2s ease-in-out infinite;
}

.pulse-green {
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.pulse-cyan {
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

@keyframes pulseStatus {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-text {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.scroll-chevron {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chev {
  width: 14px;
  height: 8px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  margin-top: -4px;
  animation: chevBounce 1.5s ease-in-out infinite;
}

.chev:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 0.5;
}

@keyframes chevBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translateY(4px);
    opacity: 0.6;
  }
}

/* ═══════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════ */
.about {
  position: relative;
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
  overflow: hidden;
  z-index: 1;
}

.about-bg-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 102, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
}

.brand-statement {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.brand-story {
  font-size: 15px;
  color: #8aa0bb;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-story strong {
  color: #fff;
}

.specialize-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-card {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 16px;
}

.approach-text {
  font-size: 15px;
  color: #8aa0bb;
  line-height: 1.8;
}

.approach-text strong {
  color: #fff;
}

.core-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  padding: 20px 16px;
  text-align: center;
}

.value-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.value-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.value-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.vision-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vision-text strong {
  color: #fff;
}

.closing-gradient {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

/* Network Visual */
.about-right {
  position: sticky;
  top: 100px;
}

.network-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.15);
}

#networkCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.v-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.35) 0%, rgba(0, 102, 255, 0.15) 55%, transparent 75%);
  z-index: 2;
}

.v-watermark img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: scale(1.38);
  filter: drop-shadow(0 0 35px rgba(0, 212, 255, 0.85)) drop-shadow(0 0 70px rgba(0, 102, 255, 0.65));
  animation: logoFloat 4s ease-in-out infinite alternate;
  user-select: none;
  will-change: transform, filter;
}

@keyframes logoFloat {
  0% {
    transform: scale(1.38) translateY(0px);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 102, 255, 0.6));
  }
  50% {
    transform: scale(1.44) translateY(-18px);
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 1)) drop-shadow(0 0 95px rgba(0, 102, 255, 0.85));
  }
  100% {
    transform: scale(1.38) translateY(0px);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 60px rgba(0, 102, 255, 0.6));
  }
}

/* ═══════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════ */
.services {
  background: var(--bg-primary);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.service-card {
  padding: 36px 32px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-img-wrap {
  width: calc(100% + 64px);
  margin: -36px -32px 0;
  height: 200px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.service-card:hover .svc-img {
  transform: scale(1.07);
}

.svc-icon {
  font-size: 44px;
  margin-bottom: 4px;
  display: inline-block;
  transition: transform 0.3s;
}

.service-card:hover .svc-icon {
  transform: scale(1.1);
}

.svc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-top: 20px;
}

.svc-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.svc-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s, color 0.25s;
}

.svc-link:hover {
  gap: 10px;
  color: #fff;
}

/* ═══════════════════════════════════
   PORTFOLIO SECTION
   ═══════════════════════════════════ */
.portfolio {
  background: var(--bg-primary);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.portfolio-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 48px;
}

.portfolio-filter-btn {
  background: rgba(15, 30, 55, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.15);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.portfolio-filter-btn:hover {
  border-color: rgba(0, 212, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.portfolio-filter-btn.active {
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.12);
  background: rgba(8, 18, 36, 0.65);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.35);
}

.portfolio-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 20, 0.9) 0%, rgba(5, 10, 20, 0.3) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  align-self: flex-start;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.portfolio-link-btn {
  align-self: flex-end;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #00d4ff, #0066ff);
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  transition: transform 0.3s ease;
}

.portfolio-link-btn:hover {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 12px;
}

.portfolio-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.portfolio-result {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: #00d4ff;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-filters {
    gap: 8px;
  }
  .portfolio-filter-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/* ═══════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════ */
.process {
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-line-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  width: 0%;
  border-radius: 2px;
  transition: width 1.2s ease;
  box-shadow: 0 0 10px var(--cyan);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.step-bg-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 64px;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.step-node {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.5s ease;
}

.step-node.active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan), 0 0 32px rgba(0, 212, 255, 0.4);
}

.step-node-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ═══════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════ */
.pricing {
  background: var(--bg-primary);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 0;
}

.toggle-label {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--text-secondary);
}

.toggle-btn {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 999px;
  border: none;
  cursor: none;
  position: relative;
  transition: background 0.3s;
}

.toggle-btn.active {
  background: var(--blue);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-btn.active .toggle-knob {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.featured-plan {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

.featured-plan:hover {
  transform: translateY(-14px);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-grad);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.plan-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
}

.plan-features li::before {
  content: none;
}

/* ═══════════════════════════════════
   QUOTES SECTION
   ═══════════════════════════════════ */
.quotes-section {
  position: relative;
  background: var(--bg-primary);
  padding: var(--section-pad) 0 100px;
  overflow: hidden;
  z-index: 1;
}

.quotes-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.quotes-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.quotes-orb-left {
  width: 500px;
  height: 500px;
  background: rgba(0, 102, 255, 0.07);
  top: -100px;
  left: -150px;
}

.quotes-orb-right {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.06);
  bottom: -80px;
  right: -100px;
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  background: rgba(0, 212, 255, 0.03);
  padding: 14px 0;
  margin-bottom: 72px;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.marquee-diamond {
  color: var(--cyan);
  font-size: 8px;
  opacity: 0.7;
}

/* Quote Cards */
.quotes-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.quote-card {
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.quote-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.quote-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 212, 255, 0.1);
}

.quote-card-center {
  transform: translateY(-12px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.12), 0 30px 80px rgba(0, 0, 0, 0.5);
  background: rgba(10, 22, 40, 0.9);
}

.quote-card-center::before {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 102, 255, 0.04) 100%);
}

.quote-card-center:hover {
  transform: translateY(-18px);
}

.quote-icon {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 72px;
  line-height: 0.6;
  font-weight: 900;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  flex-shrink: 0;
  user-select: none;
}

.quote-card-center .quote-icon {
  opacity: 0.8;
}

.quote-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  flex: 1;
}

.quote-card-center .quote-text {
  font-size: 17px;
  color: #c0cfe0;
}

.quote-highlight {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 17px;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-card-center .quote-highlight {
  font-size: 18px;
}

.quote-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.4;
}

.quote-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  opacity: 0.7;
  white-space: nowrap;
}

.quote-card.reveal-up {
  transition-delay: calc(var(--i) * 0.15s);
}

/* Quotes CTA Banner */
.quotes-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.quotes-cta-inner {
  position: relative;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  overflow: hidden;
}

.quotes-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
  pointer-events: none;
}

.quotes-cta-glow {
  position: absolute;
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.quotes-cta-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  position: relative;
  z-index: 1;
}

.quotes-cta-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.quotes-cta-btn {
  position: relative;
  z-index: 1;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 12px;
  margin-top: 4px;
  box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

.quotes-cta-btn:hover {
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.5);
}

/* ═══════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════ */
.contact {
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
  position: relative;
  z-index: 1;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.contact-v-bg {
  position: absolute;
  bottom: -40px;
  left: -60px;
  pointer-events: none;
  z-index: 0;
}

.contact-v-bg img {
  width: 400px;
  height: auto;
  opacity: 0.04;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
}

.info-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.2);
}

/* Contact Form */
.contact-form {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 16px 16px 8px;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  padding-top: 16px;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s ease;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
  top: 5px;
  font-size: 10px;
  color: var(--cyan);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* for select */
.form-select:valid+.form-label,
.form-select:focus+.form-label {
  top: 5px;
  font-size: 10px;
  color: var(--cyan);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

select.form-input option {
  background: #0a1628;
  color: var(--text-primary);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px;
}

.form-success.visible {
  display: flex;
}

.success-checkmark svg {
  width: 64px;
  height: 64px;
}

.checkmark-circle {
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 0.6s ease forwards;
}

.checkmark-check {
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s 0.6s ease forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.form-success p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-v-mark {
  height: 36px;
  object-fit: contain;
  animation: glowPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px var(--cyan));
}

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-contact-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-bottom {
  position: relative;
  z-index: 20;
  padding: 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-primary);
}

.footer-bottom-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ═══════════════════════════════════
   AI CHATBOT
   ═══════════════════════════════════ */
.chatbot-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none; /* WRAPPER ALLOWS ALL TOUCHES TO PASS THROUGH TO PAGE CONTENT */
}

.chat-launcher {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand-grad);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
  animation: launcherPulse 2s ease-in-out infinite;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s;
  pointer-events: auto; /* LAUNCHER BUTTON RECEIVES TOUCHES */
}

.chat-launcher:hover {
  transform: scale(1.08);
}

.chat-launcher-icon {
  font-size: 24px;
  line-height: 1;
}

@keyframes launcherPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4), 0 0 0 0 rgba(0, 212, 255, 0.3);
  }

  50% {
    box-shadow: 0 4px 30px rgba(0, 102, 255, 0.6), 0 0 0 10px rgba(0, 212, 255, 0);
  }
}

.chat-tooltip {
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.chat-tooltip.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Chat Panel */
.chat-panel {
  width: 340px;
  max-height: 480px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.08);
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  transform-origin: bottom right;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none; /* CLOSED PANEL DOES NOT INTERCEPT TOUCHES */
}

.chat-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* OPEN PANEL RECEIVES TOUCHES */
}

.chat-header {
  background: var(--brand-grad);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(10);
}

.chat-header-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.chat-header-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.chat-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.msg {
  max-width: 85%;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 14px;
  padding: 10px 14px;
}

.msg-bot {
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-user {
  background: var(--brand-grad);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
    background: var(--cyan);
  }
}

.chat-quick-replies {
  padding: 0 12px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-reply {
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.quick-reply:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 198, 255, 0.06);
  box-shadow: 0 0 12px rgba(0, 198, 255, 0.15);
}

.chat-input-wrap {
  padding: 12px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(15, 32, 64, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.chat-input:focus {
  border-color: rgba(0, 198, 255, 0.5);
  box-shadow: 0 0 12px rgba(0, 198, 255, 0.1);
}

.chat-input::placeholder {
  color: var(--text-muted);
}

.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-grad);
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.chat-send:hover {
  transform: scale(1.1);
}

.chat-send svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* ═══════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-fade {
  transform: scale(0.96);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.service-card.reveal-up {
  transition-delay: calc(var(--i) * 0.1s);
}

.step-card.reveal-up {
  transition-delay: calc(var(--i) * 0.15s);
}

.pricing-card.reveal-up {
  transition-delay: calc(var(--i) * 0.12s);
}

/* ═══════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-fade {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    max-width: 500px;
    margin: 0 auto;
  }

  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .timeline-line {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .featured-plan {
    transform: none;
  }

  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .quote-card-center {
    transform: none;
  }

  .quotes-cta-inner {
    padding: 40px 28px;
  }

  .contact-cols {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    cursor: pointer;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 72px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .core-values {
    grid-template-columns: 1fr;
  }

  .dash-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .metric-card {
    padding: 10px 6px;
  }

  .metric-val {
    font-size: 13px;
  }

  .metric-label {
    font-size: 9px;
  }

  .quotes-cta-inner {
    padding: 32px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 48px 20px 32px;
  }

  .footer-bottom {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px 24px;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .hero-container {
    padding: 100px 20px 60px;
  }

  .section-h2 {
    font-size: clamp(26px, 7vw, 40px);
    letter-spacing: -0.5px;
  }

  .dashboard-card {
    padding: 20px;
  }

  .quotes-grid {
    gap: 16px;
  }

  .quote-card {
    padding: 24px 20px;
  }

  .marquee-item {
    padding: 0 20px;
    font-size: 11px;
  }

  .step-card {
    padding-top: 60px;
  }

  .step-bg-num {
    font-size: 48px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .chat-panel {
    width: calc(100vw - 32px);
    max-height: 65vh;
  }
}

/* ─── VERY SMALL SCREENS (400px and below) ─── */
@media (max-width: 400px) {
  .hero-h1 {
    font-size: 30px;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 14px;
    padding: 11px 20px;
  }

  .dashboard-card {
    padding: 16px;
  }

  .section-h2 {
    font-size: 24px;
  }

  .contact-form {
    padding: 20px 14px;
  }

  .chat-panel {
    width: calc(100vw - 16px);
    max-width: 340px;
  }

  .chatbot-wrapper {
    right: 12px;
  }
}

/* ─── TOUCH / MOBILE CURSOR FIX ─────────────── */
/* Remove cursor:none on touch screens */
@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  .hamburger,
  .mobile-close,
  .chat-launcher,
  .chat-close,
  .chat-send,
  .toggle-btn,
  .quick-reply,
  .btn-primary,
  .btn-ghost,
  .btn-nav-cta,
  .btn-plan,
  .mobile-cta,
  button,
  a {
    cursor: pointer;
  }
}

/* ─── CHATBOT MOBILE OPTIMISATION ───────────── */
@media (max-width: 480px) {
  .chatbot-wrapper {
    bottom: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .chat-launcher {
    width: 54px;
    height: 54px;
  }

  .chat-launcher-icon {
    font-size: 22px;
  }

  .chat-tooltip {
    font-size: 12px;
    padding: 6px 10px;
  }

  .quick-reply {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ─── IOS SAFE AREA INSETS ───────────────────── */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

/* ─── PREVENT HORIZONTAL SCROLL ─────────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ═══════════════════════════════════
   REDESIGN & CRO OVERHAUL STYLES
   ═══════════════════════════════════ */

/* ─── HERO TRUST PILLS ───────────────────── */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 24px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.pill-icon {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

/* ─── DASHBOARD METRIC SVG ───────────────── */
.metric-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 198, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.m-svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

/* ─── ABOUT TRUST PILLARS ────────────────── */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  width: 100%;
  text-align: left;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateX(4px);
  border-color: rgba(0, 198, 255, 0.3);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.pillar-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── AGENCY STATS BAR ───────────────────── */
.agency-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  width: 100%;
  text-align: center;
}

.astat-item {
  display: flex;
  flex-direction: column;
}

.astat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  transition: transform 0.3s ease;
}

.astat-num.counted {
  animation: numPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes numPop {
  0% { transform: scale(0.9); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.astat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── SERVICE FEATURE LIST ───────────────── */
.svc-feature-list {
  list-style: none;
  margin: 16px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-feature-list li {
  font-size: 13px;
  color: #cbd5e0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ─── PRICING SECTION ────────────────────── */
.pricing {
  padding: var(--section-pad) 0;
  position: relative;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
}

.pricing-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius-card);
}

.pricing-featured {
  border-color: var(--cyan);
  box-shadow: 0 0 50px rgba(0, 198, 255, 0.15);
  transform: translateY(-8px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 198, 255, 0.4);
  white-space: nowrap;
}

.pricing-tier-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}

.pricing-tier-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
}

.price-val {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.price-period {
  font-size: 13px;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── TESTIMONIALS SECTION ───────────────── */
.testimonials {
  padding: var(--section-pad) 0;
  position: relative;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.google-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 40px;
}

.g-rating-text {
  font-size: 13px;
  color: #cbd5e0;
  text-align: left;
}

.g-rating-text .stars {
  color: #ffb800;
  letter-spacing: 2px;
  font-size: 15px;
  display: block;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-stars {
  color: #ffb800;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 198, 255, 0.3);
}

.testi-meta {
  display: flex;
  flex-direction: column;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.testi-role {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ─── CONTACT INSTANT WHATSAPP BOX ───────── */
.instant-wa-box {
  margin-top: 28px;
  padding: 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 14px;
}

.wa-box-title {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.btn-wa-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-wa-direct:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.form-guarantee {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 12px;
}

/* ─── FLOATING WHATSAPP BUTTON ────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ─── RESPONSIVE BREAKPOINTS FOR NEW SECTIONS ─ */
@media (max-width: 1024px) {
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid,
  .testimonials-grid,
  .trust-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .pillar-card {
    width: 100%;
    padding: 18px 20px;
  }

  .agency-stats-bar {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
    padding-top: 24px;
    text-align: center;
  }

  .astat-num {
    font-size: 24px !important;
  }

  .astat-label {
    font-size: 12px !important;
    line-height: 1.35;
    font-weight: 600;
  }

  .whatsapp-float {
    bottom: 80px;
    left: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ═══════════════════════════════════
   BUTTER-SMOOTH LENIS & GPU RENDER
   ═══════════════════════════════════ */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.glass-card,
.service-card,
.portfolio-card,
.pricing-card,
.testimonial-card,
.pillar-card,
.step-card,
.btn-primary,
.btn-ghost,
.btn-plan,
.btn-nav-cta {
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
  will-change: transform, opacity;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════
   LEGAL PAGES (PRIVACY & TERMS)
   ═══════════════════════════════════ */
.legal-hero {
  position: relative;
  padding: 160px 24px 60px;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(31, 111, 235, 0.15) 0%, rgba(0, 3, 25, 0) 70%);
  border-bottom: 1px solid var(--border);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 198, 255, 0.08);
  border: 1px solid rgba(0, 198, 255, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.legal-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.legal-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.legal-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 24px 18px;
  }
}

.legal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand-grad);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-text {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e0;
  margin-bottom: 16px;
}

.legal-list {
  margin: 16px 0 20px 24px;
  color: #cbd5e0;
}

.legal-list li {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-callout {
  background: rgba(31, 111, 235, 0.08);
  border-left: 4px solid var(--cyan);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.7;
  color: #e2e8f0;
}

.legal-back-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.legal-back-nav:hover {
  color: #fff;
  transform: translateX(-4px);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 30;
}

.footer-bottom-link {
  color: var(--cyan) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* Touch target standard for mobile */
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 198, 255, 0.25);
  touch-action: manipulation;
}

.footer-bottom-link:hover,
.footer-bottom-link:focus-visible,
.footer-bottom-link:active {
  color: #ffffff !important;
  background: rgba(0, 198, 255, 0.12);
  text-decoration: underline;
}

.footer-link-sep {
  color: var(--text-muted);
  user-select: none;
  font-size: 12px;
}

/* ═══════════════════════════════════
   PERFORMANCE, ACCESSIBILITY & UX
   ═══════════════════════════════════ */

/* ─── ACCESSIBILITY FOCUS RING ────────────── */
:focus-visible {
  outline: 2px solid var(--cyan) !important;
  outline-offset: 4px !important;
}

/* ─── FORM INVALID STATE ──────────────────── */
.form-input.invalid {
  border-color: #ff4d4d !important;
  background: rgba(255, 77, 77, 0.08) !important;
}

.form-error-msg {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

/* ─── BACK TO TOP BUTTON ──────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(8, 16, 40, 0.85);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* DOES NOT BLOCK PAGE TOUCHES WHEN HIDDEN */
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.2);
  backdrop-filter: blur(12px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* RECEIVES TOUCHES ONLY WHEN VISIBLE */
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 198, 255, 0.4);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ─── PRIVACY / COOKIE BANNER ─────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 32px);
  max-width: 580px;
  background: rgba(8, 16, 40, 0.92);
  border: 1px solid rgba(0, 198, 255, 0.25);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 99999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 198, 255, 0.15);
  backdrop-filter: blur(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e0;
}

.cookie-text a {
  color: var(--cyan);
  text-decoration: underline;
}

.btn-cookie-accept {
  background: var(--brand-grad);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    bottom: 16px;
  }
}

