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

:root {
  /* New Blue Palette */
  --bg-deep: #000521;
  --bg-darker: #020C47;
  --bg-dark: #011F65;
  --bg-card: rgba(2, 12, 71, 0.55);
  --bg-card-hover: rgba(1, 31, 101, 0.7);
  --primary: #2078CF;
  --primary-rgb: 32, 120, 207;
  --primary-light: #0E4EB2;
  --primary-light-rgb: 14, 78, 178;
  --accent: #4FC3F7; /* Bright cyan for contrast on blue */
  --accent-rgb: 79, 195, 247;
  --accent-warm: #22c55e;
  --accent-hot: #14b8a6;
  --accent-gold: #f5c542;
  --text-primary: #ffffff;
  --text-secondary: #8eafd4;
  --text-muted: #4a6d96;

  /* Borders */
  --border-light: rgba(32, 120, 207, 0.12);
  --border-glow: rgba(32, 120, 207, 0.3);

  /* Shadows & Glows */
  --glow-blue: 0 0 30px rgba(32, 120, 207, 0.2);
  --glow-cyan: 0 0 30px rgba(79, 195, 247, 0.15);
  --shadow-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.8);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

html {
  scroll-padding-top: 90px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot), var(--accent-gold));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  z-index: 300;
  box-shadow: 0 0 18px rgba(79, 195, 247, 0.55);
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0;
}

.impact-word {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 35%, var(--accent-hot) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 32px rgba(79, 195, 247, 0.22);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(32, 120, 207, 0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(32, 120, 207, 0.6); }

/* ==========================================
   INTERACTIVE MOUSE-TRACKING BACKGROUND GLOW
   ========================================== */
.bg-glow-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 120, 207, 0.25) 0%, rgba(32, 120, 207, 0.05) 40%, transparent 70%);
  filter: blur(80px);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.bg-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 78, 178, 0.2) 0%, rgba(14, 78, 178, 0.04) 40%, transparent 70%);
  filter: blur(100px);
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.bg-glow-3 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.12) 0%, transparent 60%);
  filter: blur(90px);
  transition: transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  animation: float-slow 12s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

/* ==========================================
   GLASSMORPHISM & UTILITIES
   ========================================== */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass:hover {
  border-color: rgba(32, 120, 207, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-blue), var(--shadow-lg);
}

.glass-accent:hover {
  border-color: rgba(79, 195, 247, 0.3);
  box-shadow: var(--glow-cyan), var(--shadow-lg);
}

/* CTA Buttons */
.glow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.glow-btn:hover::before {
  opacity: 0.25;
}

.glow-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(32, 120, 207, 0.4);
}

.glow-btn-primary::before {
  background: linear-gradient(135deg, #2990e8 0%, #1a66c7 100%);
}

.glow-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(32, 120, 207, 0.6);
}

.glow-btn-secondary {
  background: rgba(32, 120, 207, 0.08);
  color: #fff;
  border: 1px solid rgba(32, 120, 207, 0.25);
}

.glow-btn-secondary::before {
  background: rgba(32, 120, 207, 0.15);
}

.glow-btn-secondary:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(32, 120, 207, 0.2);
}

/* Text Gradients */
.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 55%, var(--accent-gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-glow {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent) 60%, var(--accent-hot) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==========================================
   NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 24px;
  transition: all var(--transition-normal);
}

header.scrolled {
  background: rgba(0, 5, 33, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 24px;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo span {
  color: var(--primary);
  font-size: 2rem;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.nav-link.active::after { width: 100%; background: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(32, 120, 207, 0.25);
  background: rgba(32, 120, 207, 0.1);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.3;
}

.hero-tag strong { font-weight: 700; }

.hero-tag .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: 2.55rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  text-wrap: balance;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-subtitle small {
  display: block;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-subtitle small em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(32, 120, 207, 0.1);
  border: 1px solid rgba(32, 120, 207, 0.2);
  border-radius: 12px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-highlight i {
  color: var(--accent);
  font-size: 1.2rem;
}

.hero-highlight .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}

.hero-highlight .label {
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

/* Hero Visual (right side) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-group {
  position: relative;
  display: inline-block;
  width: min(100%, 420px);
}

.hero-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(32, 120, 207, 0.2);
  box-shadow: 0 20px 60px rgba(0, 5, 33, 0.8), 0 0 40px rgba(32, 120, 207, 0.15);
  --parallax-y: 400px;
  transform: translateY(var(--parallax-y)) rotate(2deg);
  transition: transform var(--transition-normal);
  animation: hero-card-float 7s ease-in-out infinite;
}

.hero-video-card:hover {
  transform: translateY(var(--parallax-y)) rotate(0deg) scale(1.02);
  animation: none;
}

.hero-video-card video,
.hero-video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 5, 33, 0.95) 0%, rgba(0, 5, 33, 0.15) 50%, rgba(0, 5, 33, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.hero-video-badge {
  align-self: flex-start;
  background: rgba(32, 120, 207, 0.9);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  box-shadow: 0 0 15px rgba(32, 120, 207, 0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-video-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hero-video-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Floating Badges */
.hero-badge-floating {
  position: absolute;
  background: rgba(2, 12, 71, 0.9);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg), 0 0 20px rgba(32, 120, 207, 0.12);
  z-index: 5;
  animation: float-badge 4s ease-in-out infinite;
  white-space: nowrap;
}

.hero-badge-left {
  bottom: 22px;
  left: -28px;
  animation-delay: 0s;
}

.hero-badge-right {
  top: 60px;
  right: -24px;
  border-color: rgba(79, 195, 247, 0.2);
  animation-delay: 2s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes hero-card-float {
  0%, 100% { transform: translateY(var(--parallax-y, 0px)) rotate(2deg); }
  50% { transform: translateY(calc(var(--parallax-y, 0px) - 10px)) rotate(1deg); }
}

.badge-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(32, 120, 207, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.hero-badge-right .badge-icon {
  background: rgba(79, 195, 247, 0.12);
  color: var(--accent);
}

.badge-text span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.badge-text p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==========================================
   METRICS SECTION
   ========================================== */
.metrics-sec {
  background: linear-gradient(180deg, transparent 0%, rgba(2, 12, 71, 0.4) 50%, transparent 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.metrics-sec .section-padding {
  padding: 0px 0px 0px;
}

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

.metric-card {
  padding: 36px 24px;
  text-align: center;
  position: relative;
}

.metric-card::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(32, 120, 207, 0.2), transparent);
}

.metric-card:last-child::after { display: none; }

.metric-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */
.portfolio-sec {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-kicker {
  font-size: 0.78rem;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.portfolio-grid {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 8px 0 18px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.portfolio-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.portfolio-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.portfolio-item {
  flex: none;
  width: 280px;
}

.portfolio-item {
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  background: #000;
}

.portfolio-item.hidden { display: none; }

.portfolio-item:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 4px;
}

.portfolio-item:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--glow-blue), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  background: #000;
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.06);
}

.portfolio-item.is-previewing .portfolio-overlay {
  background: linear-gradient(to top, rgba(0, 5, 33, 0.92) 0%, rgba(0, 5, 33, 0.28) 55%, rgba(0, 5, 33, 0.08) 100%);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 5, 33, 0.97) 0%, rgba(0, 5, 33, 0.35) 55%, rgba(0, 5, 33, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0.9;
  transition: opacity var(--transition-normal);
  transform: translateZ(30px);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-hot));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  box-shadow: 0 4px 20px rgba(32, 120, 207, 0.5);
  transform: scale(0.85);
  opacity: 0;
  transition: all var(--transition-normal);
  transform: translateZ(45px) scale(0.85);
}

.portfolio-item:hover .portfolio-play-btn {
  transform: translateZ(45px) scale(1);
  opacity: 1;
}

.portfolio-item:hover .portfolio-play-btn:hover {
  transform: translateZ(45px) scale(1.12);
  box-shadow: 0 8px 30px rgba(32, 120, 207, 0.7);
}

.portfolio-tag {
  align-self: flex-start;
  background: rgba(32, 120, 207, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(32, 120, 207, 0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0;
}

.portfolio-details h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.portfolio-details p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 16px;
}

.portfolio-details span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================
   VIDEO MODAL
   ========================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 33, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 24px;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(32, 120, 207, 0.2);
  box-shadow: 0 0 60px rgba(32, 120, 207, 0.3);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-content.widescreen {
  max-width: 900px;
  aspect-ratio: 16/9;
}

.modal.active .modal-content { transform: scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(2, 12, 71, 0.8);
  border: 1px solid var(--border-light);
  color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.modal-video-container {
  width: 100%; height: 100%;
}

.modal-video-container iframe,
.modal-video-container video {
  width: 100%; height: 100%;
  border: none;
  object-fit: cover;
}

/* ==========================================
   PROOF / ADS MANAGER SECTION
   ========================================== */
.proof-sec {
  background: linear-gradient(180deg, transparent 0%, rgba(2, 12, 71, 0.25) 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.proof-content .hero-tag {
  background: rgba(32, 120, 207, 0.08);
  border-color: rgba(32, 120, 207, 0.2);
  color: var(--accent);
}

.proof-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.proof-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.proof-content p strong {
  color: #fff;
}

/* Mock Ads Manager Dashboard */
.ads-dashboard {
  background: rgba(2, 12, 71, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(32, 120, 207, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.ads-dashboard:hover {
  border-color: rgba(79, 195, 247, 0.28);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(32, 120, 207, 0.18);
}

.dashboard-header {
  background: rgba(1, 31, 101, 0.5);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
}

.dashboard-title span {
  width: 8px; height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.dashboard-meta-badge {
  background: rgba(32, 120, 207, 0.15);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid rgba(32, 120, 207, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-body { padding: 24px; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-box {
  background: rgba(0, 5, 33, 0.4);
  border: 1px solid var(--border-light);
  padding: 18px;
  border-radius: 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.stat-box:hover {
  border-color: rgba(32, 120, 207, 0.3);
  box-shadow: 0 0 15px rgba(32, 120, 207, 0.1);
}

.stat-box-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.stat-box-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-box-change {
  font-size: 0.75rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-weight: 600;
}

.stat-box-change.down { color: var(--accent-gold); }

/* Chart */
.chart-container {
  background: rgba(0, 5, 33, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.chart-legend {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-item span {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.mock-chart {
  height: 120px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  border-bottom: 1px solid rgba(32, 120, 207, 0.1);
  padding-bottom: 8px;
}

.chart-bar-wrap {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.chart-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, rgba(32, 120, 207, 0.15), var(--primary));
  transition: height 1s ease;
  transform-origin: bottom center;
  animation: chart-grow 1.1s ease both;
}

.chart-bar-wrap:nth-child(2) .chart-bar { animation-delay: 0.12s; }
.chart-bar-wrap:nth-child(3) .chart-bar { animation-delay: 0.24s; }
.chart-bar-wrap:nth-child(4) .chart-bar { animation-delay: 0.36s; }

.chart-bar-wrap:hover .chart-bar {
  filter: brightness(1.3);
}

.chart-bar-tooltip {
  position: absolute;
  bottom: 105%;
  background: var(--bg-darker);
  border: 1px solid var(--border-light);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.chart-bar-wrap:hover .chart-bar-tooltip { opacity: 1; }

.chart-label {
  font-size: 0.63rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.dashboard-footer {
  background: rgba(1, 31, 101, 0.3);
  padding: 12px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================
   WHY CHOOSE ME
   ========================================== */
.why-sec { position: relative; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  padding: 44px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(32, 120, 207, 0.1);
  border: 1px solid rgba(32, 120, 207, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 28px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
  background: rgba(32, 120, 207, 0.2);
  box-shadow: 0 0 20px rgba(32, 120, 207, 0.2);
}

.why-card:nth-child(2) .why-icon {
  background: rgba(79, 195, 247, 0.1);
  border-color: rgba(79, 195, 247, 0.2);
  color: var(--accent);
}

.why-card:nth-child(3) .why-icon {
  background: rgba(14, 78, 178, 0.1);
  border-color: rgba(14, 78, 178, 0.2);
  color: var(--primary-light);
}

.why-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================
   PROCESS TIMELINE
   ========================================== */
.process-sec {
  background: linear-gradient(180deg, rgba(2, 12, 71, 0.2) 0%, transparent 100%);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 64px auto 0;
  padding-left: 36px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 0;
  height: 100%; width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent-hot), var(--accent), rgba(32, 120, 207, 0.1));
}

.process-step {
  position: relative;
  margin-bottom: 44px;
}

.process-step:last-child { margin-bottom: 0; }

.process-dot {
  position: absolute;
  left: -36px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 3px solid var(--primary);
  z-index: 2;
  transition: all var(--transition-fast);
}

.process-step:hover .process-dot {
  transform: scale(1.3);
  background: var(--primary);
  box-shadow: 0 0 12px rgba(32, 120, 207, 0.5);
}

.process-step:nth-child(even) .process-dot { border-color: var(--accent); }
.process-step:nth-child(even):hover .process-dot { background: var(--accent); box-shadow: 0 0 12px rgba(79, 195, 247, 0.5); }

.process-step-content { padding: 24px; }

.process-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  background: rgba(32, 120, 207, 0.1);
  padding: 3px 12px;
  border-radius: 6px;
}

.process-step:nth-child(even) .process-num {
  color: var(--accent);
  background: rgba(79, 195, 247, 0.1);
}

.process-step h3 { font-size: 1.25rem; font-weight: 700; }
.process-step p { color: var(--text-secondary); font-size: 0.95rem; }

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-sec { position: relative; }

.contact-card-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 52px;
  position: relative;
  overflow: hidden;
}

.contact-card-container::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(32, 120, 207, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}

.contact-checklist li i { color: var(--accent); font-size: 1rem; }

.contact-social-icons {
  display: flex;
  gap: 14px;
}

.social-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(32, 120, 207, 0.06);
  border: 1px solid rgba(32, 120, 207, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-circle:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.35);
}

.social-circle.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0;
}

.form-input {
  background: rgba(0, 5, 33, 0.5);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(32, 120, 207, 0.15);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn { margin-top: 8px; width: 100%; }

.form-success-msg {
  display: none;
  background: rgba(32, 120, 207, 0.1);
  border: 1px solid rgba(32, 120, 207, 0.3);
  color: var(--accent);
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
  margin-top: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  border-top: 1px solid var(--border-light);
  padding: 44px 24px;
  background: rgba(0, 3, 15, 0.8);
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: #fff; }

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes chart-grow {
  from { transform: scaleY(0.12); opacity: 0.5; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .portfolio-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .portfolio-grid {
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 2.7rem; line-height: 1.18; margin-bottom: 24px; }
  .section-padding { padding: 70px 24px; }
  .hero-tag { margin-bottom: 28px; }
  .hero-subtitle { margin-bottom: 28px; }
  .hero-highlight { margin-bottom: 28px; }
  .hero-ctas { margin-bottom: 28px; }
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-tag { justify-content: center; white-space: normal; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-highlight { justify-content: center; display: inline-flex; }
  .hero-ctas { justify-content: center; }
  .hero-proof-stack { align-items: center; max-width: 100%; }
  .hero-visual { order: -1; }
  .hero-badge-left { left: 8px; bottom: -16px; }
  .hero-badge-right { right: 8px; top: 12px; }
  .metrics-container { grid-template-columns: repeat(2, 1fr); }
  .metric-card:nth-child(2)::after { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; height: 100vh;
    background: rgba(0, 5, 33, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 99;
    transition: right var(--transition-normal);
  }
  .nav-menu.open { right: 0; }
  .hamburger { display: flex; z-index: 100; }
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .section-padding { padding: 60px 16px; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .hero-tag { margin-bottom: 24px; }
  .hero h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 24px; }
  .hero-subtitle { margin-bottom: 24px; font-size: 1rem; }
  .hero-highlight { margin-bottom: 24px; }
  .hero-ctas { margin-bottom: 24px; }
  .section-header h2 { font-size: 2rem; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 380px;
    margin: 0 auto;
  }

  .contact-card-container { padding: 28px; }
  .contact-info h2 { font-size: 1.7rem; }
  .footer-container { flex-direction: column; text-align: center; }

  .dashboard-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .metrics-container { grid-template-columns: 1fr; }
  .metric-card::after { display: none; }
  .hero-badge-floating { padding: 10px 14px; }
  .badge-icon { width: 34px; height: 34px; font-size: 1rem; }
  .badge-text span { font-size: 0.9rem; }
  .hero-video-card { max-width: 280px; }
}



/* ==========================================
   PROOF STACKED CARDS
   ========================================== */

.proof-stack-wrapper {
  position: relative;
  padding: 30px 50px 70px 10px;
}

.proof-stack-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(32,120,207,0.18) 0%, transparent 70%);
  filter: blur(50px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

/* Stack container — grid trick so height = active card */
.proof-stack {
  display: grid;
  position: relative;
  z-index: 1;
  width: 90%;
}

.proof-card {
  grid-area: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1),
              opacity   0.75s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.75s ease;
  cursor: pointer;
}

/* Active — front, slight tilt left */
.proof-card.state-active {
  transform: rotate(-2deg) scale(1) translate(0px, 0px);
  z-index: 3;
  opacity: 1;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 0 50px rgba(32,120,207,0.2);
}

/* Behind 1 — peeking right */
.proof-card.state-behind-1 {
  transform: rotate(3deg) scale(0.95) translate(28px, 12px);
  z-index: 2;
  opacity: 0.6;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Behind 2 — furthest behind */
.proof-card.state-behind-2 {
  transform: rotate(7deg) scale(0.9) translate(50px, 22px);
  z-index: 1;
  opacity: 0.3;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.proof-card-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(0,5,33,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.65rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.browser-url-bar .fa-lock { color: #28c840; font-size: 0.5rem; }

.proof-card img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: contain;
}

/* Dots */
.proof-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-left: 4px;
  position: relative;
  z-index: 2;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.proof-dot.active {
  background: var(--primary);
  transform: scale(1.4);
  box-shadow: 0 0 8px var(--primary);
}

/* Floating Badges */
.ads-proof-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(2,8,50,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 5;
}

.badge-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 0.8rem;
}

.ads-proof-badge span {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1;
}

.ads-proof-badge p {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin: 3px 0 0;
}

.ads-proof-badge--spend {
  top: -10px;
  right: 0px;
  animation: floatBadge 3.5s ease-in-out infinite;
}

.ads-proof-badge--hook {
  bottom: 55px;
  left: -10px;
  animation: floatBadge 3.5s ease-in-out infinite;
  animation-delay: 1.8s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.ads-proof-verified {
  position: absolute;
  bottom: 52px;
  right: 10px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(5,150,105,0.4);
}

/* ==========================================
   ✦ V2 UPGRADES — visual flow, parallax, lightbox
   ========================================== */

/* ---------- NAV CTA pill ---------- */
.nav-link.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(32, 120, 207, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(32, 120, 207, 0.55);
}
.nav-link.nav-cta i { transition: transform var(--transition-fast); }
.nav-link.nav-cta:hover i { transform: translateX(3px); }

/* ---------- Hero proof stack list ---------- */
.hero-proof-stack {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}
.hero-proof-stack li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}
.hero-proof-stack li i {
  color: var(--accent-hot);
  font-size: 0.95rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.4));
}




.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(2, 12, 71, 0.85);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 3;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

/* Risk reversal block */
.hero-risk-reversal {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(20, 184, 166, 0.05));
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 14px;
  margin-top: 6px;
  max-width: 560px;
}
.hero-risk-reversal i {
  color: var(--accent-warm);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
}
.hero-risk-reversal span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.hero-risk-reversal strong { color: #fff; }
.hero-risk-reversal em { color: var(--accent-warm); font-style: normal; font-weight: 600; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 18px 28px;
  background: rgba(2, 12, 71, 0.45);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: 200;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.83rem;
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.2px;
  transition: color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item:hover { color: var(--accent); transform: translateY(-2px); }
.trust-item i { font-size: 1rem; color: var(--accent); }
.trust-divider {
  width: 1px;
  height: 18px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, transparent, rgba(32, 120, 207, 0.4), transparent);
}

/* ---------- Services Section ---------- */
.services-sec {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 12, 71, 0.18) 50%, transparent 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(79, 195, 247, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(32, 120, 207, 0.18), rgba(79, 195, 247, 0.08));
  border: 1px solid rgba(32, 120, 207, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.service-card:hover .service-icon {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 8px 26px rgba(32, 120, 207, 0.28);
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-hot);
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  align-self: flex-start;
}

.services-bonus {
  margin: 40px auto 0;
  max-width: 700px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.08), rgba(245, 197, 66, 0.02));
  border: 1px solid rgba(245, 197, 66, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.services-bonus i {
  font-size: 2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(245, 197, 66, 0.5));
}
.services-bonus strong {
  display: block;
  color: var(--accent-gold);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.services-bonus p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* ---------- Why grid → 3 columns on desktop ---------- */
.why-grid { grid-template-columns: repeat(3, 1fr); }

.why-card {
  position: relative;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(79, 195, 247, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}
.why-card:hover::before { opacity: 1; }

/* ---------- Section header polish ---------- */
.section-header h2 .gradient-text-blue {
  filter: drop-shadow(0 0 24px rgba(79, 195, 247, 0.25));
}

/* ---------- Proof card click affordance ---------- */
.proof-card { cursor: pointer; position: relative; }
.proof-card-zoom {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(32, 120, 207, 0.18);
  color: var(--accent);
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: none;
}
.proof-card.state-active .proof-card-zoom {
  opacity: 1;
}
.proof-card.state-active:hover .proof-card-zoom {
  transform: translateY(-50%) scale(1.15);
  background: rgba(79, 195, 247, 0.3);
}
.proof-card.state-active:hover {
  transform: rotate(-2deg) scale(1.015) translate(0px, 0px);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(79, 195, 247, 0.28);
}

/* ---------- IMAGE LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 3, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 24px;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-figure {
  margin: 0;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.active .lightbox-figure { transform: scale(1); }
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(32, 120, 207, 0.25);
  border: 1px solid rgba(79, 195, 247, 0.2);
  object-fit: contain;
  background: #000;
}
.lightbox-caption {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
  max-width: 620px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(2, 12, 71, 0.85);
  border: 1px solid var(--border-light);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* ---------- FLOATING WHATSAPP CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 90;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(37, 211, 102, 0.4),
    0 0 0 0 rgba(37, 211, 102, 0.7);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  animation: floating-cta-bob 3s ease-in-out infinite;
}
.floating-cta:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
}
.floating-cta-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: floating-cta-pulse 2.4s ease-out infinite;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
}
@keyframes floating-cta-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes floating-cta-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ---------- Glow-btn shine ---------- */
.glow-btn-primary {
  position: relative;
}
.glow-btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.glow-btn-primary:hover::after { left: 130%; }

/* ---------- Hero h1 polish ---------- */
.hero h1 { line-height: 1.12; }

/* ---------- Smooth parallax helper ---------- */
[data-parallax] { will-change: transform; }

/* ---------- Section spacing rhythm ---------- */
.services-sec .section-header { margin-bottom: 48px; }
.why-sec .section-header { margin-bottom: 40px; }

/* ---------- Responsive additions ---------- */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-bar { gap: 14px; padding: 16px 20px; }
  .trust-item { font-size: 0.8rem; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-proof-stack { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
  .floating-cta { width: 54px; height: 54px; font-size: 1.5rem; bottom: 18px; right: 18px; }
  .lightbox-close { top: 14px; right: 14px; }
  .services-bonus { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-risk-reversal { padding: 12px 14px; }
  .hero-risk-reversal span { font-size: 0.85rem; }
}