@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   MADGEEK DIGITAL — Premium Redesign
   Aesthetic: Luxury Performance Agency
   Font: DM Serif Display + Syne + Inter
   Theme: Deep navy + Electric accents
   ============================================= */

:root {
  /* Brand Colors */
  --ink: #050B18;
  --navy: #0A1628;
  --navy-mid: #0F1F3A;
  --navy-light: #162844;
  --electric: #2563EB;
  --electric-bright: #3B82F6;
  --violet: #7C3AED;
  --violet-bright: #8B5CF6;
  --cyan: #06B6D4;
  --emerald: #10B981;
  --amber: #F59E0B;
  --rose: #F43F5E;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-50: #F1F5FB;
  --gray-100: #E2E8F4;
  --gray-200: #CBD5E8;
  --gray-300: #94A3BE;
  --gray-400: #64748B;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1E293B;
  --gray-800: #0F172A;

  /* Gradients */
  --grad-electric: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --grad-hero: linear-gradient(135deg, #050B18 0%, #0F1F3A 50%, #162844 100%);
  --grad-card: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  --grad-emerald: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --grad-amber: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --grad-rose: linear-gradient(135deg, #F43F5E 0%, #E11D48 100%);
  --grad-cyan: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.24);
  --shadow-electric: 0 8px 32px rgba(37, 99, 235, 0.3);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);

  /* Fonts */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-ui: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-2xl: 2rem;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-800);
}

h1 { font-size: clamp(2.5rem, 5.5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem); }
h3 { font-size: clamp(1.375rem, 2vw + 0.25rem, 1.875rem); }
h4 { font-size: clamp(1.125rem, 1.5vw, 1.375rem); }

p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.75;
  color: var(--gray-400);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--electric);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  margin-bottom: var(--space-5);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-16);
}

.section-header h2 { margin-bottom: var(--space-4); }

.section-desc {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--gray-400);
  line-height: 1.7;
}

/* ===== HIGHLIGHT TEXT ===== */
.highlight {
  background: var(--grad-electric);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8125rem 1.875rem;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-height: 48px;
}

.btn-primary {
  background: var(--grad-electric);
  color: var(--white);
  box-shadow: var(--shadow-electric);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--gray-200);
  color: var(--gray-600);
}
.btn-outline-dark:hover {
  border-color: var(--electric);
  color: var(--electric);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  min-height: 54px;
  border-radius: var(--r-lg);
}

.btn-sm {
  padding: 0.5625rem 1.25rem;
  font-size: 0.875rem;
  min-height: 38px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: all 0.3s var(--ease);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 24, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.navbar.scrolled::before {
  background: rgba(5, 11, 24, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.07);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 38px;
  width: auto;
  transition: opacity 0.2s;
}
.logo:hover img { opacity: 0.85; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--electric-bright);
  transition: width 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  min-width: 44px; min-height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
  background: var(--grad-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: clamp(6rem, 12vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* Mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(124, 58, 237, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 60% 10%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}

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

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4375rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--r-full);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--electric-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  animation: fade-up 0.7s var(--ease) forwards;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--electric-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric-bright);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px var(--electric-bright); }
  50% { box-shadow: 0 0 14px var(--electric-bright), 0 0 24px rgba(59, 130, 246, 0.4); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-6);
  animation: fade-up 0.7s var(--ease) 0.1s backwards;
}

.hero .lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto var(--space-10);
  animation: fade-up 0.7s var(--ease) 0.2s backwards;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.7s var(--ease) 0.3s backwards;
  margin-bottom: var(--space-16);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fade-up 0.7s var(--ease) 0.4s backwards;
}

.stat-item {
  text-align: center;
  padding: var(--space-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.stat-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
}
.stat-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--grad-electric);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-item .label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* Floating media icons */
.floating-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-media .float {
  position: absolute;
  width: clamp(32px, 3.5vw, 58px);
  opacity: 0;
  filter: saturate(120%) brightness(1.1);
  will-change: transform;
  animation: float-in 1s var(--ease) forwards, drift 18s ease-in-out infinite;
  border-radius: var(--r-md);
}

.floating-media .float.f1  { top: 15%; left: 5%;   animation-delay: 0.5s, 1.5s;  }
.floating-media .float.f2  { top: 25%; right: 7%;  animation-delay: 0.7s, 1.7s;  }
.floating-media .float.f3  { top: 65%; left: 4%;   animation-delay: 0.9s, 1.9s;  }
.floating-media .float.f4  { top: 70%; right: 6%;  animation-delay: 1.1s, 2.1s;  }
.floating-media .float.f5  { top: 42%; left: 10%;  animation-delay: 1.3s, 2.3s;  }
.floating-media .float.f6  { top: 48%; right: 11%; animation-delay: 1.5s, 2.5s;  }
.floating-media .float.f7  { top: 20%; left: 16%;  animation-delay: 1.7s, 2.7s;  }
.floating-media .float.f8  { top: 80%; left: 20%;  animation-delay: 1.9s, 2.9s;  }
.floating-media .float.f9  { top: 78%; right: 18%; animation-delay: 2.1s, 3.1s;  }
.floating-media .float.f10 { top: 10%; left: 28%;  animation-delay: 2.3s, 3.3s;  }
.floating-media .float.f11 { top: 10%; right: 28%; animation-delay: 2.5s, 3.5s;  }
.floating-media .float.f12 { top: 55%; left: 22%;  animation-delay: 2.7s, 3.7s;  }
.floating-media .float.f13 { top: 55%; right: 22%; animation-delay: 2.9s, 3.9s;  }
.floating-media .float.f14 { top: 85%; left: 42%;  animation-delay: 3.1s, 4.1s;  }
.floating-media .float.f15 { top: 5%;  left: 46%;  animation-delay: 3.3s, 4.3s;  }

@keyframes float-in {
  to { opacity: 0.2; }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%       { transform: translate(10px, -12px) rotate(4deg); }
  50%       { transform: translate(-8px, -20px) rotate(-3deg); }
  75%       { transform: translate(-14px, 8px) rotate(5deg); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== TRUSTED BY ===== */
.trusted-by {
  padding: var(--space-12) 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-300);
  margin-bottom: var(--space-8);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-4);
  align-items: center;
}

.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
}
.brand-pill:hover {
  border-color: var(--gray-200);
  color: var(--gray-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== TV SLIDER ===== */
.tv-section {
  padding: var(--space-20) 0;
  background: var(--white);
}

.tv-slider {
  overflow: hidden;
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: var(--space-6) 0;
  margin-top: var(--space-10);
}
.tv-slider::before,
.tv-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.tv-slider::before { left: 0;  background: linear-gradient(to right, var(--gray-50), transparent); }
.tv-slider::after  { right: 0; background: linear-gradient(to left,  var(--gray-50), transparent); }

.tv-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  padding: 0 32px;
  animation: scrollTV 32s linear infinite;
}
.tv-track img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.3s var(--ease);
}
.tv-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.08); }
.tv-slider:hover .tv-track { animation-play-state: paused; }

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

/* ===== SECTION GENERIC ===== */
.section { padding: var(--space-24) 0; }
.section-alt { background: var(--gray-50); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-electric);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-6);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: var(--shadow-md);
}
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(6deg); }

.icon-meta     { background: linear-gradient(135deg, #0866FF, #0553C3); }
.icon-google   { background: linear-gradient(135deg, #4285F4, #34A853); }
.icon-tv       { background: linear-gradient(135deg, #E11D48, #BE185D); }
.icon-tiktok   { background: linear-gradient(135deg, #010101, #FF0050); }
.icon-creative { background: linear-gradient(135deg, #F59E0B, #D97706); }
.icon-analytics{ background: linear-gradient(135deg, #7C3AED, #4F46E5); }

.service-card h3 { color: var(--gray-700); margin-bottom: var(--space-3); }
.service-card > p { margin-bottom: var(--space-6); }

.feature-list { padding: 0; }
.feature-list li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  font-size: 0.9375rem;
  color: var(--gray-500);
  position: relative;
  line-height: 1.6;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--grad-electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list li::after {
  content: '✓';
  position: absolute;
  left: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 0.625rem;
  color: var(--white);
  font-weight: 700;
}

.center-btn {
  text-align: center;
  margin-top: var(--space-12);
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: var(--space-6);
  position: relative;
}

.process-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  position: relative;
  transition: all 0.35s var(--ease);
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--grad-electric);
  border-radius: var(--r-lg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-electric);
  transition: transform 0.4s var(--ease-spring);
}
.process-card:hover .step-num { transform: scale(1.12) rotate(5deg); }
.process-card h3 { color: var(--gray-700); margin-bottom: var(--space-3); }

/* ===== RESULTS SECTION ===== */
.results-section { background: var(--navy); position: relative; overflow: hidden; }
.results-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 50%, rgba(37,99,235,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 45% 45% at 15% 60%, rgba(124,58,237,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.results-section .section-header h2 { color: var(--white); }
.results-section .section-desc { color: rgba(255,255,255,0.55); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--space-5);
  position: relative;
}

.result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease);
}
.result-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-5px);
}
.result-card .big-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  background: var(--grad-electric);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: var(--space-3);
  display: block;
}
.result-card p {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  transition: all 0.35s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.1);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  background: var(--grad-electric);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-4);
  display: block;
}

.testimonial-card blockquote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: var(--space-6);
}

.author-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-electric);
  box-shadow: var(--shadow-electric);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.author-info { flex: 1; }
.author-name {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 2px;
}
.author-role { font-size: 0.8125rem; color: var(--gray-400); }
.stars { color: #F59E0B; font-size: 0.875rem; letter-spacing: 1px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--space-24) 0;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(124,58,237,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(6,182,212,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { color: var(--white); margin-bottom: var(--space-4); }
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 1.125rem; margin-bottom: var(--space-10); }

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.reassure-item::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: var(--space-5);
}

.footer-logo img { height: 36px; }

.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--space-5);
}

.footer-links li { margin-bottom: var(--space-3); }
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-item span:first-child { flex-shrink: 0; opacity: 0.6; }
.footer-contact-item a { color: var(--electric-bright); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 1.75rem);
  right: clamp(1.25rem, 3vw, 1.75rem);
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all 0.25s var(--ease-spring);
  animation: bounce-in 0.8s var(--ease-spring) 1s both;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65); }

@keyframes bounce-in {
  from { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.12); }
  to   { transform: scale(1); opacity: 1; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (min-width: 1025px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-content { text-align: center; }
  .hero-cta { justify-content: center; }
}

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

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 11, 24, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-20) var(--space-6);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.35s var(--ease);
    z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); opacity: 1; }
  .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: var(--space-4) 0;
    color: rgba(255,255,255,0.8);
  }
  .nav-link::after { display: none; }
  .nav-menu .btn { width: 100%; justify-content: center; margin-top: var(--space-4); font-size: 1rem; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-reassurance { flex-direction: column; align-items: flex-start; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, .whatsapp-float, .floating-media, .cta-section, .footer, .btn { display: none !important; }
  body { color: #000; font-size: 12pt; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Fix for logo white in footer */
.logo-white { filter: brightness(0) invert(1); }