/* ============================================================
   AutoAssist Systems — Static Site Stylesheet
   ============================================================ */

/* Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #0f172a;
  --fg: #f8fafc;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: rgba(37,99,235,0.33); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(37,99,235,0.6); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
p { line-height: 1.7; }

/* ── Layout Utilities ── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Grid ── */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-6 { grid-template-columns: repeat(6, 1fr); gap: 1rem; }

/* ── Flex ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ── Spacing ── */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

/* ── Text ── */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ── Borders & Radius ── */
.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border { border: 1px solid rgba(255,255,255,0.08); }

/* ── Colors ── */
.text-white { color: #fff; }
.text-slate-300 { color: var(--slate-300); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-blue-400 { color: var(--blue-400); }
.text-blue-500 { color: var(--blue-500); }
.text-cyan-400 { color: var(--cyan-400); }

/* ── Glass ── */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-warm {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 60%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shine text ── */
@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shine-text {
  background: linear-gradient(90deg, #60a5fa 0%, #22d3ee 25%, #ffffff 50%, #22d3ee 75%, #60a5fa 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 4s linear infinite;
}

/* ── Glow ── */
.glow-blue { box-shadow: 0 0 30px rgba(37,99,235,0.2), 0 0 60px rgba(37,99,235,0.1); }

/* ── Grid BG ── */
.grid-bg {
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── Hero Glow ── */
.bg-hero-glow {
  background: radial-gradient(ellipse 90% 70% at 50% -5%, rgba(37,99,235,0.28), rgba(6,182,212,0.08) 60%, transparent 100%);
}

/* ── Animated border ── */
@keyframes border-animate {
  0%,100% { border-color: rgba(37,99,235,0.3); }
  50% { border-color: rgba(8,145,178,0.5); }
}
.animated-border { animation: border-animate 3s ease-in-out infinite; }

/* ── Fade-in animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-in { animation: fadeIn 0.6s ease both; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Scroll-triggered animations */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-delay="400"] { transition-delay: 0.4s; }
[data-aos][data-delay="500"] { transition-delay: 0.5s; }
[data-aos][data-delay="600"] { transition-delay: 0.6s; }

/* ── Pulse float animation ── */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0.25rem 0;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,16,32,0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.3);
}
.navbar .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo img { height: 4rem; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-300);
  transition: all 0.2s;
  border: 1px solid transparent;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link.active {
  color: #fff;
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }


.btn-primary {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #fff;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  letter-spacing: 0.01em;
}
.btn-primary:hover { opacity: 0.93; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.45), inset 0 1px 0 rgba(255,255,255,0.12); }

.btn-secondary {
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.05);
  color: var(--slate-200);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid rgba(255,255,255,0.13);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.22); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--slate-300);
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: currentColor; border-radius: 1px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(15,23,42,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { display: block; padding: 0.75rem 1rem; font-size: 1rem; }
.mobile-nav .btn-primary { width: 100%; text-align: center; margin-top: 0.5rem; padding: 0.75rem; }

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.3);
  color: #93c5fd;
  box-shadow: 0 0 12px rgba(37,99,235,0.1);
}
.badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 6px #60a5fa;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 1rem 0 1.25rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.section-heading p {
  color: var(--slate-400);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,1) 0%, rgba(15,23,42,0.98) 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
}
.hero-text {}
.hero-badge { margin-bottom: 1.5rem; }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  color: var(--slate-400);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 30rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-ctas .btn-primary { padding: 0.85rem 1.75rem; font-size: 1rem; }
.hero-ctas .btn-secondary { padding: 0.85rem 1.75rem; font-size: 1rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--slate-400);
}
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

/* Hero stats bar */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem;
  border-radius: 1rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.hero-stat {
  padding: 1.25rem 1rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; color: var(--slate-400);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 0.25rem; display: block;
}

/* Hero illustration */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-illustration-wrap {
  background: rgba(15,23,42,0.6);
  border-radius: 1.5rem;
  border: 1px solid rgba(37,99,235,0.1);
  padding: 1.5rem;
  width: 100%; max-width: 32rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,0.45);
  box-shadow: 0 24px 64px rgba(37,99,235,0.18), 0 0 0 1px rgba(37,99,235,0.18), inset 0 1px 0 rgba(255,255,255,0.07);
  background: rgba(37,99,235,0.04);
}
.feature-icon {
  width: 3rem; height: 3rem; border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.35rem;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; margin-bottom: 1rem; }
.feature-link {
  font-size: 0.8rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: gap 0.2s;
}
.feature-link:hover { gap: 0.5rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute; top: 2rem; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(37,99,235,0.3), rgba(8,145,178,0.3), transparent);
  z-index: 0;
}
.how-step { position: relative; z-index: 1; text-align: center; }
.how-step-num {
  width: 4rem; height: 4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900;
  margin: 0 auto 1.25rem;
  border: 2px solid;
  position: relative;
}
.how-step-num::after {
  content: attr(data-num);
  position: absolute; top: -0.5rem; right: -0.5rem;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
}
.how-step h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.how-step p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.6; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: 0 8px 32px rgba(37,99,235,0.1), inset 0 1px 0 rgba(255,255,255,0.07); }
.stat-card .stat-num {
  font-size: 2.5rem; font-weight: 900;
  line-height: 1; margin-bottom: 0.35rem;
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--slate-400); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.testimonial-card:hover { border-color: rgba(37,99,235,0.35); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(37,99,235,0.12), inset 0 1px 0 rgba(255,255,255,0.07); }
.stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.star { color: var(--amber-400); font-size: 0.9rem; }
.testimonial-quote { color: var(--slate-300); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem; color: #fff;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: #fff; }
.author-role { font-size: 0.75rem; color: var(--slate-500); }
.author-metric { margin-left: auto; text-align: right; }
.metric-num { font-weight: 800; font-size: 1.1rem; }
.metric-label { font-size: 0.7rem; color: var(--slate-400); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(30,58,138,0.5) 0%, rgba(15,23,42,1) 45%, rgba(22,78,99,0.35) 100%);
  border-top: 1px solid rgba(37,99,235,0.25);
  border-bottom: 1px solid rgba(37,99,235,0.25);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(37,99,235,0.1), transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-section p { color: var(--slate-400); max-width: 40rem; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.cta-trust span { font-size: 0.8rem; color: var(--slate-400); display: flex; align-items: center; gap: 0.3rem; }
.check-icon { color: var(--green-400); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080f1d;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 22rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--slate-400); transition: all 0.2s; font-size: 0.85rem;
}
.social-btn:hover { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.4); color: var(--blue-400); }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--slate-400); margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.875rem; color: var(--slate-400); }
.footer-contact-item a:hover { color: var(--blue-400); }
.footer-cta { margin-top: 1.25rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; color: var(--slate-500);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-row:last-child { border-bottom: none; }
.service-row.flip { direction: rtl; }
.service-row.flip > * { direction: ltr; }
.service-info .badge { margin-bottom: 1rem; }
.service-info h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin-bottom: 1rem; }
.service-info p { color: var(--slate-400); line-height: 1.7; margin-bottom: 1.5rem; font-size: 1rem; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1.5rem; }
.service-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--slate-300);
}
.service-feature .check { color: var(--green-400); font-size: 0.85rem; }
.service-visual {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1.25rem;
  padding: 0;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.pricing-card.popular {
  border-color: rgba(37,99,235,0.55);
  background: rgba(37,99,235,0.06);
  box-shadow: 0 0 60px rgba(37,99,235,0.2), 0 0 0 1px rgba(37,99,235,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #fff; font-size: 0.65rem; font-weight: 800;
  padding: 0.3rem 1rem; border-radius: 9999px; white-space: nowrap;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(37,99,235,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.pricing-tagline { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-amount {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 1.5rem;
}
.price-num { font-size: 2.75rem; font-weight: 900; color: #fff; line-height: 1; }
.price-period { font-size: 0.875rem; color: var(--slate-400); }
.pricing-features { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--slate-300);
  padding: 0.4rem 0;
}
.pricing-features li .check { color: var(--green-400); flex-shrink: 0; }

/* Add-ons */
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.addon-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem; padding: 1.25rem;
  transition: all 0.2s;
}
.addon-card:hover { border-color: rgba(37,99,235,0.3); }
.addon-card h4 { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.addon-card p { font-size: 0.8rem; color: var(--slate-400); margin-bottom: 0.75rem; }
.addon-price { font-size: 0.875rem; font-weight: 700; color: var(--blue-400); }

/* FAQ */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; font-weight: 600; color: #fff;
  background: none; border: none; cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue-400); }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--slate-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.875rem; color: var(--slate-400); line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-stat-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; padding: 1.25rem;
  text-align: center;
}
.about-stat-num { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 0.25rem; }
.about-stat-label { font-size: 0.75rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.05em; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.25rem; padding: 1.75rem; text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(37,99,235,0.3); box-shadow: 0 12px 40px rgba(37,99,235,0.1), inset 0 1px 0 rgba(255,255,255,0.07); }
.value-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.25rem;
}
.value-card h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8rem; color: var(--slate-400); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 48rem; margin: 0 auto; }
.team-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.5rem; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.team-card:hover { border-color: rgba(37,99,235,0.35); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(37,99,235,0.14), inset 0 1px 0 rgba(255,255,255,0.07); }
.team-photo { aspect-ratio: 1; overflow: hidden; max-height: 160px; width: 160px; margin: 1.25rem auto 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 1.25rem; text-align: center; }
.team-info h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.team-role { font-size: 0.8rem; color: var(--blue-400); font-weight: 600; margin-bottom: 0.5rem; }
.team-bio { font-size: 0.8rem; color: var(--slate-400); line-height: 1.6; margin-bottom: 0.75rem; }
.team-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.team-tag {
  font-size: 0.7rem; padding: 0.2rem 0.5rem; border-radius: 9999px;
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2); color: var(--blue-400);
}

.industries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.industry-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; padding: 1.25rem 0.75rem;
  text-align: center; transition: all 0.2s;
}
.industry-card:hover { border-color: rgba(37,99,235,0.3); transform: translateY(-4px); }
.industry-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.industry-card span { font-size: 0.75rem; font-weight: 600; color: var(--slate-400); display: block; }

/* About hero two-col */
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.mission-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--blue-500);
  background: rgba(37,99,235,0.07);
  border-radius: 0 0.5rem 0.5rem 0;
}
.mission-box p { font-size: 0.9rem; color: var(--slate-300); line-height: 1.7; font-style: italic; }
.mission-box strong { color: #fff; font-style: normal; display: block; margin-top: 0.5rem; font-size: 0.8rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
.contact-info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 0.875rem; padding: 1.25rem; text-align: center;
  transition: all 0.2s;
}
.contact-info-card:hover { border-color: rgba(37,99,235,0.3); }
.contact-info-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; font-size: 1.1rem;
}
.contact-info-value { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.contact-info-sub { font-size: 0.75rem; color: var(--slate-400); }

.contact-main { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.5rem; padding: 2.25rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.contact-form-wrap h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.contact-form-wrap p.sub { font-size: 0.875rem; color: var(--slate-400); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--slate-300); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--slate-500); }
.form-group select option { background: #1e293b; color: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 0.9rem;
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #fff; border-radius: 0.625rem;
  font-size: 0.95rem; font-weight: 700;
  border: none; cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
  letter-spacing: 0.01em;
}
.btn-submit:hover { opacity: 0.93; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.45), inset 0 1px 0 rgba(255,255,255,0.12); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success.show { display: block; }
.success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h4 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--slate-400); font-size: 0.875rem; }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; padding: 1.25rem;
  transition: border-color 0.2s;
}
.sidebar-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.sidebar-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.sidebar-card h4 { font-size: 0.9rem; font-weight: 700; color: #fff; }
.sidebar-card p { font-size: 0.8rem; color: var(--slate-400); line-height: 1.6; margin-bottom: 0.75rem; }
.sidebar-benefit {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.775rem; color: var(--slate-300); margin-bottom: 0.3rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900; color: #fff;
  margin: 1rem 0; letter-spacing: -0.02em;
}
.page-hero p {
  color: var(--slate-400); max-width: 38rem; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.7;
}

/* ============================================================
   COLOR UTILITIES for cards
   ============================================================ */
.c-blue   { color: var(--blue-400); }
.c-purple { color: #c084fc; }
.c-cyan   { color: var(--cyan-400); }
.c-amber  { color: var(--amber-400); }
.c-green  { color: var(--green-400); }
.c-pink   { color: #f472b6; }

.bg-blue-icon   { background: rgba(59,130,246,0.12); color: var(--blue-400); }
.bg-purple-icon { background: rgba(168,85,247,0.12); color: #c084fc; }
.bg-cyan-icon   { background: rgba(6,182,212,0.12);  color: var(--cyan-400); }
.bg-amber-icon  { background: rgba(245,158,11,0.12); color: var(--amber-400); }
.bg-green-icon  { background: rgba(34,197,94,0.12);  color: var(--green-400); }
.bg-pink-icon   { background: rgba(236,72,153,0.12); color: #f472b6; }

.border-blue   { border-left: 3px solid var(--blue-400) !important; }
.border-green  { border-left: 3px solid var(--green-400) !important; }
.border-purple { border-left: 3px solid #c084fc !important; }
.border-cyan   { border-left: 3px solid var(--cyan-400) !important; }

/* ============================================================
   SPINNER
   ============================================================ */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .stats-inner { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-primary { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-trust { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.flip { direction: ltr; }
  .service-features { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; max-width: 28rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 0; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
}
