/* ============================================================
   GROWTH MANCH — PREMIUM CSS
   Clean, mobile-first, no conflicts
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  --purple:       #7964FF;
  --purple-hover: #6752F5;
  --purple-glow:  rgba(121,100,255,0.28);
  --purple-light: rgba(121,100,255,0.08);
  --purple-mid:   rgba(121,100,255,0.15);
  --dark:         #1F2230;
  --dark2:        #2E3346;
  --text:         #6B7280;
  --border:       #E5E7EB;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --green:        #10B981;

  --grad-purple:  linear-gradient(135deg,#7964FF 0%,#9A8BFF 100%);
  --grad-dark:    linear-gradient(135deg,#2E3346 0%,#1F2230 100%);

  --font-head:  'Manrope', sans-serif;
  --font-body:  'Inter', sans-serif;

  --card-radius: 20px;
  --card-shadow: 0 8px 32px rgba(46,51,70,0.07);
  --card-shadow-hover: 0 20px 50px rgba(121,100,255,0.13);

  --ease: all 0.35s cubic-bezier(0.16,1,0.3,1);
  --ease-fast: all 0.18s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark2); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease-fast); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 800; color: var(--dark2); line-height: 1.2; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 800px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 12px 28px var(--purple-glow);
}
.btn-primary:hover {
  background: var(--purple-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px var(--purple-glow);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--dark2);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
.btn-cta {
  background: var(--white);
  color: var(--purple);
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  color: var(--purple);
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid var(--purple-mid);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---- SECTION HEADER ---- */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}
.gradient-text {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section    { padding: 96px 0; }
.bg-light   { background: var(--off-white); }


/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,0.6);
  transition: var(--ease);
}
#main-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

/* The single nav container — controls all layout */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

/* Logo */
.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--ease-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--purple); }

/* Desktop CTA */
.desktop-cta {
  flex-shrink: 0;
  font-size: 0.86rem;
  padding: 10px 18px;
}

/* ---- MOBILE DRAWER (position:fixed, outside header stacking context) ---- */
/* Hidden by default */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 66px;        /* exactly below header */
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 1002;    /* above header(1000) and overlay(1001) */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 32px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.mobile-drawer.open {
  display: block;
  animation: drawerSlide 0.28s cubic-bezier(0.16,1,0.3,1);
}
@keyframes drawerSlide {
  from { opacity:0; transform: translateY(-8px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Drawer links */
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark2);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: var(--ease-fast);
}
.drawer-links li a:hover { color: var(--purple); background: var(--purple-light); }
.drawer-links li:last-child a { border-bottom: none; }

/* Drawer CTA button */
.drawer-cta {
  display: block;
  margin: 20px 24px 0 24px;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
  border-radius: 14px;
  width: calc(100% - 48px);
}

/* Dark overlay behind drawer */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  top: 66px; /* below header bar */
}
.drawer-overlay.open { display: block; }

/* Burger — hidden on desktop */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--purple-light);
  border: 1.5px solid var(--purple-mid);
  border-radius: 10px;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--ease-fast);
  position: relative;
  z-index: 1003;
}
.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark2);
  border-radius: 2px;
  transition: var(--ease-fast);
}
/* Burger X animation */
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay — plain dark bg, NO backdrop-filter (it breaks drawer visibility) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
}
.nav-overlay.visible { display: block; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: 156px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(ellipse at 70% 20%, rgba(121,100,255,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(121,100,255,0.04) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  color: var(--purple);
  border: 1px solid var(--purple-mid);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: 3.6rem;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--dark2);
}
.trust-item span {
  font-size: 0.75rem;
  color: var(--text);
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(46,51,70,0.1);
  transform: perspective(1000px) rotateY(-12deg) rotateX(6deg);
  transition: var(--ease);
}
.hero-visual:hover .dashboard-card {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.dash-dots { display: flex; gap: 5px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-red    { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #27C93F; }
.dash-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}
.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.metric-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.metric-label { font-size: 0.7rem; color: var(--text); }
.metric-value { font-size: 1.2rem; font-weight: 800; color: var(--dark2); }
.metric-up { font-size: 0.68rem; font-weight: 600; color: var(--green); }
.dash-chart {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.anim-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPath 3s ease forwards infinite;
}
@keyframes drawPath { to { stroke-dashoffset: 0; } }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 12px 32px rgba(46,51,70,0.12);
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 130px;
  animation: floatAnim 5s ease-in-out infinite;
  z-index: 10;
}
.float-badge strong { font-size: 1.05rem; font-weight: 800; color: var(--dark2); }
.fb-platform { font-size: 0.72rem; font-weight: 700; }
.fb-sub { font-size: 0.68rem; color: var(--green); font-weight: 600; }

.float-top-right  { top: 8%;  right: -5%; animation-delay: 0s; }
.float-bottom-left  { bottom: 18%; left: -6%; animation-delay: 1.8s; }
.float-bottom-right { bottom: -2%; right: 10%; animation-delay: 3.5s; }

@keyframes floatAnim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}


/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px 20px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--purple);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--purple);
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple);
}
.stat-text { font-size: 2rem; }
.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark2);
  margin-top: 6px;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--text);
  margin-top: 4px;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--grad-purple);
  transition: var(--ease);
  border-radius: 0 0 3px 3px;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); border-color: rgba(121,100,255,0.2); }
.service-card:hover::after { height: 100%; }
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: var(--ease);
}
.service-card:hover .svc-icon { background: var(--purple); color: var(--white); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.88rem; color: var(--text); line-height: 1.6; }


/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.funnel-svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(121,100,255,0.15));
}
.why-content h2 {
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.why-desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 36px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.feature-card {
  display: flex;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--purple);
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.feature-card h4 { font-size: 0.95rem; margin-bottom: 5px; }
.feature-card p  { font-size: 0.82rem; color: var(--text); line-height: 1.5; }


/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 12px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; width: 76%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--ease);
}
.process-step:hover .step-num {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--purple-light);
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 22px 18px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p  { font-size: 0.84rem; color: var(--text); line-height: 1.6; }


/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.case-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.case-wide { grid-column: span 2; }
.case-preview {
  background: #F1F3F9;
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.case-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 340px;
  transition: var(--ease);
}
.case-card:hover .case-mockup { transform: scale(1.02) translateY(-3px); }
.mockup-bar {
  height: 26px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-body { padding: 20px; }
.case-info { padding: 22px 24px; }
.case-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.case-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
.case-info p  { font-size: 0.88rem; color: var(--text); line-height: 1.6; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.quote {
  font-size: 4rem;
  color: var(--purple-light);
  line-height: 0.8;
  font-family: Georgia, serif;
  margin-bottom: 14px;
  color: var(--purple);
  opacity: 0.3;
}
.testi-card p {
  font-size: 1rem;
  color: var(--dark2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 500;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--dark2); }
.testi-author span   { font-size: 0.8rem; color: var(--text); }


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--ease);
}
.faq-item.open { border-color: var(--purple); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--purple);
  flex-shrink: 0;
  transition: var(--ease-fast);
  font-weight: 400;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-ans {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-ans p { font-size: 0.93rem; color: var(--text); line-height: 1.7; }


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(121,100,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121,100,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-block;
  background: rgba(121,100,255,0.15);
  color: #B8ADFF;
  border: 1px solid rgba(121,100,255,0.25);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.final-cta h2 {
  color: var(--white);
  font-size: 3rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.final-cta p {
  color: #A3A8BA;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1F2230;
  color: var(--white);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand p {
  color: #A3A8BA;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #A3A8BA;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease-fast);
}
.social-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a,
.footer-col ul li span {
  color: #A3A8BA;
  font-size: 0.88rem;
  transition: var(--ease-fast);
}
.footer-col ul li a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #6B7280; font-size: 0.84rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #6B7280; font-size: 0.84rem; }
.footer-links a:hover { color: var(--purple); }


/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--ease);
  border: 2px solid rgba(255,255,255,0.25);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55);
  color: var(--white);
}


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .why-visual { display: none; }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before { display: none; }
}


/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* ---- HEADER ---- */
  .nav-container {
    height: 66px;
    padding: 0 16px;
  }
  .logo img { height: 44px; }

  /* Hide desktop nav and desktop CTA on mobile */
  .desktop-nav { display: none; }
  .desktop-cta { display: none; }

  /* Show burger */
  .burger-btn { display: flex; }

  /* ---- HERO ---- */
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-desc { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-badge { font-size: 0.75rem; }

  /* Dashboard visual on mobile */
  .dashboard-card {
    max-width: 100%;
    transform: none;
  }
  .hero-visual:hover .dashboard-card { transform: none; }
  .float-badge { display: none; } /* Hide on small screens to avoid overflow */

  /* ---- STATS ---- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-card { padding: 22px 14px; }
  .stat-number { font-size: 2.2rem; }

  /* ---- SERVICES ---- */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 22px; }

  /* ---- SECTION HEADING ---- */
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.8rem; }

  /* ---- PROCESS ---- */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-grid::before { display: none; }

  /* ---- CASES ---- */
  .cases-grid { grid-template-columns: 1fr; }
  .case-wide  { grid-column: span 1; }

  /* ---- TESTIMONIALS ---- */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 26px; }

  /* ---- WHY ---- */
  .features-grid { grid-template-columns: 1fr; }
  .why-content h2 { font-size: 1.8rem; }

  /* ---- CTA ---- */
  .final-cta { padding: 72px 0; }
  .final-cta h2 { font-size: 2rem; }
  .final-cta p { font-size: 1rem; }
  .btn-cta { padding: 14px 28px; font-size: 0.96rem; }

  /* ---- FOOTER ---- */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ---- WHATSAPP ---- */
  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }
  .wa-float span { display: none; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .section-head h2 { font-size: 1.6rem; }
  .final-cta h2 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
}
