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

:root {
  --black: #0a0a0a;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --light: #f8f9fa;
  --white: #ffffff;
  --accent: #e63946;
  --accent-dark: #c1121f;
  --accent-glow: rgba(230, 57, 70, 0.4);
  --blue: #457b9d;
  --blue-dark: #1d3557;
  --cream: #f1faee;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.section-title { margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-3px);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 40px rgba(0,0,0,0.06);
  padding: 14px 0;
}

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

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent); }
.navbar.scrolled .logo { color: var(--dark); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--gray); }
.navbar.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  padding: 10px 28px !important;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar.scrolled .mobile-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

/* Animated gradient mesh */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-orb 15s ease-in-out infinite;
}

.hero-bg .orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -20%; right: -10%;
  animation-delay: 0s;
}

.hero-bg .orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  bottom: -15%; left: -10%;
  animation-delay: -5s;
}

.hero-bg .orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: -10s;
  opacity: 0.3;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.03); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 100%);
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: rise 10s linear infinite;
}

@keyframes rise {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.25);
  padding: 10px 24px;
  border-radius: 50px;
  color: #ff8a95;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #ff6b7a, #ffa07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  line-height: 1.9;
  max-width: 520px;
}

.hero-text strong { color: rgba(255,255,255,0.9); }

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

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat h3 {
  color: var(--white);
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}
.hero-stat h3 span {
  background: linear-gradient(135deg, var(--accent), #ff6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  margin-top: 4px;
  font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 24px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 0 40px;
}

.marquee-track span::after {
  content: '\00B7';
  margin-left: 40px;
  color: var(--accent);
  opacity: 0.4;
}

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

/* ===== PROBLEMS ===== */
.problems {
  padding: 120px 0;
  background: var(--light);
  position: relative;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.problem-list { display: flex; flex-direction: column; gap: 20px; }

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: default;
}

.problem-item:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 57, 70, 0.15);
}

.problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: 12px;
}

.problem-icon svg { flex-shrink: 0; }

.problem-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}
.problem-item p strong { color: var(--dark); font-weight: 700; }

.solution-box {
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), #ff6b7a, var(--blue));
  border-radius: 4px;
}

.solution-box h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.solution-box p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.solution-box .highlight {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #ff6b7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.about-features { display: flex; flex-direction: column; gap: 16px; }

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 12px;
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--light);
  transform: translateX(8px);
}

.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D tilt card */
.about-card-3d {
  perspective: 1000px;
}

.about-image-block {
  position: relative;
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  border-radius: 24px;
  padding: 52px;
  color: var(--white);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  overflow: hidden;
}

.about-image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 24px;
}

.about-image-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
}

.about-image-block h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-image-block p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  color: #ff8a95;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  width: fit-content;
}

/* ===== FOUNDER ===== */
.founder {
  padding: 120px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.founder-visual {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark), #ff6b7a);
  border-radius: 24px;
  padding: 52px;
  color: var(--white);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.founder-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.founder-initials {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 28px;
  border: 3px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.founder-visual h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.founder-visual > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.founder-info h3 { font-size: 1.4rem; margin-bottom: 20px; line-height: 1.4; }
.founder-info > p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; font-size: 1.05rem; }

.founder-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 12px;
  transition: var(--transition);
}

.founder-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.founder-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  position: relative;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.services-header .section-label::before { display: none; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 44px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff6b7a, var(--blue));
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230,57,70,0.06), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(230, 57, 70, 0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  transform: translateY(-8px);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: 16px;
  margin-bottom: 28px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon svg { flex-shrink: 0; }

.service-card h3 { margin-bottom: 8px; }

.service-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.service-card > p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.service-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--accent), #ff6b7a);
  border-radius: 50%;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 120px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.audience::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.15;
}

.audience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.audience-header .section-label { color: #ff8a95; }
.audience-header .section-label::before { background: #ff8a95; }
.audience-header .section-title { color: var(--white); }
.audience-header .section-subtitle { color: rgba(255,255,255,0.5); margin: 0 auto; }

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

.audience-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  cursor: default;
}

.audience-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.audience-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-card h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.audience-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

.audience-note {
  text-align: center;
  margin-top: 56px;
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--light);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.testimonial-card blockquote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: -5px;
  font-size: 4rem;
  color: rgba(230,57,70,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.testimonial-author p {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author small {
  color: var(--gray);
  font-size: 0.82rem;
}

/* ===== CTA ===== */
.cta {
  padding: 120px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--dark), var(--blue-dark));
  border-radius: 32px;
  padding: 88px 64px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0.3;
  animation: float-orb 12s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(69, 123, 157, 0.4), transparent 70%);
  opacity: 0.3;
  animation: float-orb 15s ease-in-out infinite reverse;
}

.cta-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  border-radius: 32px;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-box > p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn-whatsapp {
  font-size: 1.05rem;
  padding: 20px 44px;
}

.cta-options {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  font-weight: 500;
}

.cta-option::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.4);
  padding: 64px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 340px;
  line-height: 1.7;
}

.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0;
  animation: wa-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: -1;
}

@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.cursor-glow.active { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

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

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 20px 20px;
    gap: 16px;
  }
  .nav-links.active a { color: var(--dark); }

  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .scroll-indicator { display: none; }

  .problems-grid,
  .about-grid,
  .founder-card { grid-template-columns: 1fr; }

  .services-grid,
  .audience-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 52px 28px; border-radius: 24px; }
  .footer-content { flex-direction: column; }
  .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .service-card { padding: 32px; }
  .hero-stat h3 { font-size: 1.8rem; }
  .problems, .about, .founder, .services, .audience, .testimonials, .cta { padding: 80px 0; }
}
