/* =====================================================
   DigitalVyaparPro — Premium Agency CSS
   ===================================================== */

/* ---- Variables ---- */
:root {
  --bg: #F7FBF8;
  --bg2: #EEF9F1;
  --mint: #9FF4C4;
  --green: #53E39A;
  --emerald: #18C96E;
  --dark-emerald: #0FA958;
  --text: #000000;
  --text-sec: #333333;
  --text-muted: #666;
  --card-bg: rgba(255,255,255,0.75);
  --card-border: rgba(255,255,255,0.45);
  --glow: rgba(24,201,110,0.25);
  --glow-strong: rgba(24,201,110,0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: cubic-bezier(0.22,1,0.36,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(24,201,110,0.08);
  border: 1px solid rgba(24,201,110,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.35s var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-outline {
  border: 2px solid var(--text);
  background: transparent;
  color: var(--text);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px var(--glow-strong);
}
.btn-solid {
  background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
  border: 2px solid transparent;
  color: #fff;
}
.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--glow-strong);
  filter: brightness(1.08);
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== LOADER ===================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
#loader.hidden {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
.loader-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.loader-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blobFloat 5s ease-in-out infinite;
}
.lb1 {
  width: 500px; height: 500px;
  background: var(--mint);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.lb2 {
  width: 400px; height: 400px;
  background: var(--green);
  bottom: -80px; right: -80px;
  animation-delay: -2s;
}
.lb3 {
  width: 300px; height: 300px;
  background: var(--emerald);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.3;
  animation-delay: -1s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.95); }
}
.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo-mark {
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(24,201,110,0.5));
}
@keyframes logoPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.loader-brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  min-height: 2rem;
}
.loader-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  min-height: 1.2rem;
}
.loader-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  width: 240px;
}
.loader-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(24,201,110,0.15);
  border-radius: 100px;
  overflow: hidden;
}
.loader-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--mint), var(--emerald));
  border-radius: 100px;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--glow-strong);
}
.loader-percent {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ===================== MOUSE GLOW ===================== */
.mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,244,196,0.18) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.3s;
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--transition), padding 0.4s var(--transition), box-shadow 0.4s var(--transition);
}
#navbar.scrolled {
  background: rgba(247,251,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  border-radius: 100px;
  transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: 13px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 100px;
  transition: all 0.3s var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.b1 {
  width: 650px; height: 650px;
  background: var(--mint);
  opacity: 0.35;
  top: -200px; right: -150px;
  animation: heroBlob1 12s ease-in-out infinite;
}
.b2 {
  width: 500px; height: 500px;
  background: var(--green);
  opacity: 0.25;
  bottom: -100px; left: -100px;
  animation: heroBlob2 15s ease-in-out infinite;
}
.b3 {
  width: 350px; height: 350px;
  background: var(--emerald);
  opacity: 0.15;
  top: 50%; left: 30%;
  animation: heroBlob3 10s ease-in-out infinite;
}
@keyframes heroBlob1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px,40px) scale(1.08); }
}
@keyframes heroBlob2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px,-30px) scale(1.05); }
}
@keyframes heroBlob3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.15); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(24,201,110,0.08);
  border: 1px solid rgba(24,201,110,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--dark-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sec);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 7px 15px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollFade 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--emerald));
}
.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes scrollFade {
  0%,100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

/* ===================== SERVICES ===================== */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.12);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(20px);
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition), border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(159,244,196,0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--glow);
  border-color: rgba(24,201,110,0.3);
}
.service-card:hover::before { opacity: 1; }
.sc-icon {
  width: 52px; height: 52px;
  background: rgba(24,201,110,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.service-card:hover .sc-icon { background: rgba(24,201,110,0.18); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== WHY US ===================== */
.why-section { background: var(--bg2); }
.why-bg-blob {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.2;
  filter: blur(120px);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
  backdrop-filter: blur(16px);
  position: relative;
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--glow);
}
.why-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--emerald);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity 0.3s;
}
.why-card:hover .why-num { opacity: 0.45; }
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== PORTFOLIO ===================== */
.portfolio-section { background: var(--bg); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  display: block;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.1);
  transition: transform 0.35s var(--transition), box-shadow 0.35s var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--glow);
}
.portfolio-img {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
  transition: transform 0.5s var(--transition);
}
.portfolio-card:hover .portfolio-img { transform: scale(1.03); }
.portfolio-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.9);
  color: var(--emerald);
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.portfolio-info { padding: 20px 22px 24px; }
.portfolio-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.portfolio-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.portfolio-link {
  display: inline-flex;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
}
.portfolio-card:hover .portfolio-link {
  color: var(--dark-emerald);
}

/* ===================== RESULTS ===================== */
.results-section {
  background: var(--text);
  padding: 100px 0;
}
.results-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1a11 0%, #000 100%);
}
.results-section .section-header { position: relative; }
.results-section .section-label {
  background: rgba(24,201,110,0.15);
  border-color: rgba(24,201,110,0.3);
}
.results-section h2 {
  color: #fff;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.result-item {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 48px 24px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.result-item:hover {
  border-color: rgba(24,201,110,0.3);
  box-shadow: 0 0 40px rgba(24,201,110,0.15);
}
.result-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--mint), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.result-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--bg2); }
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--transition);
  gap: 0;
}
.testi-card {
  min-width: 100%;
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.15);
  border-radius: var(--radius);
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.testi-stars {
  font-size: 1.1rem;
  color: var(--emerald);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testi-card p {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-sec);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--emerald));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-weight: 700; font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s;
}
.testi-btn:hover {
  border-color: var(--emerald);
  background: var(--emerald);
  color: #fff;
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 100px;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s;
  cursor: pointer;
}
.testi-dot.active {
  background: var(--emerald);
  width: 24px;
}

/* ===================== PROCESS ===================== */
.process-section { background: var(--bg); }
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.ps-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(159,244,196,0.4), rgba(24,201,110,0.25));
  border: 2px solid rgba(24,201,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--emerald);
  margin: 0 auto 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.process-step:hover .ps-number {
  background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
  color: #fff;
  box-shadow: 0 8px 32px var(--glow-strong);
}
.ps-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.ps-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.6;
}
.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), rgba(24,201,110,0.2));
  margin-top: 32px;
  border-radius: 100px;
}

/* ===================== PRICING ===================== */
.pricing-section { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.12);
  border-radius: var(--radius);
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--transition), box-shadow 0.35s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--glow);
}
.pricing-popular {
  border: 2px solid var(--emerald);
  box-shadow: 0 12px 48px var(--glow), inset 0 0 40px rgba(24,201,110,0.04);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--emerald), var(--dark-emerald));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}
.pricing-features {
  margin-bottom: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-sec);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  opacity: 0.7;
}
.pricing-btn { width: 100%; justify-content: center; }

/* ===================== FAQ ===================== */
.faq-section { background: var(--bg); }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: rgba(24,201,110,0.3);
  box-shadow: 0 8px 30px var(--glow);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--transition);
  color: var(--emerald);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================== CTA ===================== */
.cta-section {
  background: var(--bg2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cb1 {
  width: 600px; height: 600px;
  background: var(--mint);
  opacity: 0.3;
  top: -200px; right: -100px;
}
.cb2 {
  width: 400px; height: 400px;
  background: var(--green);
  opacity: 0.2;
  bottom: -100px; left: 0;
}
.cta-container {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-container .section-label { margin-bottom: 20px; }
.cta-container h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-container p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.cta-form-wrap { max-width: 640px; margin: 0 auto; }
.cta-form-card {
  background: var(--card-bg);
  border: 1px solid rgba(24,201,110,0.15);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.06);
  text-align: left;
}
.cta-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-sec);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.8);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(24,201,110,0.12);
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0a0f0b;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo { color: #fff; margin-bottom: 16px; }
.footer-logo span { color: #fff; }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer-socials a:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(24,201,110,0.08);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a, .footer-col li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--emerald); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===================== WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { flex-direction: column; align-items: center; gap: 32px; }
  .process-connector { width: 2px; height: 48px; background: linear-gradient(to bottom, var(--emerald), rgba(24,201,110,0.2)); flex: none; margin: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(247,251,248,0.97);
    backdrop-filter: blur(20px);
    padding: 32px;
    gap: 24px;
    border-bottom: 1px solid rgba(24,201,110,0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  }
  .nav-links.open + .nav-cta { display: block; }
}
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-headline { font-size: 2.6rem; }
  .testi-card { padding: 28px 20px; }
  .testi-card p { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-form-card { padding: 24px 20px; }
  .desktop-br { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .pricing-grid { max-width: 100%; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
