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

:root {
  --bg-primary: #0A0F1E;
  --bg-card: #0F172A;
  --bg-card2: #111827;
  --border: #1E293B;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-glow: rgba(37, 99, 235, 0.3);
  --orange: #F97316;
  --orange-glow: rgba(249, 115, 22, 0.3);
  --text-primary: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #475569;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* Scroll progress */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-brand span { color: var(--blue); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  background: var(--blue-light) !important;
  box-shadow: 0 0 20px var(--blue-glow) !important;
  color: white !important;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue-light);
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-2px);
}

.hero-price-tag {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-price-tag span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.hero-price-tag strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  margin-left: 0.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-light);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* SECTIONS */
section { padding: 6rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* WHY SECTION */
#why { background: var(--bg-card); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-4px);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* RECRUITER QUOTE */
.recruiter-quote {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(249,115,22,0.05));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.recruiter-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.recruiter-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
}

.recruiter-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue-light);
  font-style: normal;
}

/* BEFORE AFTER */
#before-after { background: var(--bg-primary); }

.before-after-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.before-card, .after-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.card-header {
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.before-card .card-header { background: #1a1a2e; color: #ef4444; }
.after-card .card-header { background: rgba(37,99,235,0.2); color: var(--blue-light); }

.before-content {
  background: #111;
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 2;
}

.after-content {
  background: var(--bg-card);
  padding: 1.5rem;
}

.after-preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.after-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.after-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.after-role { color: var(--text-muted); font-size: 0.8rem; }

.after-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.skill-tag {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-light);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.after-links {
  display: flex;
  gap: 0.8rem;
}

.after-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--orange);
  text-decoration: none;
}

.vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-text {
  background: var(--orange);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

/* WHAT'S INCLUDED */
#included { background: var(--bg-card); }

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
  transition: all 0.3s;
}

.included-item:hover {
  border-color: var(--blue);
  transform: translateX(4px);
}

.included-check {
  width: 24px; height: 24px;
  background: rgba(37,99,235,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-light);
  font-size: 0.75rem;
  margin-top: 2px;
}

.included-text h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.included-text p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.price-box {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(249,115,22,0.05));
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.price-box .price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--orange);
}

.price-box .price-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price-box .price-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* OUR WORK */
#work { background: var(--bg-primary); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.work-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-6px);
}

.work-preview {
  height: 180px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.work-preview-real {
  background: linear-gradient(135deg, #0a0f1e, #1a2744);
  border-bottom: 1px solid var(--border);
}

.work-preview-demo {
  background: linear-gradient(135deg, #0f1923, #1a2535);
}

.work-preview-inner {
  text-align: center;
  padding: 1rem;
}

.work-preview-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.work-preview-url {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--blue-light);
  background: rgba(37,99,235,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,0.2);
}

.work-badge {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.badge-live {
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.4);
  color: #22c55e;
}

.badge-demo {
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--orange);
}

.work-info { padding: 1.2rem; }

.work-info h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.work-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.work-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue-light);
  font-size: 0.85rem;
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.2s;
}

.work-info a:hover { color: var(--orange); }

/* HOW IT WORKS */
#how { background: var(--bg-card); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--blue), transparent);
}

.step-num {
  width: 40px; height: 40px;
  background: rgba(37,99,235,0.2);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.step-content {
  padding-bottom: 2rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ROI CALCULATOR */
#roi { background: var(--bg-primary); }

.roi-card {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(249,115,22,0.04));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  padding: 3rem;
  max-width: 700px;
  margin: 3rem auto 0;
}

.roi-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.roi-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.roi-input-group {
  margin-bottom: 1.5rem;
}

.roi-input-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}

.roi-input-group input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.roi-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-top: 0.3rem;
}

.roi-result {
  margin-top: 2rem;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.roi-result .roi-payback {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.roi-result p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  margin-top: 0.3rem;
}

/* SOCIAL PROOF */
#social-proof {
  background: var(--bg-card);
  padding: 3rem 2rem;
  text-align: center;
}

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-light);
}

.proof-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* DELIVERY TIMER */
#delivery {
  background: var(--bg-primary);
  padding: 4rem 2rem;
  text-align: center;
}

.delivery-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(37,99,235,0.05));
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 16px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(249,115,22,0.1);
}

.delivery-box h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.delivery-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.delivery-date {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1.5rem;
  padding: 0.8rem 2rem;
  background: rgba(249,115,22,0.1);
  border-radius: 10px;
  display: inline-block;
}

/* FAQ */
#faq { background: var(--bg-card); }

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--blue); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-icon {
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem;
}

/* FINAL CTA */
#cta-final {
  background: linear-gradient(135deg, #0a0f1e, #0f1a35);
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  pointer-events: none;
}

#cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

#cta-final p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-email:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: #060a14;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-brand span { color: var(--blue); }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.footer-contact {
  display: flex;
  gap: 1rem;
}

.footer-contact a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--blue-light); }

/* FLOATING WHATSAPP */
#whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: floatPulse 2s infinite;
  transition: transform 0.3s;
}

#whatsapp-float:hover { transform: scale(1.1); }

#whatsapp-float svg { width: 28px; height: 28px; fill: white; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .before-after-container { grid-template-columns: 1fr; }
  .vs-badge { display: none; }
  .hero-stats { gap: 1.5rem; }
  .proof-divider { display: none; }
  .proof-bar { gap: 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .roi-card { padding: 1.5rem; }
  .delivery-box { padding: 2rem 1.5rem; }
}

/* PAGES */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.page-hero p { color: var(--text-muted); }

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 0.8rem;
  color: var(--blue-light);
}

.page-content p, .page-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.page-content ul { padding-left: 1.5rem; }
.page-content a { color: var(--blue-light); }

.last-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
