/* ═══════════════════════════════════════════════
   Header
   ═══════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(5, 19, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(5, 19, 42, 0.95);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: var(--shadow-glow-blue);
}
.site-logo:hover { color: white; }

.main-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a {
  padding: 8px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav .current-menu-item a { color: white; background: rgba(255,255,255,0.08); }

.mobile-toggle {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 12px;
  color: white;
  font-size: 20px;
}

/* Body padding for fixed header */
.site-content { padding-top: 76px; }

/* ═══════════════════════════════════════════════
   Section 01: Hero
   ═══════════════════════════════════════════════ */

.hero-section {
  background: var(--grad-hero);
  color: white;
  padding: 90px 24px 110px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 15%, rgba(34,211,238,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,122,26,0.15) 0%, transparent 45%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, auto, 60px 60px, 60px 60px;
  z-index: -1;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(34,211,238,0.14);
  border: 1px solid rgba(34,211,238,0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan-300);
  margin-bottom: 22px;
  backdrop-filter: blur(12px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 12px var(--cyan-300); }
.hero h1 { color: white; margin-bottom: 20px; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.trust-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* Hero visual cards */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  justify-self: end;
}
.glass-card {
  position: absolute;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  padding: 22px;
}
.glass-card.card-1 { top: 0; right: 0; width: 60%; }
.glass-card.card-2 { bottom: 0; left: 0; width: 65%; }
.glass-card.card-3 {
  top: 40%; right: 30%; width: 45%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  border-color: transparent;
  box-shadow: var(--shadow-glow-orange);
}
.card-label { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.card-value { font-family: var(--font-heading); font-size: 28px; font-weight: 900; margin-top: 4px; color: white; }
.card-value.big { font-size: 18px; }
.pulse-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(34,211,238,0.20);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--cyan-300);
  font-size: 22px;
}
.glass-card.card-3 .pulse-icon { background: rgba(255,255,255,0.20); color: white; }
.glass-card.card-3 .card-label { color: rgba(255,255,255,0.9); }

/* ═══════════════════════════════════════════════
   Section 02: Trusted By (Logo Marquee)
   ═══════════════════════════════════════════════ */

.trusted-section {
  padding: 40px 0;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}
.trusted-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--slate-500);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { right: 0; background: linear-gradient(to left, var(--slate-50), transparent); }
.marquee::after { left: 0; background: linear-gradient(to right, var(--slate-50), transparent); }
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  padding: 12px 24px;
  background: white;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--slate-500);
  border: 1px solid var(--slate-200);
  white-space: nowrap;
  font-size: 15px;
  transition: all 0.3s;
}
.marquee-item:hover { color: var(--navy-950); box-shadow: var(--shadow-md); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   Common Section Wrapper
   ═══════════════════════════════════════════════ */

.section {
  padding: 90px 0;
  position: relative;
}
.section-alt { background: var(--slate-50); }

.section-head { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(30,108,255,0.10);
  border: 1px solid rgba(30,108,255,0.22);
  color: var(--blue-500);
  font-size: 13px; font-weight: 800;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}
.section-title { margin-bottom: 14px; }
.section-lede {
  font-size: 17px;
  color: var(--slate-700);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   Section 03: Pain Points
   ═══════════════════════════════════════════════ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,108,255,0.30);
}
.pain-card .num {
  position: absolute;
  top: 20px; left: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 44px;
  font-weight: 700;
  color: rgba(30,108,255,0.08);
  line-height: 1;
}
.pain-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  max-width: 80%;
  line-height: 1.4;
}
.pain-card p { margin: 0; font-size: 14.5px; color: var(--slate-700); line-height: 1.75; }

/* ═══════════════════════════════════════════════
   Section 04: Services Grid
   ═══════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--grad-accent);
  opacity: 0.06;
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: all 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,108,255,0.30);
}
.service-card:hover::before {
  transform: translate(30%, -30%) scale(1.3);
  opacity: 0.10;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--grad-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 16px;
  box-shadow: var(--shadow-glow-blue);
  font-size: 26px;
}
.service-title { font-size: 18px; margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--slate-700); margin: 0 0 14px; line-height: 1.7; }
.service-link {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { color: var(--orange-500); gap: 10px; }

/* ═══════════════════════════════════════════════
   Section 05: Process Timeline
   ═══════════════════════════════════════════════ */

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-right: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  right: 15px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-500), var(--cyan-400));
}
.timeline-step {
  position: relative;
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.timeline-step:hover { transform: translateX(-4px); box-shadow: var(--shadow-md); }
.timeline-step::before {
  content: '';
  position: absolute;
  right: -22px;
  top: 30px;
  width: 16px; height: 16px;
  background: white;
  border: 3px solid var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(30,108,255,0.15);
}
.timeline-step .step-num {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-accent);
  color: white;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}
.timeline-step h4 { font-size: 18px; margin-bottom: 8px; }
.timeline-step p { margin: 0; font-size: 14.5px; color: var(--slate-700); line-height: 1.75; }

/* ═══════════════════════════════════════════════
   Section 06: Stats Break (Parallax-like)
   ═══════════════════════════════════════════════ */

.stats-section {
  background: var(--grad-hero);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,211,238,0.15), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,122,26,0.12), transparent 50%);
  z-index: -1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat-glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; opacity: 0.75; font-weight: 700; }

/* ═══════════════════════════════════════════════
   Section 07: FAQ
   ═══════════════════════════════════════════════ */

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.faq-item:hover { border-color: rgba(30,108,255,0.30); }
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--navy-950);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--blue-500);
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--orange-500); }
.faq-answer {
  padding-top: 14px;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════════
   Section 08: Final CTA
   ═══════════════════════════════════════════════ */

.final-cta {
  background: var(--grad-hero);
  color: white;
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(30,108,255,0.20), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,122,26,0.20), transparent 50%);
  z-index: -1;
}
.final-cta h2 { color: white; margin-bottom: 14px; }
.final-cta p { font-size: 17px; max-width: 640px; margin: 0 auto 30px; opacity: 0.85; line-height: 1.8; }

/* ═══════════════════════════════════════════════
   WhatsApp Float Button
   ═══════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: all 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

/* ═══════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════ */

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(30,108,255,0.12), transparent 60%);
}
.site-footer > * { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: white; margin-bottom: 12px; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 320px; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; font-size: 13.5px; }
.footer-col a { color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--cyan-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 360px; margin: 0 auto; justify-self: center; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(5, 19, 42, 0.98);
    backdrop-filter: blur(14px);
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { display: block; padding: 12px 14px; }
  .section { padding: 60px 0; }
  .hero-section { padding: 60px 20px 80px; }
  .timeline { padding-right: 24px; }
  .timeline-step::before { right: -18px; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 34px; }
}
