/* ============================================================
   Meta Lead Generation Services | AS Digital Technologies
   style.css — Version 1.0.0
   Design: Premium SaaS / Glassmorphism
============================================================ */

/* ===================== CSS CUSTOM PROPERTIES ===================== */
:root {
  /* Brand Colors */
  --clr-primary:     #0A4BFF;
  --clr-primary-dark:#0038CC;
  --clr-primary-light:#EEF3FF;
  --clr-navy:        #081B4B;
  --clr-accent:      #FFB000;
  --clr-accent-light:#FFF7E6;
  --clr-green:       #16A34A;
  --clr-green-light: #DCFCE7;
  --clr-red:         #EF4444;
  --clr-whatsapp:    #25D366;
  --clr-whatsapp-dark:#128C7E;

  /* Neutrals */
  --clr-bg:          #F7F9FC;
  --clr-white:       #FFFFFF;
  --clr-text:        #111827;
  --clr-text-muted:  #6B7280;
  --clr-text-light:  #9CA3AF;
  --clr-border:      #E5E9F2;
  --clr-border-light:#F1F3F8;

  /* Typography */
  --font-heading:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(10,75,255,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:  0 4px 12px rgba(10,75,255,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-md:  0 8px 24px rgba(10,75,255,.10), 0 4px 8px rgba(0,0,0,.06);
  --shadow-lg:  0 16px 48px rgba(10,75,255,.12), 0 8px 16px rgba(0,0,0,.08);
  --shadow-xl:  0 24px 64px rgba(10,75,255,.14), 0 12px 24px rgba(0,0,0,.10);

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Spacing */
  --space-section: 100px;

  /* Transitions */
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav */
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

blockquote { quotes: none; }

/* ===================== CONTAINER ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: none;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
  border-radius: inherit;
}
.btn:active::after { background: rgba(255,255,255,0.15); }

.btn-sm  { padding: 9px 20px;  font-size: 0.875rem; }
.btn-md  { padding: 12px 28px; font-size: 0.9375rem; }
.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Primary */
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(10,75,255,.35);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,75,255,.45);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1.5px solid var(--clr-border);
}
.btn-ghost:hover {
  background: var(--clr-white);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: var(--clr-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

/* Glow variant */
.btn-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(10,75,255,.35); }
  50%       { box-shadow: 0 4px 32px rgba(10,75,255,.65), 0 0 0 6px rgba(10,75,255,.1); }
}

/* ===================== SECTION UTILITIES ===================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== GLASS CARD ===================== */
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-md);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

.animate-fade-up    { opacity: 0; }
.animate-slide-left { opacity: 0; }
.animate-slide-right{ opacity: 0; }

.animate-fade-up.visible     { animation: fadeUp   0.65s ease forwards; }
.animate-slide-left.visible  { animation: slideLeft  0.65s ease forwards; }
.animate-slide-right.visible { animation: slideRight 0.65s ease forwards; }

.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #4f8aff 60%, #0038CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border-light);
  transition: var(--transition);
}

.nav-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { flex-shrink: 0; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--clr-navy);
}

.logo-accent { color: var(--clr-primary); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--clr-primary); }
.nav-link:hover::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.2s ease;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }

.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border-light);
  transition: var(--transition-fast);
}
.mobile-link:hover { color: var(--clr-primary); padding-left: 8px; }

.mobile-cta { display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   1. HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f4ff 0%, var(--clr-bg) 50%, #f7f5ff 100%);
}

/* Grid pattern */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,75,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,75,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 100%);
}

/* Glow blob */
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10,75,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-primary-light);
  color: var(--clr-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* Hero Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--clr-navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subheading {
  font-size: 1.0625rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Offer Card */
.offer-card {
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255,255,255,0.85);
}

.offer-badge {
  background: linear-gradient(135deg, var(--clr-primary), #4f8aff);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.offer-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-navy);
}

.offer-tax {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.offer-includes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: auto;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-green);
  background: var(--clr-green-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* Floating Stat Cards */
.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.card-leads {
  bottom: 32px;
  left: -28px;
  animation-delay: 0s;
}

.card-roi {
  top: 40px;
  right: -24px;
  animation-delay: 2s;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================================
   2. TRUST BAR
============================================================ */
.trust-bar {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border-light);
  border-bottom: 1px solid var(--clr-border-light);
  padding: 36px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 40px;
  text-align: center;
}

.trust-card-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}

.trust-card-label {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* ============================================================
   3. SERVICES (WHAT YOU GET)
============================================================ */
.services {
  padding: var(--space-section) 0;
  background: var(--clr-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  cursor: default;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,75,255,0.15);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--clr-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--clr-primary);
  color: white;
  transform: scale(1.08);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

/* ============================================================
   4. WHY CHOOSE US
============================================================ */
.why-us {
  padding: var(--space-section) 0;
  background: var(--clr-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.why-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-image-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-navy);
}

.why-content .section-badge { margin-bottom: 12px; }
.why-content .section-title { text-align: left; margin-bottom: 12px; }
.why-content .section-subtitle { text-align: left; margin: 0 0 32px; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border-light);
}
.why-item:last-child { border-bottom: none; }

.why-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--clr-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: 3px;
}

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

/* ============================================================
   5. HOW IT WORKS
============================================================ */
.how-it-works {
  padding: var(--space-section) 0;
  background: var(--clr-bg);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(10,75,255,.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-number.last { background: var(--clr-accent); box-shadow: 0 4px 14px rgba(255,176,0,.35); }

.step-line {
  width: 2px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(to bottom, var(--clr-primary), rgba(10,75,255,0.15));
  margin: 4px 0;
}

.timeline-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 20px;
  flex: 1;
  transition: var(--transition);
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(10,75,255,0.15);
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 8px;
}

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

/* ============================================================
   6. COMPARISON TABLE
============================================================ */
.comparison {
  padding: var(--space-section) 0;
  background: var(--clr-white);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border-light);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comparison-table thead th {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  background: var(--clr-bg);
  border-bottom: 2px solid var(--clr-border);
}

.comparison-table .col-us {
  background: rgba(10,75,255,0.04);
  color: var(--clr-primary);
}

.comparison-table .col-other {
  color: var(--clr-text-muted);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--clr-border-light);
  transition: var(--transition-fast);
}

.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--clr-bg); }

.comparison-table td {
  padding: 16px 24px;
  font-size: 0.9375rem;
  vertical-align: middle;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--clr-navy);
}

.comparison-table .col-other {
  color: var(--clr-text-muted);
}

.comparison-table .col-us {
  background: rgba(10,75,255,0.03);
  color: var(--clr-green);
  font-weight: 600;
}

.comparison-table td svg { vertical-align: middle; margin-right: 6px; }

/* ============================================================
   7. TESTIMONIALS
============================================================ */
.testimonials {
  padding: var(--space-section) 0;
  background: linear-gradient(160deg, #f0f4ff 0%, var(--clr-bg) 100%);
}

.testimonial-slider-wrap {
  position: relative;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: var(--transition-slow);
}

/* Show only 3 at a time via JS — cards hidden by default on mobile */
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: var(--transition);
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.test-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #4f8aff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.test-avatar span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.test-meta { flex: 1; }

.test-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--clr-navy);
  margin-bottom: 2px;
}

.test-company {
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

.test-logo {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--clr-primary);
  background: var(--clr-primary-light);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.test-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.test-review {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-style: normal;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text);
  transition: var(--transition);
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--clr-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================================
   8. FAQ
============================================================ */
.faq {
  padding: var(--space-section) 0;
  background: var(--clr-white);
}

.faq-container { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(10,75,255,0.2);
  box-shadow: var(--shadow-sm);
  background: var(--clr-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-navy);
  transition: var(--transition-fast);
}

.faq-question:hover { color: var(--clr-primary); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  color: var(--clr-text-muted);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--clr-primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

/* ============================================================
   9. FINAL CTA
============================================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--clr-navy);
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(10,75,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(79,138,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-container {
  position: relative;
  z-index: 1;
}

.final-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-white);
  margin: 16px 0 16px;
  line-height: 1.15;
}

.final-cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-offer-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
  margin-bottom: 36px;
}

.final-offer-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.final-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--clr-white);
}

.final-gst {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.final-offer-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.final-trust .trust-item {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   10. FOOTER
============================================================ */
.footer {
  background: #050f2e;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-text { color: white; }
.footer-logo .logo-accent { color: var(--clr-accent); }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--clr-whatsapp);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  transition: var(--transition-fast);
}

.footer-link:hover { color: white; padding-left: 4px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
}

.footer-contact li a { color: rgba(255,255,255,0.65); }
.footer-contact li a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal .footer-link { font-size: 0.875rem; }

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 900;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--clr-whatsapp-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--clr-navy);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--clr-navy);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   MOBILE STICKY CTA BAR
============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 800;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
}

.sticky-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sticky-amount {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-navy);
}

.sticky-gst {
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --space-section: 80px; }

  .hero-container { gap: 40px; }
  .hero-headline { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { gap: 48px; }

  .testimonial-slider { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-card { padding: 0 20px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --space-section: 64px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-headline { font-size: clamp(1.625rem, 6vw, 2.25rem); }
  .hero-subheading { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .offer-includes { margin-left: 0; }

  .hero-image { height: 280px; }
  .card-leads { left: 0; bottom: 20px; }
  .card-roi  { right: 0; top: 20px; }

  /* Trust bar */
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .trust-divider { display: none; }
  .trust-card { padding: 12px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-content .section-title,
  .why-content .section-subtitle { text-align: center; }
  .why-content .section-badge { display: block; text-align: center; }
  .why-image { height: 280px; }
  .why-image-badge { right: 0; bottom: -14px; font-size: 0.8125rem; padding: 10px 14px; }

  /* Testimonials */
  .testimonial-slider { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { display: flex; }

  /* WhatsApp float above sticky bar */
  .whatsapp-float { bottom: 88px; }

  /* Final CTA */
  .final-offer-card { padding: 20px 28px; }
  .final-amount { font-size: 2.25rem; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .final-cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons .btn-lg { padding: 13px 24px; font-size: 0.9375rem; width: 100%; justify-content: center; }
  .offer-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .comparison-table td, .comparison-table th { padding: 12px 16px; font-size: 0.875rem; }
}

/* ============================================================
   RAZORPAY PAYMENT BUTTON — STYLE OVERRIDES
   The Razorpay script injects a <button> inside each <form>.
   We override its default styling to match the site design.
============================================================ */

/* Base form reset */
.rzp-form {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Razorpay injects a button — target it globally */
.rzp-form button,
.rzp-form .razorpay-payment-button {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  border: none !important;
  outline: none !important;
  position: relative !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ---- NAV variant (small) ---- */
.rzp-form--nav button,
.rzp-form--nav .razorpay-payment-button {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  padding: 9px 20px !important;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 16px rgba(10,75,255,.35) !important;
}
.rzp-form--nav button:hover,
.rzp-form--nav .razorpay-payment-button:hover {
  background: var(--clr-primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(10,75,255,.45) !important;
}

/* ---- HERO variant (large) ---- */
.rzp-form--hero button,
.rzp-form--hero .razorpay-payment-button {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  padding: 15px 36px !important;
  font-size: 1rem !important;
  box-shadow: 0 4px 16px rgba(10,75,255,.35) !important;
}
.rzp-form--hero button:hover,
.rzp-form--hero .razorpay-payment-button:hover {
  background: var(--clr-primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(10,75,255,.45) !important;
}

/* ---- FINAL CTA variant (large + glow pulse) ---- */
.rzp-form--cta button,
.rzp-form--cta .razorpay-payment-button {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  padding: 15px 36px !important;
  font-size: 1rem !important;
  animation: pulse-glow 2.5s ease-in-out infinite !important;
}
.rzp-form--cta button:hover,
.rzp-form--cta .razorpay-payment-button:hover {
  background: var(--clr-primary-dark) !important;
  transform: translateY(-2px) !important;
}

/* ---- MOBILE STICKY variant ---- */
.rzp-form--sticky {
  flex: 1;
}
.rzp-form--sticky button,
.rzp-form--sticky .razorpay-payment-button {
  width: 100% !important;
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  padding: 12px 20px !important;
  font-size: 0.9375rem !important;
  box-shadow: 0 4px 16px rgba(10,75,255,.35) !important;
}
.rzp-form--sticky button:hover,
.rzp-form--sticky .razorpay-payment-button:hover {
  background: var(--clr-primary-dark) !important;
}

/* ============================================================
   PRINT STYLES
============================================================ */
@media print {
  .nav-header, .whatsapp-float, .mobile-sticky-bar, .final-cta { display: none !important; }
  body { background: white; }
}
