:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface2: #f1f5f9;
  --primary: #0f172a;
  --accent: #2563eb;
  --accent2: #7c3aed;
  --accent3: #10b981;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --glow: 0 10px 30px -10px rgba(37, 99, 235, 0.2);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --accent-glow: rgba(37, 99, 235, 0.15);
  --gradient-primary: linear-gradient(135deg, #2563eb, #7c3aed);
  --gradient-accent: linear-gradient(135deg, #06b6d4, #2563eb);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.2);
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

/* ─── TOPBAR ─── */
.topbar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0;
  font-size: 0.85rem;
  color: #94a3b8;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (max-width: 768px) {
  .topbar { padding: 4px 0; }
  .topbar-social { display: none; }
  .topbar-contact { gap: 12px; font-size: 0.75rem; justify-content: center; width: 100%; }
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 37px;
  z-index: 999;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.scrolled { 
  top: 0; 
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1); 
  background: #fff;
  height: 70px;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: height 0.3s ease;
}
nav.scrolled .nav-inner { height: 70px; }
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.logo-text { color: var(--primary); }
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}
.nav-links li { position: relative; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 18px;
  display: block;
  transition: all 0.2s;
  border-radius: 8px;
}
.nav-links a:hover { color: var(--accent); background: var(--surface2); }
.nav-links .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.dropdown a {
  padding: 10px 16px;
  font-size: 0.9rem;
}
.dropdown a:hover { background: var(--surface2); color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  margin-left: 16px;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ─── MOBILE NAV MENU ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--surface2);
  padding-bottom: 10px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}

/* ─── HERO ─── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 32px;
  background: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent);
  opacity: 0.2;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 100px;
  padding: 8px 20px 8px 12px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px -10px rgba(37, 99, 235, 0.5);
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.6); 
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}
.btn-outline:hover { 
  background: var(--surface2); 
  border-color: var(--accent); 
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}
.floating-badge.top-right { top: -20px; right: -20px; }
.fb-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.fb-icon.green { background: #ecfdf5; color: #10b981; }
.fb-text-main { font-weight: 700; color: var(--primary); font-size: 1rem; }
.fb-text-sub { font-size: 0.8rem; color: var(--muted); }

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

/* Hero Visual */
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.card-dot:nth-child(1) { background: #ff5f56; }
.card-dot:nth-child(2) { background: #ffbd2e; }
.card-dot:nth-child(3) { background: #27c93f; }

.card-title {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.metric-box {
  background: var(--surface2);
  border-radius: 16px;
  padding: 24px;
}
.metric-box-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }
.metric-box-val { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); }

.uptime-bar-wrap { margin-top: 24px; }
.uptime-bar-label { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--text); margin-bottom: 8px; font-weight: 600; }
.uptime-bar { background: var(--border); border-radius: 100px; height: 8px; overflow: hidden; }
.uptime-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  transform-origin: left;
}

/* ─── SECTION BASE ─── */
section { padding: 120px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 650px;
  line-height: 1.6;
}
.section-head { margin-bottom: 80px; }

/* ─── SERVICES ─── */
.services-section { background: var(--surface2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.1);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  background: #f1f5f9;
  color: var(--accent);
}
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}
.service-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  margin-top: 24px;
  font-weight: 600;
}

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.process-step {
  text-align: left;
}
.process-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.process-step:hover .process-num { color: var(--accent); }
.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
.process-step p { font-size: 1rem; color: var(--muted); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.about-map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.map-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.about-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}
.about-list li::before {
  content: '✓';
  color: var(--accent3);
  font-weight: 900;
  background: #ecfdf5;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--primary); padding: 80px 32px; color: #fff; }
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat-cell { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.stats-strip .stat-num, .cta-box .stat-num { color: #fff; }
.stat-label { font-size: 1rem; color: #94a3b8; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── CTA ─── */
.cta-section { background: #fff; }
.cta-box {
  background: var(--primary);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-box .section-title { color: #fff; }
.cta-box .section-sub { color: #94a3b8; margin: 0 auto 48px; }

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

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-info-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.contact-info-label { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; font-weight: 700; text-transform: uppercase; }
.contact-info-val { font-size: 1.1rem; color: var(--primary); font-weight: 600; }
.contact-info-val a { color: inherit; text-decoration: none; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-size: 0.9rem; color: var(--primary); margin-bottom: 10px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--primary);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 24px;
}

.form-submit:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
}

/* ─── FOOTER ─── */
footer {
  background: #0f172a;
  padding: 100px 32px 40px;
  color: #94a3b8;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 80px;
}
.footer-brand p { margin-top: 24px; line-height: 1.6; font-size: 1rem; }
.footer-col h4 { color: #fff; font-family: 'Outfit', sans-serif; font-size: 1.1rem; margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

footer .logo-text { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

/* ─── INNER HERO ─── */
.inner-hero {
  padding: 140px 32px 100px;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 40%);
  z-index: 0;
}
.inner-hero .section-inner { position: relative; z-index: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-box { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 24px; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-buttons { flex-direction: column; width: 100%; }
}

/* ─── ACCESSIBILITY ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── TECH MARQUEE ─── */
.tech-marquee-outer {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.tech-marquee {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.tech-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.tech-chip span {
  font-size: 1.2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
}

#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTop:hover {
  background: #1d4ed8;
  transform: translateY(-5px);
}

.faq-item.active .faq-content {
  max-height: 200px !important;
}

.faq-item.active [data-lucide="chevron-down"] {
  transform: rotate(180deg);
}

.faq-item [data-lucide="chevron-down"] {
  transition: transform 0.3s ease;
}

@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.5; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
