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

:root {
  --bg: #050508;
  --bg-2: #0c0c14;
  --bg-3: #111120;
  --accent: #6C63FF;
  --accent-2: #3B82F6;
  --accent-green: #10B981;
  --accent-glow: rgba(108, 99, 255, 0.25);
  --text: #f0f0f8;
  --text-muted: #8888aa;
  --text-dim: #555570;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(108,99,255,0.3);
  --white: #ffffff;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-accent: 0 0 40px rgba(108,99,255,0.2);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 30px rgba(108,99,255,0.4);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(108,99,255,0.55);
}
.btn-primary.btn-large {
  font-size: 18px;
  padding: 18px 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(108,99,255,0.08);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 36px; width: auto; }
.logo-text {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  -webkit-text-fill-color: initial;
}
.logo-ia {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-domain {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
  -webkit-text-fill-color: initial;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  padding: 8px 20px;
  box-shadow: 0 2px 20px rgba(108,99,255,0.3);
}
.nav-links .btn-nav:hover { box-shadow: 0 4px 30px rgba(108,99,255,0.5); background: rgba(0,0,0,0) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-30%);
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  bottom: 0; right: 10%;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle strong { color: var(--text); }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 140px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.problem-section .container { text-align: center; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s;
}
.problem-card:hover {
  border-color: var(--border-accent);
  background: rgba(108,99,255,0.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.problem-icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.solution-callout {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(59,130,246,0.08));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}
.callout-icon { font-size: 36px; flex-shrink: 0; }
.callout-content h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.callout-content p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.callout-content strong { color: var(--text); }

/* ===== SERVICES ===== */
.services-section {
  padding: 100px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--shadow-accent);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ===== METHODOLOGY ===== */
.methodology-section {
  padding: 100px 0;
  background: var(--bg-2);
}
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  padding-top: 8px;
}
.step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent), transparent);
  margin: 0 0 0 39px;
  display: none;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.step-icon { font-size: 28px; }
.step-content h3 { font-size: 26px; font-weight: 800; color: var(--white); }
.step-content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 680px;
}
.step-content strong { color: var(--text); }
.step-content ul { display: flex; flex-direction: column; gap: 8px; }
.step-content ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.step-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 100px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .section-tag { margin-bottom: 16px; }
.why-text h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--white); line-height: 1.2; }
.why-text > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-check {
  width: 28px; height: 28px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.why-point p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* AI Card */
.ai-card {
  background: var(--bg-3);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-accent);
}
.ai-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.ai-dot { width: 10px; height: 10px; border-radius: 50%; }
.ai-dot.green { background: #10B981; }
.ai-dot.yellow { background: #F59E0B; }
.ai-dot.red { background: #EF4444; }
.ai-card-header span { margin-left: auto; }
.ai-card-body { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.ai-metric { display: flex; justify-content: space-between; align-items: center; }
.metric-label { font-size: 13px; color: var(--text-muted); }
.metric-value { font-size: 24px; font-weight: 800; color: var(--white); }
.ai-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.ai-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  transition: width 1.5s ease;
}
.ai-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent-green);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.status-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.glow-cta-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.glow-cta-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  bottom: 0; right: 15%;
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 10px; height: 10px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { transform: scale(1); }
}
.cta-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-subtitle strong { color: var(--text); }

.cta-slots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.slot {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.slot.taken {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  font-size: 0;
  position: relative;
}
.slot.taken::after {
  content: '✗';
  font-size: 18px;
  color: #f87171;
}
.slot.available {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  color: var(--accent-green);
  font-size: 0;
  position: relative;
}
.slot.available::after {
  content: '✓';
  font-size: 18px;
  color: var(--accent-green);
}
.slot.label {
  background: none;
  border: none;
  width: auto;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.cta-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand .footer-logo { height: 40px; margin-bottom: 16px; }
.footer-logo-text {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.footer-logo-text .logo-domain {
  font-size: 17px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; max-width: 320px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-whatsapp:hover { opacity: 0.8; }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col li a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-direction: column; gap: 4px; }
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--accent); transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.8; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background: var(--bg-3);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: var(--shadow);
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.cookie-content p a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-reject {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-reject:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 998;
  transition: all 0.3s;
  animation: floatIn 0.5s ease 1s both;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@keyframes floatIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 140px 0 60px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.legal-hero p { font-size: 15px; color: var(--text-muted); }
.legal-content {
  max-width: 780px;
  margin: 60px auto;
  padding: 0 24px 80px;
}
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--white); margin: 40px 0 14px; }
.legal-content h3 { font-size: 17px; font-weight: 600; color: var(--text); margin: 28px 0 10px; }
.legal-content p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-content ul li { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--accent); }
.legal-content strong { color: var(--text); }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.legal-content th, .legal-content td { padding: 12px 16px; text-align: left; border: 1px solid var(--border); font-size: 14px; }
.legal-content th { background: rgba(255,255,255,0.04); color: var(--text); font-weight: 600; }
.legal-content td { color: var(--text-muted); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: gap 0.2s;
}
.back-link:hover { gap: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,5,8,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-links .btn-nav { margin-top: 8px; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .navbar { position: fixed; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-number { font-size: 40px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; justify-content: center; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section-subtitle { font-size: 16px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .footer-links { flex-direction: column; gap: 28px; }
  .step { grid-template-columns: 1fr; }
  .step-number { font-size: 32px; margin-bottom: -20px; }
  .solution-callout { flex-direction: column; gap: 12px; }
}
