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

:root {
  --bg: #0B0F1A;
  --bg-alt: #111827;
  --pink: #E91E8C;
  --pink-dark: #C41874;
  --cyan: #00D4FF;
  --blue: #2196F3;
  --text: #FFFFFF;
  --muted: #94A3B8;
  --dim: #64748B;
  --border: rgba(255,255,255,0.05);
  --border-hover: rgba(255,255,255,0.1);
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

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

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

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

::selection { background: var(--pink); color: white; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== BACKGROUND CANVAS ===== */
#wave-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main, .navbar, .footer { position: relative; z-index: 1; }

.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY HELPERS ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.eyebrow-cyan { color: var(--cyan); }
.eyebrow-pink { color: var(--pink); }
.text-cyan { color: var(--cyan); }

.grad-text {
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11,15,26,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; background: none; border: none; }
.logo-img { height: 36px; width: auto; }
.logo-text { color: white; font-weight: 700; font-size: 15px; letter-spacing: 0.02em; }
@media (max-width: 639px) { .logo-text { display: none; } }

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  background: none; border: none;
  color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover { color: white; }

.btn-nav {
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  color: white;
  font-size: 14px; font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
.btn-nav:hover {
  box-shadow: 0 10px 30px rgba(233,30,140,0.3);
  transform: scale(1.05);
}

.nav-toggle {
  display: flex;
  background: none; border: none; color: white;
  padding: 8px;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: rgba(11,15,26,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
@media (min-width: 768px) { .nav-mobile { display: none !important; } }

.nav-link-mobile {
  background: none; border: none; text-align: left;
  color: var(--muted); font-size: 16px; font-weight: 500;
}
.nav-link-mobile:hover { color: white; }

.btn-nav-mobile { text-align: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(233,30,140,0.15);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  color: white;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(233,30,140,0.3);
  transform: scale(1.05);
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: none;
  color: var(--muted);
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.2);
  transition: all 0.3s ease;
}
.btn-secondary:hover { color: white; border-color: rgba(0,212,255,0.5); }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; color: var(--dim);
}
.scroll-cue span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-cue svg { animation: bounce 2s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 112px 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 144px 0; } }
.section-alt { background: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: rgba(17,24,39,0.8);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.5s ease;
}

/* ===== SERVICES ===== */
.service-card:hover {
  border-color: rgba(233,30,140,0.3);
  transform: translateY(-8px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.card-title { font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 12px; }
.card-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }

.feature-list { display: flex; flex-direction: column; gap: 8px; }
.feature-list li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.9rem; }
.feature-list .check { color: var(--pink); flex-shrink: 0; }

/* ===== PORTFOLIO ===== */
.portfolio-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  transition: all 0.5s ease;
}
.portfolio-card:hover { border-color: rgba(0,212,255,0.3); }
.portfolio-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1b2333, #0B0F1A);
}
.portfolio-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.7s ease;
}
.portfolio-card:hover .portfolio-media img { transform: scale(1.05); }
.portfolio-badge {
  position: absolute; top: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 999px;
  padding: 4px 12px;
}
.portfolio-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.portfolio-badge span { color: #4ade80; font-size: 12px; font-weight: 500; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.portfolio-body { padding: 24px; }
.portfolio-cat { color: var(--cyan); font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.portfolio-title { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.portfolio-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.portfolio-tags span {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--muted);
  background: rgba(255,255,255,0.05);
  border-radius: 999px; padding: 4px 12px;
}
.portfolio-tags svg { color: var(--pink); }
.portfolio-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s ease;
}
.portfolio-link:hover { color: white; }

/* ===== PROCESS ===== */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-line {
  display: none;
}
@media (min-width: 1024px) {
  .process-line {
    display: block;
    position: absolute;
    top: 48px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(233,30,140,0.3), rgba(0,212,255,0.3), rgba(33,150,243,0.3));
  }
}

.process-step { position: relative; text-align: center; }
.process-icon-wrap {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border-hover);
  color: var(--cyan);
  margin-bottom: 20px;
}
.process-num {
  position: absolute; top: -4px; right: -4px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; font-weight: 700;
}
.process-title { color: white; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.process-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== PRICING ===== */
.pricing-grid { align-items: start; }
.pricing-card { position: relative; }
.pricing-highlight {
  background: linear-gradient(180deg, rgba(233,30,140,0.15), var(--bg));
  border: 2px solid rgba(233,30,140,0.4);
  box-shadow: 0 25px 60px -15px rgba(233,30,140,0.15);
}
@media (min-width: 768px) { .pricing-highlight { transform: scale(1.05); } }

.pricing-badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  color: white; font-size: 12px; font-weight: 700;
  padding: 6px 20px; border-radius: 999px;
  white-space: nowrap;
}
.pricing-head { margin-bottom: 24px; }
.pricing-name { color: white; font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.pricing-tag { color: var(--dim); font-size: 0.9rem; }
.pricing-price { margin-bottom: 32px; }
.price-num { font-size: 2.75rem; font-weight: 800; color: white; letter-spacing: -0.02em; }
.price-unit { color: var(--dim); font-size: 0.85rem; margin-left: 8px; }

.pricing-features { margin-bottom: 32px; gap: 12px; }
.pricing-features li { align-items: flex-start; gap: 12px; }
.check-circle {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(233,30,140,0.2); color: var(--pink);
  flex-shrink: 0; margin-top: 2px;
}

.btn-pricing {
  display: block; text-align: center; width: 100%;
  background: rgba(255,255,255,0.05);
  color: white; font-weight: 600; font-size: 0.9rem;
  padding: 14px; border-radius: 999px;
  transition: all 0.3s ease;
}
.btn-pricing:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }
.btn-pricing-highlight {
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  color: white;
}
.btn-pricing-highlight:hover { box-shadow: 0 10px 30px rgba(233,30,140,0.3); }

.pricing-note { text-align: center; color: var(--dim); font-size: 0.9rem; margin-top: 32px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card { position: relative; }
.quote-icon { color: rgba(233,30,140,0.2); margin-bottom: 16px; }
.testimonial-quote { color: #CBD5E1; font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.stars { color: #facc15; letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }
.testimonial-name { color: white; font-weight: 600; font-size: 0.9rem; }
.testimonial-biz { color: var(--dim); font-size: 0.8rem; }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 112px 24px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 1024px) { .cta { padding: 144px 24px; } }
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233,30,140,0.2), var(--bg) 50%, rgba(33,150,243,0.2));
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(233,30,140,0.1);
  filter: blur(150px);
  pointer-events: none;
}
.cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: white; line-height: 1.1; margin-bottom: 24px;
}
.cta-desc { color: var(--muted); font-size: 1.125rem; max-width: 560px; margin: 0 auto 40px; }
.cta-actions {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
@media (min-width: 640px) { .cta-actions { flex-direction: row; } }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--bg);
  font-weight: 700; padding: 16px 32px; border-radius: 999px;
  transition: all 0.3s ease;
}
.btn-white:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-weight: 500;
  padding: 16px 32px; border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.2);
  transition: all 0.3s ease;
}
.btn-outline:hover { color: white; border-color: rgba(0,212,255,0.5); }

.cta-status {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--dim); font-size: 0.9rem;
}
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0; border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo { margin-bottom: 16px; }
.footer-text { color: var(--dim); font-size: 0.9rem; line-height: 1.6; max-width: 380px; margin-bottom: 24px; }
.socials { display: flex; align-items: center; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim);
  transition: all 0.3s ease;
}
.social-ig:hover { background: rgba(233,30,140,0.2); color: var(--pink); }
.social-fb:hover { background: rgba(33,150,243,0.2); color: var(--blue); }
.social-wa:hover { background: rgba(34,197,94,0.2); color: #4ade80; }

.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 20px;
}
.footer-list { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  background: none; border: none; text-align: left;
  color: var(--muted); font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-link:hover { color: white; }
.footer-link-a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-link-a:hover { color: white; }
.footer-link-pink:hover { color: var(--pink); }
.footer-location { display: flex; align-items: center; gap: 4px; color: var(--dim); font-size: 0.9rem; }

.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--dim); font-size: 12px; text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
