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

/* ════════════════════════════════════════════════════════════
   IQ SOFTECH — Core PHP stylesheet
   Same palette, type, spacing and motion as the original design.
   ════════════════════════════════════════════════════════════ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #050508;
  color: #e8e8f0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
ul  { list-style: none; }
a   { text-decoration: none; }
button { font: inherit; }

.site-wrap { background: #050508; min-height: 100vh; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #050508; }
::-webkit-scrollbar-thumb { background: #2563eb40; border-radius: 2px; }

/* ── Typography scale ─────────────────────────────────────── */
.font-display { font-family: 'Plus Jakarta Sans', sans-serif; }
.font-mono    { font-family: 'JetBrains Mono', monospace; }

/* ── Spacing helpers ──────────────────────────────────────── */
.mt-18 { margin-top: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counter-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes border-glow {
  0%, 100% { border-color: rgba(37, 99, 235, 0.2); }
  50%      { border-color: rgba(37, 99, 235, 0.6); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-up   { animation: fade-up 0.8s cubic-bezier(0.16,1,0.3,1) forwards; }
.animate-fade-in   { animation: fade-in 1s ease forwards; }
.animate-slide-r   { animation: slide-right 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.animate-float     { animation: float-y 5s ease-in-out infinite; }
.animate-marquee   { animation: marquee 28s linear infinite; }
.animate-spin-slow { animation: spin-slow 12s linear infinite; }
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }
.anim-delay-4 { animation-delay: 0.6s; }

/* ── Gradient text ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass effect ─────────────────────────────────────────── */
.glass {
  background: rgba(14, 14, 24, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
}
.glass-blue {
  background: rgba(37,99,235,0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(37,99,235,0.18);
}

/* ── Utility Spacing & Padding Helpers ────────────────────── */
.p-32 { padding: 32px !important; }
.p-28 { padding: 28px !important; }
.p-24 { padding: 24px !important; }
.p-20 { padding: 20px !important; }
.p-16 { padding: 16px !important; }

.mb-48 { margin-bottom: 48px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-18 { margin-bottom: 18px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-14 { margin-bottom: 14px !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-8  { margin-bottom: 8px !important; }
.mb-4  { margin-bottom: 4px !important; }

.mt-32 { margin-top: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-18 { margin-top: 18px !important; }
.mt-12 { margin-top: 12px !important; }

.rounded-2xl { border-radius: 16px !important; }
.rounded-xl  { border-radius: 12px !important; }


/* ── Noise texture overlay ────────────────────────────────── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  flex-shrink: 0;
}
.brand-mark span { color: #fff; font-weight: 800; font-size: 0.9rem; }
.brand-mark--flat { box-shadow: none; }
.brand-full-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}



.main-nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 8px;
}
.nav-link:hover { color: #f1f5f9; }
.nav-link.is-active { background: rgba(255,255,255,0.06); color: #f1f5f9; }

/* ── Services Dropdown Menu (Exact Match to Screenshot) ────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown-arrow {
  display: inline-flex;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 310px;
  background: #090c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  transition-delay: 0.1s;
  z-index: 1000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Invisible bridge element so hover never breaks when moving mouse cursor down */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}


.nav-dropdown-item {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f1f5f9;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-dropdown-item:hover {
  color: #60a5fa;
  transform: translateX(4px);
}





.header-actions { display: flex; gap: 12px; align-items: center; }

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  transition: all 0.2s;
}
.btn-whatsapp:hover { background: rgba(34,197,94,0.14); border-color: rgba(34,197,94,0.3); }
.btn-whatsapp--sm { font-size: 0.78rem; border-color: rgba(34,197,94,0.12); }

.menu-toggle {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px;
  color: #e2e8f0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle .menu-icon-close { display: none; }
.menu-toggle.is-open .menu-icon-open  { display: none; }
.menu-toggle.is-open .menu-icon-close { display: inline-flex; }

.mobile-drawer {
  display: none;
  background: #0a0a14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px 28px;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer .nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  border-radius: 0;
  background: none;
}
.mobile-drawer .nav-link.is-active { color: #f1f5f9; background: none; }
.drawer-cta { margin-top: 20px; width: 100%; justify-content: center; }

/* ── Mobile Drawer Subnav List Fix ────────────────────────── */
.mobile-subnav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 12px 14px;
  margin: 4px 0 8px;
  border-left: 2px solid rgba(37, 99, 235, 0.4);
}
.mobile-subnav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.mobile-subnav-link:hover,
.mobile-subnav-link.is-active {
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.14);
}
.mobile-subnav-link .subnav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
}


/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(37,99,235,0.35);
  text-decoration: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(37,99,235,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; display: inline-flex; align-items: center; }
.btn-primary--block { width: 100%; justify-content: center; padding: 16px; font-size: 0.9rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 13px 24px;
  background: rgba(255,255,255,0.05);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn-ghost--wa {
  color: #22c55e;
  border-color: rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.06);
}
.btn-ghost--wa:hover {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.35);
}

/* ── Section label ────────────────────────────────────────── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #60a5fa;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.hero-bg-fade {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #050508 0%, rgba(5,5,8,0.5) 50%, #050508 100%);
}

.orb { position: absolute; z-index: 1; pointer-events: none; }
.orb-1 {
  top: 20%; left: 10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
}
.orb-2 {
  bottom: 15%; right: 5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 65%);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.hero-badge { margin-bottom: 28px; }
.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f8fafc;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #64748b;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat-v { font-size: 1.6rem; font-weight: 800; color: #f8fafc; }
.hero-stat-l { font-size: 0.75rem; color: #475569; font-weight: 500; }

.hero-visual { position: relative; height: 480px; }
.hero-card {
  position: absolute;
  top: 0; left: 5%; right: 0; bottom: 80px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.8) 0%, transparent 60%);
}
.live-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(5,5,8,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  display: inline-block;
}
.live-txt { font-size: 0.72rem; color: #e2e8f0; font-weight: 600; }

.metric-card {
  position: absolute;
  bottom: 20px; left: 0; right: 20%;
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.1);
}
.metric-label {
  font-size: 0.72rem;
  color: #475569;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.metric-value { font-size: 1.6rem; font-weight: 800; color: #f8fafc; }
.metric-delta { font-size: 0.8rem; color: #22c55e; font-weight: 600; }
.metric-bar {
  margin-top: 10px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.metric-bar span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 4px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #94a3b8;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.scroll-hint i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #94a3b8, transparent);
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════ */
.marquee-band {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  background: #07070e;
}
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0;  background: linear-gradient(to right, #050508, transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(to left,  #050508, transparent); }

.marquee-track { display: flex; gap: 0; width: max-content; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-item span { font-size: 0.8rem; font-weight: 600; color: #334155; letter-spacing: 0.05em; }
.marquee-item i    { color: #1e293b; font-size: 0.5rem; font-style: normal; }

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats-section {
  background: #07070e;
  padding: 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.04);
}
.stat-cell {
  border-right: 1px solid rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stat-inner { text-align: center; padding: 40px 20px; }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(135deg, #fff 30%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════════════════════
   GENERIC SECTION
   ════════════════════════════════════════════════════════════ */
.section { padding: 120px 32px; }
.section--alt { background: #07070e; }
.section--bordered {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section--bordered-top { border-top: 1px solid rgba(255,255,255,0.04); }

.container { max-width: 1280px; margin: 0 auto; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-head--center {
  display: block;
  text-align: center;
  margin-bottom: 80px;
}
.section-head--tight { margin-bottom: 64px; }
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-desc {
  max-width: 340px;
  color: #475569;
  line-height: 1.75;
  font-size: 0.95rem;
}
.section-desc--center { margin: 16px auto 0; }
.section-desc--wide   { max-width: 480px; }

.lead { color: #64748b; line-height: 1.8; font-size: 0.95rem; }

/* ════════════════════════════════════════════════════════════
   SERVICES — bento grid
   ════════════════════════════════════════════════════════════ */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.bento-card {
  display: block;
  background: #0e0e18;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover {
  border-color: rgba(96,165,250,0.2);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(96,165,250,0.1);
}
.bento-card:hover::before { opacity: 1; }

.bento-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bento-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.bento-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}
.bento-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bento-tag {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.bento-more {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}
.process-grid--3 { grid-template-columns: repeat(3, 1fr); }
.process-cell { background: #07070e; padding: 48px 32px; position: relative; }
.process-cell--light { background: #0e0e18; }
.process-num { font-size: 0.68rem; color: #2563eb; letter-spacing: 0.15em; margin-bottom: 20px; }
.process-rule {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  margin-bottom: 20px;
  border-radius: 2px;
}
.process-title { font-size: 1.1rem; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; }
.process-desc  { font-size: 0.875rem; color: #475569; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════ */
/* Base image frame — declared before the positioned variants below so the
   absolute placement of .about-img-a / .about-img-b always wins. */
.img-overlay { position: relative; overflow: hidden; border-radius: 16px; }
.img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33,1,0.68,1);
}
.img-overlay:hover img { transform: scale(1.04); }
.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.7) 0%, transparent 50%);
  pointer-events: none;
}

.about-media { position: relative; height: 520px; }
.about-img-a { position: absolute; top: 0; left: 0; right: 15%; bottom: 20%; }
.about-img-b { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; }

.est-badge {
  position: absolute;
  top: 20px; right: 17%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(37,99,235,0.4);
}
.est-a { font-size: 1.8rem; font-weight: 800; color: #fff; }
.est-b { font-size: 1.4rem; font-weight: 800; color: #fff; }

.about-copy p { color: #64748b; line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.feature { display: flex; gap: 12px; align-items: flex-start; }
.feature-check {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-label { font-weight: 600; color: #e2e8f0; font-size: 0.875rem; }
.feature-sub   { font-size: 0.78rem; color: #475569; margin-top: 2px; }

/* ════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════ */
.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0e0e18;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-item:hover { border-color: rgba(37,99,235,0.2); transform: translateX(4px); }
.why-check {
  width: 24px; height: 24px;
  border-radius: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}
.why-item > span:last-child { color: #cbd5e1; font-size: 0.9rem; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: linear-gradient(135deg, #0e0e18 0%, #121228 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(96,165,250,0.2); }
.t-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.t-stars { display: flex; gap: 2px; }
.t-text {
  color: #94a3b8;
  line-height: 1.75;
  font-size: 0.9rem;
  margin-bottom: 28px;
  font-style: italic;
}
.t-person { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; color: #e2e8f0; font-size: 0.875rem; }
.t-role { font-size: 0.75rem; color: #475569; margin-top: 2px; }

/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-section { padding: 0 32px 120px; }
.cta-box {
  border-radius: 28px;
  padding: 80px 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  border: 1px solid rgba(99,102,241,0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-orb-1 {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-orb-2 {
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-copy { position: relative; }
.cta-kicker {
  font-size: 0.7rem;
  color: #6366f1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.cta-sub { margin-top: 12px; color: #64748b; font-size: 0.95rem; }
.cta-actions { display: flex; gap: 14px; position: relative; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.contact-lead {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 48px;
  font-size: 0.95rem;
}
.contact-list { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
  flex-shrink: 0;
}
.contact-key {
  font-size: 0.65rem;
  color: #334155;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-val {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-val:hover { color: #60a5fa; }
.contact-val--plain { color: #64748b; font-size: 0.875rem; line-height: 1.6; display: block; }

.social-row { margin-top: 48px; display: flex; gap: 12px; }
.social-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.2);
  color: #60a5fa;
}

/* ── Form ─────────────────────────────────────────────────── */
.contact-form {
  background: #0e0e18;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px;
}
.form-title { font-weight: 700; color: #f1f5f9; font-size: 1.15rem; margin-bottom: 32px; }
.form-body  { display: flex; flex-direction: column; gap: 18px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 18px;
  color: #f1f5f9;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: #475569; }
.form-input:focus {
  border-color: rgba(37,99,235,0.5);
  background: rgba(37,99,235,0.05);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.form-select   { cursor: pointer; }
.form-select option { background: #0e0e18; color: #f1f5f9; }
.form-textarea { resize: vertical; }
.form-input.has-error { border-color: rgba(248,113,113,0.5); }
.field-error   { font-size: 0.72rem; color: #f87171; margin-top: 6px; }
.form-note     { text-align: center; font-size: 0.75rem; color: #334155; }

.form-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.form-alert--success {
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
}
.form-alert--error {
  color: #f87171;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
}

/* Honeypot — never visible to a human */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════════════
   LEGAL / TEXT PAGES
   ════════════════════════════════════════════════════════════ */
.prose { max-width: 760px; }
.prose h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 40px 0 12px;
}
.prose p, .prose li { color: #64748b; line-height: 1.8; font-size: 0.95rem; }
.prose ul { display: flex; flex-direction: column; gap: 8px; padding-left: 18px; list-style: disc; }
.prose li::marker { color: #2563eb; }

.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sitemap-card {
  background: #0e0e18;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 26px;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.sitemap-card:hover { border-color: rgba(96,165,250,0.2); transform: translateY(-3px); }
.sitemap-card .k { font-size: 0.68rem; color: #2563eb; letter-spacing: 0.15em; }
.sitemap-card .t {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: #f1f5f9;
  font-size: 1rem;
  margin: 10px 0 6px;
}
.sitemap-card .d { font-size: 0.82rem; color: #475569; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #03030a;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 60px 32px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-about {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.75;
  max-width: 280px;
}
.footer-wa { margin-top: 24px; display: flex; gap: 8px; }
.footer-head { font-weight: 700; color: #e2e8f0; font-size: 0.875rem; margin-bottom: 20px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
  font-size: 0.825rem;
  color: #334155;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-list a:hover { color: #64748b; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.7rem; color: #1e293b; letter-spacing: 0.08em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.75rem;
  color: #1e293b;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-legal a:hover { color: #475569; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: flex !important; }

  .grid-2,
  .contact-grid { grid-template-columns: 1fr !important; gap: 48px !important; }

  .bento-grid,
  .testimonial-grid,
  .sitemap-grid { grid-template-columns: 1fr !important; }

  .stats-grid,
  .process-grid,
  .process-grid--3 { grid-template-columns: repeat(2, 1fr) !important; }

  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }

  .about-media { height: auto; }
  .about-img-a,
  .about-img-b {
    position: relative;
    inset: auto;
    width: 100%;
    height: 260px;
  }
  .about-img-b { margin-top: 16px; }
  .est-badge { top: 16px; right: 16px; }

  .bento-card   { padding: 24px; }
  .cta-box      { padding: 48px 32px; }
  .contact-form { padding: 32px; }
  .process-cell { padding: 36px 26px; }

  .section-head { align-items: flex-start; }
}

@media (min-width: 901px) {
  .show-mobile { display: none !important; }
}

@media (max-width: 540px) {
  .feature-grid,
  .form-row { grid-template-columns: 1fr !important; }

  .stats-grid,
  .process-grid,
  .process-grid--3 { grid-template-columns: 1fr !important; }

  .section,
  .hero-inner,
  .cta-section,
  .site-footer,
  .header-inner,
  .stats-section { padding-left: 20px !important; padding-right: 20px !important; }

  .hero-stats { gap: 22px; }
  .cta-box    { padding: 40px 24px; }
  .contact-form { padding: 26px; }
  .footer-legal { gap: 16px; }
}

/* ════════════════════════════════════════════════════════════
   SUB-SERVICE DETAIL LAYOUT (ALIGNED WITH ABOUT PAGE DESIGN)
   ════════════════════════════════════════════════════════════ */
.breadcrumb-trail a { color: #64748b; text-decoration: none; transition: color 0.2s; }
.breadcrumb-trail a:hover { color: #60a5fa; }

.section-title-sm {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
}

.grid-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.bento-grid--2 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}

.process-grid--2 {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  background: transparent !important;
}

.faq-item {
  background: #0e0e18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.25);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 0.96rem;
  font-weight: 600;
  color: #f1f5f9;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 1.2rem;
  color: #3b82f6;
  transition: transform 0.2s ease;
}
details[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 22px 18px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #07070e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.2s ease;
}
.sidebar-link:hover, .sidebar-link.is-active {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  padding-left: 18px;
}
.sidebar-link .link-arrow {
  color: #475569;
  transition: color 0.2s ease;
}
.sidebar-link:hover .link-arrow, .sidebar-link.is-active .link-arrow {
  color: #60a5fa;
}

@media (max-width: 960px) {
  .grid-with-sidebar { grid-template-columns: 1fr; }
  .bento-grid--2, .process-grid--2 { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON & LIGHT MODE OVERRIDES ([data-theme="light"])
   ════════════════════════════════════════════════════════════ */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.35);
  color: #60a5fa;
  transform: rotate(15deg);
}

/* Dark mode (default): show sun icon, hide moon icon */
html:not([data-theme="light"]) .theme-icon-sun { display: inline-flex; }
html:not([data-theme="light"]) .theme-icon-moon { display: none; }

/* Light mode: show moon icon, hide sun icon */
html[data-theme="light"] .theme-icon-sun { display: none; }
html[data-theme="light"] .theme-icon-moon { display: inline-flex; }

/* ── Light Theme Overrides ─────────────────────────────────── */
html[data-theme="light"] {
  background-color: #f8fafc;
  color: #334155;
}
html[data-theme="light"] body {
  background-color: #f8fafc;
  color: #334155;
}

html[data-theme="light"] .site-header.is-scrolled,
html[data-theme="light"] .site-header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .nav-link {
  color: #475569;
}
html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link.is-active {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
}
html[data-theme="light"] .nav-dropdown-menu {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .nav-dropdown-item {
  color: #1e293b;
}
html[data-theme="light"] .nav-dropdown-item:hover {
  color: #2563eb;
}

html[data-theme="light"] .section-title,
html[data-theme="light"] .hero-title,
html[data-theme="light"] .bento-title,
html[data-theme="light"] .process-title,
html[data-theme="light"] .faq-question,
html[data-theme="light"] .section-title-sm {
  color: #0f172a;
}

html[data-theme="light"] .section-desc,
html[data-theme="light"] .hero-lead,
html[data-theme="light"] .bento-desc,
html[data-theme="light"] .process-desc,
html[data-theme="light"] .lead,
html[data-theme="light"] .about-copy p {
  color: #475569;
}

html[data-theme="light"] .glass {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
html[data-theme="light"] .glass-blue {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.15);
}
html[data-theme="light"] .bento-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
html[data-theme="light"] .bento-card:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}
html[data-theme="light"] .why-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .faq-answer {
  color: #475569;
}

html[data-theme="light"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1e293b;
}
html[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

html[data-theme="light"] .mobile-drawer {
  background: #ffffff;
  border-top-color: rgba(0, 0, 0, 0.08);
}
html[data-theme="light"] .mobile-drawer .nav-link {
  color: #1e293b;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
html[data-theme="light"] .mobile-subnav-link {
  color: #475569;
}
html[data-theme="light"] .mobile-subnav-link:hover,
html[data-theme="light"] .mobile-subnav-link.is-active {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}

html[data-theme="light"] .sidebar-link {
  background: #f8fafc;
  border-color: rgba(0, 0, 0, 0.08);
  color: #334155;
}
html[data-theme="light"] .sidebar-link:hover,
html[data-theme="light"] .sidebar-link.is-active {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

html[data-theme="light"] .site-footer {
  background: #f1f5f9;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #475569;
}
html[data-theme="light"] .footer-head {
  color: #0f172a;
}
html[data-theme="light"] .footer-list a {
  color: #64748b;
}
html[data-theme="light"] .footer-list a:hover {
  color: #2563eb;
}
html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-legal a {
  color: #64748b;
}



