/* =====================================================
   GLOBAL FIX TECHNOLOGIES — Enhanced Stylesheet
   Original design preserved + Visual effects added
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --blue:       #0057ff;
  --blue-dark:  #0041cc;
  --blue-light: #eff4ff;
  --navy:       #0c1220;
  --navy2:      #0a3080;
  --text:       #1a1f2e;
  --muted:      #526076;
  --border:     #e8e2d9;
  --bg:         #faf8f5;
  --bg2:        #f5f2ed;
  --white:      #ffffff;
  --green:      #00b44f;
  --orange:     #f97316;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.1);
}

/* Dark mode variable overrides — Deep premium charcoal */
html.dark {
  --bg:         #080c14;
  --bg2:        #0c1220;
  --white:      #101828;
  --border:     rgba(255,255,255,.08);
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img, svg { max-width: 100%; height: auto; }

/* ── WARM PREMIUM LIGHT MODE BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #faf8f5;
  pointer-events: none;
}

/* ── PARTICLES: HIDE IN LIGHT MODE ── */
body:not(.dark) #particle-canvas {
  display: none !important;
}

/* ── HERO: WARM BACKGROUND IN LIGHT MODE ── */
body:not(.dark) .hero.has-cinematic-bg::before {
  display: none !important;
}
body:not(.dark) .hero {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f2ed 100%);
}

/* ── ANIMATED BACKGROUND GRADIENT (Dark Mode) ── */
html.dark body::before {
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(0,87,255,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(0,150,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 10%, rgba(100,60,255,0.04) 0%, transparent 45%),
    linear-gradient(180deg, #080c14 0%, #0a1020 40%, #080c14 100%);
  animation: bgShiftDark 18s ease-in-out infinite alternate;
}
@keyframes bgShiftDark {
  0% { background-position: 0% 0%, 100% 100%, 50% 0%, 0% 0%; }
  50% { background-position: 80% 40%, 20% 60%, 60% 80%, 0% 0%; }
  100% { background-position: 100% 20%, 0% 80%, 40% 20%, 0% 0%; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 800;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }

/* ── UTILITIES ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
}
.section-sub.center { margin: 0 auto; text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all .2s;
  border: none;
  line-height: 1;
}
.btn-primary  { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline  { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-white    { background: #fff; color: var(--blue); }
.btn-white:hover { background: #e8f0ff; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: #a8b8d8;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid #1e3060;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a { color: #a8b8d8; transition: color .2s; }
.topbar a:hover { color: #60a5fa; }
.topbar-item { display: flex; align-items: center; gap: 6px; line-height: 1.5; }
.topbar .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #00ff88;
  animation: pulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── NAVBAR ── */
.navbar {
  background: rgba(250,248,245,0.97);
  border-bottom: 1px solid #e8e2d9;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.navbar .container::-webkit-scrollbar { display: none; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0041cc, #0d1b3e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img {
  width: 38px; height: 38px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.logo-tag {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .2px;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.footer-logo-name { color: #ffffff !important; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex-shrink: 1;
  white-space: nowrap;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
  line-height: 1.4;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.4;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
  display: block;
}

/* Mobile nav menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  z-index: 998;
  animation: fadeDown .3s ease;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--bg2);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--blue); font-weight: 600; }
html.dark .mobile-nav { background: #111d30; border-color: #1e2d45; }
html.dark .mobile-nav a { color: #e2e8f0; border-color: #1e2d45; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── FOOTER ── */
footer {
  background: #0f1d2e;
  color: #7a90a8;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1e3060;
}
.footer-brand p {
  font-size: 14px;
  color: #6b8aad;
  margin-top: 16px;
  line-height: 1.8;
  max-width: 300px;
}
.footer-logo-name { color: #fff !important; }
.footer-logo-tag  { color: #6b8aad !important; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: #a8b8d8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #6b8aad;
  margin-bottom: 12px;
  transition: color .2s;
  line-height: 1.5;
}
.footer-col a:hover { color: #60a5fa; }
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pay-badge {
  background: #1e3060;
  border: 1px solid #2a4080;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: #a8b8d8;
  font-weight: 500;
  line-height: 1.5;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #4a6080;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.5;
}
.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-legal-links { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.footer-legal-links a {
  font-size: 13px;
  color: #7a90a8;
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.footer-legal-links a:hover { color: #60a5fa; }

.footer-company-info { text-align: right; }
.footer-company-row {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.footer-company-row.muted { color: #64748b; font-size: 12px; }
.footer-company-row a { color: #60a5fa; text-decoration: none; }
.footer-company-row a:hover { text-decoration: underline; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #1e3060;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .2s;
  line-height: 1;
}
.social-btn:hover { background: var(--blue); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,87,255,.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,180,255,.06) 0%, transparent 35%);
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #a8c4ff;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.page-hero h1 span { color: #60a5fa; }

.page-hero p {
  font-size: 18px;
  color: #a8b8d8;
  max-width: 560px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b8aad;
  margin-top: 24px;
  line-height: 1.5;
}
.breadcrumb a { color: #6b8aad; }
.breadcrumb a:hover { color: #60a5fa; }
.breadcrumb span { color: #a8b8d8; }

/* ── PAGE HERO WITH IMAGE ── */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-text { min-width: 0; }
.page-hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.12);
  position: relative;
}
.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,87,255,.1), transparent 60%);
  pointer-events: none;
}
.page-hero-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
@media(max-width:900px){
  .page-hero { padding: 60px 0 48px !important; }
  .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .page-hero-img { order: -1; max-width: 340px; margin: 0 auto 24px; }
  .page-hero-img img { width: 100%; height: auto; max-height: 220px; object-fit: cover; border-radius: 16px; }
  .page-hero-badge { margin: 0 auto 16px !important; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 42px) !important; }
  .page-hero p { margin-left: auto; margin-right: auto; }
}

/* ── CARDS ── */
.card {
  background: #ffffff;
  border: 1px solid #e8e2d9;
  border-radius: var(--radius);
  padding: 32px;
  transition: all .25s;
  box-shadow: 0 2px 8px rgba(60,40,20,.04);
}
.card:hover { box-shadow: 0 8px 32px rgba(60,40,20,.08); border-color: #d4cdc3; transform: translateY(-2px); }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.badge-blue   { background: var(--blue-light); color: var(--blue); }
.badge-green  { background: #edfaf3; color: #00875a; }
.badge-orange { background: #fff4ed; color: #c2410c; }

/* ── TRUST BAR ── */
.trust-bar {
  background: #f5f2ed;
  border-top: 1px solid #e8e2d9;
  border-bottom: 1px solid #e8e2d9;
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #3a4a6b;
  line-height: 1.5;
}
.trust-item .ti { font-size: 18px; color: var(--blue); }

/* ── CHAT WIDGET ── */
.chat-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px; height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,87,255,.4);
  z-index: 9999;
  transition: transform .2s;
  text-decoration: none;
}
.chat-float:hover { transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .6s ease both; }
.fade-up-2 { animation: fadeUp .6s .15s ease both; }
.fade-up-3 { animation: fadeUp .6s .3s  ease both; }
.fade-up-4 { animation: fadeUp .6s .45s ease both; }

/* ════════════════════════════════════════════════════════════
   ENHANCED: PARTICLE NETWORK, GLOW EFFECTS, SCROLL REVEALS
   ════════════════════════════════════════════════════════════ */

/* ── Particle Canvas ── */
#particle-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* ── Hero with cinematic background image ── */
.hero.has-cinematic-bg {
  position: relative;
  overflow: hidden;
}
.hero.has-cinematic-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(135deg, rgba(13,27,62,0.93) 0%, rgba(10,48,128,0.88) 50%, rgba(13,27,62,0.95) 100%), url('images/hero-cinematic.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero.has-cinematic-bg .container {
  position: relative; z-index: 3;
}

/* ── Floating Status Cards ── */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  z-index: 5;
  animation: floatY 5s ease-in-out infinite;
  pointer-events: none;
}
.float-card .fc-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.float-card-1 { top: 15%; left: 55%; animation-delay: 0s; }
.float-card-1 .fc-icon { background: linear-gradient(135deg, #00b44f, #00d45a); }
.float-card-2 { top: 45%; right: 8%; animation-delay: 1.5s; }
.float-card-2 .fc-icon { background: linear-gradient(135deg, #0057ff, #00a8ff); }
.float-card-3 { bottom: 25%; left: 50%; animation-delay: 3s; }
.float-card-3 .fc-icon { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #1a1f2e; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── FLOAT CARDS: LIGHT MODE OVERRIDE ── */
body:not(.dark) .float-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid #e2e5e9;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  color: var(--text);
}
body:not(.dark) .float-card .fc-icon {
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* ── Scroll Reveal System ── */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92) translateY(20px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1; transform: translateY(0) scale(1);
}
.reveal.d1, .reveal-left.d1, .reveal-right.d1, .reveal-scale.d1 { transition-delay: 0.1s; }
.reveal.d2, .reveal-left.d2, .reveal-right.d2, .reveal-scale.d2 { transition-delay: 0.2s; }
.reveal.d3, .reveal-left.d3, .reveal-right.d3, .reveal-scale.d3 { transition-delay: 0.3s; }
.reveal.d4, .reveal-left.d4, .reveal-right.d4, .reveal-scale.d4 { transition-delay: 0.4s; }

/* ── Glow & Pulse Effects ── */
.glow-blue { box-shadow: 0 0 30px rgba(0,87,255,0.15); }
.glow-blue:hover { box-shadow: 0 0 50px rgba(0,87,255,0.25); }

.pulse-ring {
  position: relative;
}
.pulse-ring::before {
  content: '';
  position: absolute; inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(0,87,255,0.2);
  animation: pulseRing 3s ease-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ── Animated Gradient Mesh (for CTA bands) ── */
.gradient-mesh {
  position: relative;
  overflow: hidden;
}
.gradient-mesh::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,87,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,180,255,0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(120,0,255,0.05) 0%, transparent 50%);
  animation: meshMove 10s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
.gradient-mesh > * { position: relative; z-index: 2; }

/* ── CTA Band: dark background in BOTH modes so light text is always visible ── */
.cta-band {
  background: linear-gradient(135deg, #0c1220 0%, #0a1a3a 50%, #0c1220 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #ffffff !important;
}
.cta-band p {
  color: #a8c4e0 !important;
}
/* Override for light mode: ensure CTA buttons with transparent bg are visible */
.cta-band .btn {
  border-color: rgba(255,255,255,.35);
}

@keyframes meshMove {
  0% { transform: scale(1) translate(0,0); }
  33% { transform: scale(1.1) translate(-2%,1%); }
  66% { transform: scale(0.95) translate(1%,-2%); }
  100% { transform: scale(1.05) translate(-1%,2%); }
}

/* ── Typing cursor blink ── */
.typing-cursor::after {
  content: '|';
  animation: blinkCursor 1s step-end infinite;
  color: var(--blue);
  margin-left: 2px;
  font-weight: 300;
}
@keyframes blinkCursor { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Shimmer button effect ── */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-shimmer:hover::after {
  transform: translateX(100%);
}

/* ── Noise texture overlay ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: 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.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
}

/* ── Rotating glow ring (for hero image) ── */
.glow-ring {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(0,87,255,0.12);
  animation: spinRing 25s linear infinite;
  pointer-events: none;
  z-index: 1;
}
.glow-ring::before {
  content: '';
  position: absolute; inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,255,0.08);
}
.glow-ring::after {
  content: '';
  position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(0,87,255,0.06);
}
@keyframes spinRing { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .pay-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  h1 { font-size: clamp(28px, 8vw, 48px) !important; }
  h2 { font-size: clamp(22px, 6vw, 36px) !important; }

  .hero-inner { grid-template-columns: 1fr; padding: 60px 0 40px; text-align: center; }
  .hero-illustration { order: -1; max-width: 400px; margin: 0 auto 24px; }
  .hero-illustration svg, .hero-illustration img { max-width: 400px; }
  .hero-btns { justify-content: center; flex-wrap: wrap; }
  .hero-btn-primary, .hero-btn-ghost { width: 100%; text-align: center; justify-content: center; }

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

  .services-grid { grid-template-columns: 1fr 1fr !important; }

  .why-grid { grid-template-columns: 1fr !important; gap: 40px !important; }

  .steps-grid { grid-template-columns: 1fr !important; }
  .step-connector { display: none; }

  .pricing-grid { grid-template-columns: 1fr !important; }
  .dev-btns { flex-wrap: wrap; justify-content: center; }

  .gallery-grid-3 { grid-template-columns: 1fr !important; }
  .gallery-grid-2 { grid-template-columns: 1fr !important; }

  .trust-grid { grid-template-columns: 1fr 1fr !important; }

  .pay-layout { grid-template-columns: 1fr !important; }
  .fgrid { grid-template-columns: 1fr !important; }

  .booking-grid { grid-template-columns: 1fr !important; }

  .contact-grid { grid-template-columns: 1fr !important; }

  .footer-bottom { flex-direction: column !important; gap: 16px !important; text-align: center; }
  .footer-bottom > div { text-align: center !important; justify-content: center !important; }
  .footer-bottom a { text-align: center; }

  /* Hide floating cards on mobile */
  .float-card { display: none; }
  .glow-ring { display: none; }

  /* Mobile navbar: show hamburger, hide desktop links */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar .container { overflow-x: visible; }

  /* Billing toggle wraps on mobile */
  .billing-toggle { flex-wrap: wrap; justify-content: center; }
  .billing-toggle button { padding: 8px 14px; font-size: 12px; }

  /* Device selector wraps */
  .dev-selector { flex-wrap: wrap; justify-content: center; }

  /* Plan selector stacks */
  .plan-selector { grid-template-columns: 1fr; }

  /* Payment method accordion */
  .pm-hdr { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .trust-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .section-title { font-size: clamp(20px, 7vw, 30px) !important; }
  .hero-btn-primary, .hero-btn-ghost { font-size: 14px !important; padding: 13px 20px !important; }
  .hero-illustration { max-width: 280px !important; margin: 0 auto 24px !important; order: -1 !important; }
  .hero-illustration svg, .hero-illustration img { max-width: 280px !important; }
}

/* ── MOBILE: Show topbar compact on small screens ── */
@media (max-width: 600px) {
  .topbar { font-size: 11px !important; padding: 6px 0 !important; }
  .topbar .container { gap: 8px !important; }
  .topbar-item { gap: 4px !important; }
  .topbar-item:first-child { display: none !important; } /* hide address on very small screens */
}

@media (max-width: 480px) {
  .topbar .container { justify-content: center !important; gap: 12px !important; }
  .topbar-item { font-size: 10px !important; }
  .cal-day { font-size: 12px !important; }
  .cal-day .d-avail { display: none; } /* hide slot count on tiny screens */
  .time-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-company-row { justify-content: center !important; text-align: center; }
  .footer-legal-links { justify-content: center !important; width: 100%; }
}


/* ══════════════════════════════════════════════════
   DARK MODE
══════════════════════════════════════════════════ */
html.dark {
  --blue:       #4d9fff;
  --blue-dark:  #2e88ff;
  --blue-light: #0d2140;
  --navy:       #e2e8f0;
  --navy2:      #c8d6e8;
  --text:       #e2e8f0;
  --muted:      #94a3b8;
  --border:     #1e2d45;
  --bg:         #101828;
  --bg2:        #0a1628;
  --white:      #141e30;
  --green:      #22c55e;
  --shadow:     0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.5);
}

html.dark body {
  background: #080c14;
  color: #e2e8f0;
}

html.dark *, html.dark *::before, html.dark *::after {
  transition: background-color .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease !important;
}

html.dark .navbar {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.06);
}
html.dark .navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }
html.dark .logo-name { color: #e2e8f0 !important; }
html.dark .logo-tag  { color: #526076; }
html.dark .nav-links a { color: #94a3b8; }
html.dark .nav-links a:hover,
html.dark .nav-links a.active { color: #4d9fff; background: #0d2140; }
html.dark .hamburger span { background: #e2e8f0; }
html.dark .nav-mobile-open .nav-links { background: #101828; border-bottom-color: #1e2d45; }

html.dark .topbar { background: #060a10; border-bottom-color: #152035; }

html.dark .card { background: rgba(16,24,40,0.7); backdrop-filter: blur(8px); border-color: rgba(255,255,255,.06); }
html.dark .card:hover { border-color: rgba(0,87,255,.25); box-shadow: 0 8px 32px rgba(0,0,0,.4); }

html.dark .services-section  { background: #080c14; }
html.dark .pricing-section   { background: #060a10; }
html.dark .testi-section     { background: #080c14; }
html.dark .trust-bar         { background: #060a10; border-color: #1e2d45; }
html.dark .trust-item        { color: #94a3b8; }

html.dark .form-group input,
html.dark .form-group select,
html.dark .form-group textarea {
  background: rgba(16,24,40,0.6);
  border-color: #1e2d45;
  color: #e2e8f0;
}
html.dark .form-group input:focus,
html.dark .form-group select:focus,
html.dark .form-group textarea:focus {
  border-color: #4d9fff;
  box-shadow: 0 0 0 3px rgba(77,159,255,.15);
}
html.dark .form-group label { color: #94a3b8; }

html.dark .info-card,
html.dark .book-form-card,
html.dark .contact-form-card {
  background: rgba(16,24,40,0.6); backdrop-filter: blur(8px);
  border-color: #1e2d45;
}
html.dark .info-card h4,
html.dark .book-form-card h2,
html.dark .contact-form-card h2 { color: #e2e8f0; }
html.dark .info-card p { color: #94a3b8; }

/* ===== PRICING PLAN CARDS (Homepage) ===== */
.plan {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px 28px;
  position: relative;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  text-align: left;
}
.plan:hover {
  box-shadow: 0 20px 60px rgba(0,87,255,.12);
  border-color: #b0c4f0;
  transform: translateY(-6px);
}
.plan.popular {
  border: 2.5px solid var(--blue);
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(0,87,255,.1);
}
.plan.popular:hover { transform: scale(1.02) translateY(-6px); }
.plan-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), #0099ff);
  color: #fff; border-radius: 24px;
  padding: 6px 20px; font-size: 12px; font-weight: 700;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,87,255,.3);
}
.plan-type {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 14px; color: var(--muted);
  margin-bottom: 16px; line-height: 1.6;
}
.plan-price {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 20px;
}
.plan-price .dollar {
  font-size: 20px; font-weight: 600;
  color: var(--navy); align-self: flex-start; margin-top: 4px;
}
.plan-price .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 700;
  color: var(--navy); line-height: 1.1;
}
.plan-price .per { font-size: 15px; color: var(--muted); margin-left: 4px; }
.plan-features {
  list-style: none; margin-bottom: 24px;
}
.plan-features li {
  font-size: 14px; color: var(--text);
  padding: 9px 0; border-bottom: 1px solid var(--bg2);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan-features li::before {
  content: '✓'; color: var(--blue);
  font-weight: 700; flex-shrink: 0;
}
.plan-btn {
  width: 100%; padding: 14px;
  border-radius: 12px; border: 2px solid var(--blue);
  background: #fff; color: var(--blue);
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all .2s;
  font-family: 'Inter', sans-serif;
  text-align: center; display: inline-block;
  text-decoration: none;
}
.plan-btn:hover {
  background: var(--blue); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,87,255,.25);
}
.plan.popular .plan-btn {
  background: linear-gradient(135deg, var(--blue), #0099ff);
  color: #fff; border-color: transparent;
}

html.dark .plan { background: rgba(16,24,40,0.55); backdrop-filter: blur(8px); border-color: rgba(255,255,255,.05); }
html.dark .plan.popular { background: rgba(12,18,32,0.8); border-color: #0057ff; box-shadow: 0 0 30px rgba(0,87,255,.12); }
html.dark .plan-name { color: #e2e8f0; }
html.dark .plan-price .dollar,
html.dark .plan-price .amount { color: #e2e8f0; }
html.dark .plan-features li { color: #c8d6e8; border-bottom-color: #1a2840; }
html.dark .plan-btn { background: rgba(16,24,40,0.6); color: #4d9fff; border-color: #4d9fff; }
html.dark .plan.popular .plan-btn { background: linear-gradient(135deg,#0057ff,#0099ff); color:#fff; }

html.dark .testi-card { background: rgba(16,24,40,0.55); backdrop-filter: blur(8px); border-color: rgba(255,255,255,.05); }
html.dark .testi-card blockquote { color: #94a3b8; }
html.dark .testi-card::before { color: rgba(77,159,255,.08); }

html.dark .section-title { color: #e2e8f0; }
html.dark .section-sub   { color: #94a3b8; }
html.dark .section-label { color: #4d9fff; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all .35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  padding: 0 20px 24px;
}
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}
.svc-img-wrap {
  height: 140px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  margin: -32px -20px 20px -20px;
  position: relative;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -56px auto 14px;
  position: relative;
  z-index: 3;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 8px 24px rgba(0,87,255,0.15);
  border: 3px solid var(--white);
}
.service-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 20px 48px rgba(0,87,255,.15);
  transform: translateY(-8px);
}
.service-card:hover .service-icon {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,87,255,0.25);
}

html.dark .service-card { background: rgba(16,24,40,0.55); backdrop-filter: blur(8px); border-color: rgba(255,255,255,.05); }
html.dark .service-card h3 { color: #e2e8f0; }
html.dark .service-card:hover { border-color: #4d9fff; box-shadow: 0 8px 32px rgba(0,0,0,.4); }

html.dark .value-card,
html.dark .team-card,
html.dark .svc-card,
html.dark .add-card,
html.dark .brand-card,
html.dark .info-block {
  background: rgba(16,24,40,0.55); backdrop-filter: blur(8px);
  border-color: #1e2d45;
}
html.dark .value-card h3,
html.dark .team-card .team-name,
html.dark .svc-card h3,
html.dark .svc-card h4,
html.dark .add-card h4 { color: #e2e8f0; }
html.dark .hours-card { background: rgba(16,24,40,0.55); backdrop-filter: blur(8px); border-color: rgba(255,255,255,.05); }
html.dark .hours-card .day { color: #e2e8f0; }
html.dark .about-stat { background: rgba(16,24,40,0.55); backdrop-filter: blur(8px); border-color: rgba(255,255,255,.05); }

html.dark .compare-table td { border-color: #1e2d45; color: #94a3b8; }
html.dark .compare-table tr:hover td { background: #0d2140; }

html.dark .notice-box { background: #0a2820; border-color: #0f4030; }
html.dark .notice-box .notice-text { color: #6ee7b7; }
html.dark .highlight-box { background: #0d2140; }

html.dark .btn-outline { color: #4d9fff; border-color: #4d9fff; }
html.dark .btn-outline:hover { background: #0d2140; }

html.dark .map-placeholder { background: linear-gradient(135deg,#0d2140,#111d30); border-color: #1e2d45; }

/* ── Dark mode: enhanced effects ── */
html.dark .hero.has-cinematic-bg::before {
  background-image: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(13,33,64,0.92) 50%, rgba(10,22,40,0.97) 100%), url('images/hero-cinematic.jpg');
}

html.dark .float-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

/* Dark mode: particle canvas uses lighter dots */
html.dark #particle-canvas {
  filter: brightness(1.3);
}

/* ── Homepage sections in dark mode ── */
html.dark .hero { background: #080c14; }
html.dark .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,87,255,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0,180,255,.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(120,0,255,.1) 0%, transparent 60%),
    linear-gradient(170deg, #0a1628 0%, #0d2048 50%, #0f1640 100%);
}
html.dark .hero-grid {
  background-image:
    linear-gradient(rgba(0,87,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,.07) 1px, transparent 1px);
}
html.dark .hero h1 { color: #fff; }
html.dark .hero-desc { color: #94a3b8; }
html.dark .hero-live {
  background: rgba(0,87,255,.18);
  border-color: rgba(0,150,255,.35);
  color: #7ec8ff;
}
html.dark .hero-stats { border-top-color: rgba(255,255,255,.08); }
html.dark .hero-stat .n { color: #fff; }
html.dark .hero-stat .l { color: #94a3b8; }
html.dark .hero-btn-ghost {
  background: rgba(255,255,255,.07);
  color: #e2e8f0;
  border-color: rgba(255,255,255,.2);
}
html.dark .hero-btn-ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.35);
}

html.dark .ticker-wrap {
  background: #0c1220;
  border-color: rgba(255,255,255,.08);
}
html.dark .ticker-item { color: #94a3b8; }

html.dark .why-section {
  background: linear-gradient(135deg,#0a1628 0%,#0d2248 50%,#0a1628 100%) !important;
}
html.dark .why-section h2,
html.dark .why-section .why-title { color: #fff; }
html.dark .why-section p,
html.dark .why-section .why-desc { color: #94a3b8; }
html.dark .why-section .why-item-title { color: #e2e8f0; }
html.dark .why-section .why-item-desc { color: #526076; }
html.dark .why-stat-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
html.dark .why-stat-card .stat-label { color: rgba(255,255,255,.6); }
html.dark .why-badge-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
html.dark .why-badge-card .badge-text { color: #fff; }
html.dark .why-badge-card .badge-sub { color: rgba(255,255,255,.5); }

html.dark .how-section { background: #0c1220; }
html.dark .how-section::before {
  background-image:
    linear-gradient(rgba(96,165,250,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,.05) 1px, transparent 1px);
}
html.dark .how-section .section-label { color: #60a5fa; }
html.dark .how-section .section-title { color: #fff; }
html.dark .how-section .section-sub { color: #94a3b8; }
html.dark .steps-connector { background: rgba(255,255,255,.08); }
html.dark .step-card {
  background: rgba(16,24,40,0.5);
  border-color: rgba(255,255,255,.05);
}
html.dark .step-card::before { border-bottom-color: rgba(255,255,255,.1); }
html.dark .step-card h3 { color: #f1f5f9; }
html.dark .step-card p { color: #94a3b8; }

html.dark .fullwidth-band {
  background: linear-gradient(135deg,#0a1628 0%,#0d2248 100%) !important;
}
html.dark .fullwidth-band h2,
html.dark section.fullwidth-band h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,87,255,.3) !important;
}
html.dark .fullwidth-band p,
html.dark section.fullwidth-band p {
  color: #a8c4e0 !important;
}
html.dark .fullwidth-band .band-label,
html.dark section.fullwidth-band .band-label {
  color: #38bdf8 !important;
  text-shadow: 0 0 12px rgba(56,189,248,.3) !important;
}

html.dark .cta-band {
  background: #0c1220 !important;
}
html.dark .cta-band::before {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,87,255,.15), transparent) !important;
}
html.dark .cta-band h2,
html.dark section.cta-band h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0,87,255,.3) !important;
}
html.dark .cta-band p[style],
html.dark section.cta-band p[style] {
  color: #a8c4e0 !important;
}

html.dark .gallery-section { background: transparent; }
html.dark .gallery-section h2 { color: #fff !important; }
html.dark .gallery-card .overlay { background: linear-gradient(0deg,rgba(0,0,20,0.85) 0%,transparent 60%); }
html.dark .gallery-card h3 { color: #fff !important; }
html.dark .gallery-card p { color: rgba(255,255,255,.6) !important; }

/* Comprehensive dark mode fixes */
html.dark section h2,
html.dark section h3,
html.dark .page-hero h1,
html.dark .hero h1 {
  color: #ffffff !important;
}
html.dark section p,
html.dark .page-hero p,
html.dark .hero-desc {
  color: #94a3b8 !important;
}
html.dark section .section-label,
html.dark .page-hero-badge {
  color: #38bdf8 !important;
}
html.dark .page-hero {
  background: linear-gradient(135deg, #080c14 0%, #0d2248 50%, #080c14 100%) !important;
}
html.dark section[class*="section"]:nth-child(odd) {
  background: #0a1628 !important;
}
html.dark .service-card,
html.dark .svc-card,
/* Additional card images */
.add-card-img {
  height: 140px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
}
.add-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.add-card:hover .add-card-img img {
  transform: scale(1.08);
}

html.dark .add-card {
  background: rgba(16,24,40,0.55) !important; backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.1) !important;
}
html.dark .service-card h3,
html.dark .svc-card h3,
html.dark .svc-card h4,
html.dark .add-card h4 {
  color: #e2e8f0 !important;
}
html.dark .service-card p,
html.dark .svc-card p,
html.dark .svc-tag,
html.dark .add-card p {
  color: #94a3b8 !important;
}
html.dark .svc-tag {
  background: rgba(0,87,255,.1) !important;
  border-color: rgba(0,87,255,.2) !important;
  color: #60a5fa !important;
}
html.dark .svc-img-wrap::after,
html.dark .service-card-img::after {
  background: linear-gradient(to top, #0f1d35, transparent) !important;
}

html.dark .plan {
  background: #0f1d35 !important;
  border-color: rgba(255,255,255,.1) !important;
}
html.dark .plan.popular {
  border-color: #0057ff !important;
  box-shadow: 0 0 30px rgba(0,87,255,.15) !important;
}
html.dark .plan-type { color: #e2e8f0 !important; }
html.dark .plan-desc { color: #94a3b8 !important; }
html.dark .plan-feature { color: #94a3b8 !important; }
html.dark .plan-price { color: #ffffff !important; }

html.dark .trust-item,
html.dark .compliance-card {
  background: rgba(16,24,40,0.45) !important;
  border-color: rgba(255,255,255,.1) !important;
}
html.dark .trust-item h4,
html.dark .compliance-card h4 {
  color: #e2e8f0 !important;
}
html.dark .trust-item p,
html.dark .compliance-card p {
  color: #94a3b8 !important;
}

html.dark .step-card {
  background: rgba(16,24,40,0.5) !important;
  border-color: rgba(255,255,255,.05) !important;
}
html.dark .step-card h3 { color: #f1f5f9 !important; }
html.dark .step-card p { color: #94a3b8 !important; }
html.dark .step-circle {
  background: rgba(0,87,255,.2) !important;
  border-color: rgba(0,87,255,.4) !important;
  color: #38bdf8 !important;
}

html.dark .why-item-title { color: #e2e8f0 !important; }
html.dark .why-item-desc { color: #94a3b8 !important; }

html.dark .gradient-mesh::before {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,87,255,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,180,255,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(120,0,255,0.08) 0%, transparent 50%);
}

/* Why Choose Us rows */
.why-row {
  padding: 12px 16px;
  border-radius: 16px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: 1px solid transparent;
}
.why-row:hover {
  background: rgba(255,255,255,.6);
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.why-img {
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* Pricing grid - always centered */
.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;max-width:1400px;margin:52px auto 0;justify-items:center;}
.pricing-grid .plan{margin:0 auto;width:100%;max-width:360px;}
@media(max-width:1200px){.pricing-grid{grid-template-columns:repeat(2,1fr);gap:20px;justify-items:center;}}
@media(max-width:768px){.pricing-grid{grid-template-columns:1fr!important;max-width:420px;}}
