/* ================================================
   MAKEIT — Premium Design System (Stripe-inspired)
   ================================================ */

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

:root {
  /* Colors */
  --primary: #0066FF;
  --primary-dark: #0052CC;
  --primary-light: #3385FF;
  --accent: #7C3AED;
  --accent2: #EC4899;
  --cyan: #06B6D4;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container-width: 1200px;

  /* Effects */
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
/* Logo image — full color on light bg, white on dark */
.logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: filter 0.3s ease;
  filter: none;
}
.navbar.scrolled .logo-img {
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: 88px;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--gray-900); }
/* Gradient progresivo ink palette: cyan→blue→purple→magenta→gold */
.nav-links li:nth-child(1) a { color: #00B8D9; }
.nav-links li:nth-child(2) a { color: #0066FF; }
.nav-links li:nth-child(3) a { color: #7C3AED; }
.nav-links li:nth-child(4) a { color: #EC4899; }
.nav-links li:nth-child(5) a { color: #E88D00; }
.nav-links li:nth-child(1) a:hover { color: #008DA6; }
.nav-links li:nth-child(2) a:hover { color: #0052CC; }
.nav-links li:nth-child(3) a:hover { color: #5B21B6; }
.nav-links li:nth-child(4) a:hover { color: #DB2777; }
.nav-links li:nth-child(5) a:hover { color: #B87000; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  padding: 10px 24px;
  border-radius: 999px;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,102,255,0.35);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  margin: 5px 0;
  transition: var(--transition);
}


/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: var(--white);
}
.hero-split {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-content {
  flex: 1;
  min-width: 0;
}
.hero-visual {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-animation {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--gray-900);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-title-gradient {
  background: linear-gradient(135deg, #00D4FF 0%, #0066FF 20%, #7C3AED 40%, #FFAA00 60%, #FF0080 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,255,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--gray-500);
  color: var(--gray-900);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}


/* ---- CLIENTS ---- */
.clients {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 48px 24px;
  background: var(--gray-50);
}
.clients-container {
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}
.clients-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.client-logo {
  opacity: 0.35;
  transition: var(--transition);
}
.client-logo:hover { opacity: 0.7; }
.client-svg { width: 120px; height: 40px; color: var(--gray-700); }


/* ---- SECTION COMMON ---- */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #0066FF;
}
.section-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
  background: linear-gradient(to right, #334155 0%, #475569 40%, #6D5A8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ---- SERVICES ---- */
.services {
  padding: var(--section-pad) 24px;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
/* Photo container */
.service-photo {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--gray-50);
}
.service-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-photo img {
  transform: scale(1.04);
}
/* Card text area */
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 24px 32px 12px;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0 32px 20px;
  flex: 1;
}
.service-link {
  display: inline-block;
  margin: 0 32px 28px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}
.service-link:hover { color: var(--accent); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,102,255,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}
.icon-ecommerce { background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(124,58,237,0.15)); color: var(--accent); }
.icon-marketing { background: linear-gradient(135deg, rgba(236,72,153,0.08), rgba(236,72,153,0.15)); color: var(--accent2); }
.icon-ti { background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(6,182,212,0.15)); color: var(--cyan); }
.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0066FF;
}
.service-desc {
  font-size: 0.95rem;
  background: linear-gradient(to right, #334155 0%, #475569 40%, #6D5A8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.service-link:hover { color: var(--primary-dark); letter-spacing: 0.5px; }


/* ---- SHOWCASE ---- */
.showcase {
  padding: var(--section-pad) 24px;
  background: var(--gray-50);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-text {
  font-size: 1.05rem;
  background: linear-gradient(to right, #334155 0%, #475569 40%, #6D5A8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.8;
  margin-bottom: 16px;
}
.showcase-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: inline;
}
.stat-suffix {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mockup */
.showcase-mockup {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.mockup-browser {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}
.mockup-dots span:first-child { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:last-child { background: #28C840; }
.mockup-url {
  font-size: 0.75rem;
  color: var(--gray-400);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  flex: 1;
}
/* Code Editor */
.mockup-code-editor {
  background: #0F172A;
  padding: 24px 28px;
  min-height: 280px;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.82rem;
  line-height: 2;
  overflow: hidden;
}
.code-line {
  color: #CBD5E1;
  animation: codeFadeIn 0.5s ease-out backwards;
}
.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.4s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }
.code-line:nth-child(4) { animation-delay: 0.8s; }
.code-line:nth-child(5) { animation-delay: 1.0s; }
.code-line:nth-child(6) { animation-delay: 1.2s; }
.code-line:nth-child(7) { animation-delay: 1.4s; }
.code-line.indent { padding-left: 28px; }
.code-keyword { color: #C084FC; font-weight: 600; }
.code-var { color: #67E8F9; }
.code-fn { color: #FBBF24; }
.code-prop { color: #94A3B8; }
.code-string { color: #34D399; }
.code-bool { color: #F87171; }
.code-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: #67E8F9;
  border-radius: 1px;
  animation: cursorBlink 1s step-end infinite;
  margin-top: 4px;
}
@keyframes codeFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Floating metric cards */
.floating-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  text-align: center;
  animation: floatCard 3s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 2;
}
.fc-value {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00D4FF, #FFAA00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.fc-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.fc-perf { top: 20px; right: -30px; animation-delay: 0s; }
.fc-sec { bottom: 60px; right: -20px; animation-delay: 0.5s; }
.fc-seo { bottom: 20px; left: -20px; animation-delay: 1s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ---- PROCESS ---- */
.process {
  padding: var(--section-pad) 24px;
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.process-step {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: #0066FF;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0066FF;
}
.step-desc {
  font-size: 0.9rem;
  background: linear-gradient(to right, #334155 0%, #475569 40%, #6D5A8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.7;
}
.step-desc strong {
  color: var(--gray-700);
  font-weight: 600;
}
.step-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(124,58,237,0.08));
  color: var(--primary);
}

/* Vision & Mission Cards */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.vm-card {
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}
.vm-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.vm-card .service-title {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}
.vm-card .service-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  background: linear-gradient(to right, #334155 0%, #475569 40%, #6D5A8A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ---- RESULTS / TESTIMONIALS ---- */
/* ---- RESULTS / WHY US ---- */
.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(0,102,255,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
}
.why-icon.icon-speed { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.15)); color: #F59E0B; }
.why-icon.icon-support { background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.15)); color: #10B981; }
.results {
  padding: var(--section-pad) 24px;
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}
.author-role {
  font-size: 0.8rem;
  color: var(--gray-400);
}


/* ---- CTA FINAL ---- */
.cta-final {
  padding: var(--section-pad) 24px;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.cta-gradient {
  position: absolute;
  top: -40%; right: -20%;
  width: 80%; height: 180%;
  background: conic-gradient(
    from 200deg at 50% 50%,
    #0066FF33 0deg,
    #7C3AED44 120deg,
    #EC489933 240deg,
    #0066FF33 360deg
  );
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 48px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.form-input {
  flex: 1;
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-input::placeholder { color: var(--gray-500); }
.form-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.2);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option { background: var(--gray-900); color: var(--white); }
.form-textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary {
  align-self: center;
  margin-top: 8px;
}


/* ---- FOOTER ---- */
.footer {
  padding: 64px 24px 32px;
  background: var(--gray-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-text {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-600);
}


/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-split { flex-direction: column; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .hero { min-height: auto; padding: 120px 24px 40px; }
  .hero-split { flex-direction: column; text-align: center; gap: 24px; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.05rem; }
  .hero-visual { max-width: 100%; }
  .hero-animation { max-height: 250px; border-radius: 12px; }
  .hero-ctas { flex-direction: column; justify-content: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .clients-grid { gap: 24px; }
  .showcase-stats { flex-direction: column; gap: 24px; align-items: flex-start; }
  .form-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-animation { max-height: 200px; }
  .section-title { font-size: 1.75rem; }
  .service-card { padding: 28px; }
}
