/* ==========================================================================
   METRO POINT IT SERVICES — MAIN STYLESHEET
   Enterprise Premium Design System
   Version 2.0 — Refactored & Modularized
   ========================================================================== */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --gold:          #C9A84C;
  --gold-light:    #E4C56A;
  --gold-dark:     #A8872E;
  --navy:          #0A1628;
  --navy-mid:      #0F2040;
  --navy-light:    #162B50;

  /* Dark Theme Palette */
  --dark1:         #050816;
  --dark2:         #0B1120;
  --dark3:         #0F1A35;
  --glass:         rgba(255,255,255,0.05);
  --glass-border:  rgba(255,255,255,0.09);

  /* Accent Colors (Blue-Purple neon system) */
  --blue:          #3B82F6;
  --blue-light:    #60A5FA;
  --blue-lighter:  #93C5FD;
  --purple:        #8B5CF6;
  --purple-light:  #A78BFA;
  --cyan:          #06B6D4;
  --cyan-light:    #67E8F9;

  /* Text */
  --text-white:    #FFFFFF;
  --text-muted:    rgba(255,255,255,0.65);
  --text-subtle:   rgba(255,255,255,0.45);
  --body-text:     #1E293B;
  --subtext:       #64748B;

  /* Borders & Shadows */
  --border:        #E2E8F0;
  --border-light:  rgba(255,255,255,0.09);
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.25);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.4);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  --shadow-blue:   0 4px 20px rgba(59,130,246,0.35);

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 100px;

  /* Transitions */
  --transition:  0.22s cubic-bezier(0.4,0,0.2,1);
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --spring:      cubic-bezier(0.34,1.56,0.64,1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body, html { background: var(--dark1) !important; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-muted);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif !important;
  letter-spacing: -0.025em !important;
  color: #fff !important;
}

p { color: var(--text-muted) !important; }
li { color: var(--text-muted) !important; }
a { text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark1); }
::-webkit-scrollbar-thumb { background: rgba(59,130,246,0.4); border-radius: 3px; }
::selection { background: rgba(59,130,246,0.3); color: #fff; }

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
.skip-nav {
  position: absolute; top: -100px; left: 16px;
  background: var(--blue); color: #fff;
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-weight: 600; font-size: 14px; z-index: 9999;
  transition: top 0.2s; text-decoration: none;
}
.skip-nav:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg-pattern, .hero-slide-img { animation: none !important; transition: none !important; }
  .hero-btns .btn-orange { animation: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   DESIGN SYSTEM COMPONENTS
   ========================================================================== */

/* ── Section Tag ── */
.section-tag {
  color: var(--blue-light) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}
.section-tag.light { color: var(--cyan-light) !important; }
.section-tag.light::before { background: var(--cyan); }

.section-header { text-align: center; max-width: 650px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(28px, 3vw, 42px); color: #fff !important; margin-bottom: 14px; }
.section-header p { font-size: 16px; color: var(--text-muted) !important; line-height: 1.7; font-weight: 300; }

/* ── Buttons ── */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%) !important;
  color: #fff !important;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-weight: 700 !important;
  font-size: 14px;
  border: none;
  cursor: pointer;
  min-height: 48px;
  box-shadow: var(--shadow-blue);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-orange:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(59,130,246,0.58) !important;
  background: linear-gradient(135deg, var(--blue-light), var(--purple-light)) !important;
  color: #fff !important;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.88) !important;
  border: 2px solid rgba(255,255,255,0.28) !important;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  min-height: 48px;
  backdrop-filter: blur(6px);
  transition: all 0.22s var(--ease);
  text-decoration: none;
}
.btn-outline-white:hover {
  border-color: rgba(59,130,246,0.5) !important;
  color: var(--blue-lighter) !important;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #fff;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }

.btn-outline-white-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-outline-white-cta:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

/* ── Hero pulse animation ── */
.hero-btns .btn-orange { animation: heroPulse 3s ease-in-out infinite; }
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(59,130,246,0); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   UNIVERSAL CARD SYSTEM
   ========================================================================== */
.service-card, .ind-service-card, .why-us-item,
.compliance-panel, .compliance-item, .overview-panel,
.feature-card, .why-card, .testimonial-card,
.review-card-sm, .industry-card, .blog-card,
.backup-card, .voip-feature, .smart-card, .m365-app-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  box-shadow: var(--shadow-card) !important;
  border-radius: var(--r-xl) !important;
  transition:
    transform 0.35s var(--spring),
    box-shadow 0.35s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease) !important;
}

.service-card:hover, .ind-service-card:hover, .why-us-item:hover,
.compliance-panel:hover, .compliance-item:hover, .overview-panel:hover,
.feature-card:hover, .why-card:hover, .testimonial-card:hover,
.review-card-sm:hover, .industry-card:hover,
.backup-card:hover, .voip-feature:hover {
  transform: translateY(-8px) !important;
  background: rgba(59,130,246,0.07) !important;
  border-color: rgba(59,130,246,0.22) !important;
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.15),
    0 20px 50px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.07) !important;
}

/* Card headings */
.service-card h3, .ind-service-card h3, .why-us-item h3,
.compliance-panel h3, .compliance-item h3, .backup-card h3,
.why-card h3, .overview-panel h3, .voip-feature h3,
.smart-card h3, .industry-card h3, .review-card-sm .reviewer-name {
  color: #fff !important; font-weight: 700 !important;
}

/* Card body text */
.service-card p, .service-card ul li,
.ind-service-card p, .why-us-item p,
.compliance-panel p, .compliance-panel ul li,
.compliance-item p, .backup-card p,
.why-card p, .overview-panel p, .voip-feature p,
.industry-card p, .review-card-sm .review-text {
  color: rgba(255,255,255,0.65) !important;
}

/* ── Universal Icon System ── */
.service-icon, .svc-icon, .why-icon, .industry-icon,
.ind-service-icon, .compliance-item-icon, .overview-icon,
.feature-icon, .backup-icon, .voip-icon, .ind-icon,
.m365-app-card i, .app-tile i {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: rgba(59,130,246,0.12) !important;
  border: 1px solid rgba(59,130,246,0.22) !important;
  box-shadow: 0 0 18px rgba(59,130,246,0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 21px !important;
  color: var(--blue-light) !important;
  flex-shrink: 0 !important;
  transition: all 0.3s var(--ease) !important;
  margin-bottom: 20px !important;
}

.service-icon i, .svc-icon i, .why-icon i,
.industry-icon i, .ind-service-icon i,
.compliance-item-icon i, .backup-icon i, .voip-icon i, .ind-icon i {
  color: var(--blue-light) !important;
}

/* Icon hover on cards */
.service-card:hover .service-icon,
.ind-service-card:hover .svc-icon,
.ind-service-card:hover .ind-service-icon,
.why-card:hover .why-icon,
.why-us-item:hover .why-icon,
.compliance-item:hover .compliance-item-icon,
.overview-panel:hover .overview-icon,
.industry-card:hover .industry-icon,
.industry-card:hover .ind-icon {
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
  box-shadow: 0 0 28px rgba(59,130,246,0.55) !important;
  transform: scale(1.1) rotate(-4deg) !important;
}
.service-card:hover .service-icon i,
.ind-service-card:hover .svc-icon i,
.why-card:hover .why-icon i,
.why-us-item:hover .why-icon i,
.compliance-item:hover .compliance-item-icon i,
.overview-panel:hover .overview-icon i,
.industry-card:hover .industry-icon i,
.industry-card:hover .ind-icon i { color: #fff !important; }

/* Blog cards */
.blog-card {
  overflow: hidden !important;
}
.blog-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(59,130,246,0.22) !important;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 20px 50px rgba(0,0,0,0.35) !important;
}
.blog-card h3 { color: #fff !important; font-weight: 700 !important; }
.blog-card p { color: rgba(255,255,255,0.58) !important; }
.blog-card-img { background: linear-gradient(145deg, #0B1120, #0F1A35) !important; }
.blog-card-img i { color: rgba(59,130,246,0.45) !important; font-size: 48px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-date { font-size: 12px; color: var(--subtext); }
.blog-cat {
  background: rgba(59,130,246,0.12) !important;
  color: var(--blue-lighter) !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  border-radius: 100px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  padding: 3px 10px !important;
}
.read-more, .learn-more, .ind-learn-more { color: var(--blue-light) !important; font-weight: 600 !important; }
.read-more:hover, .learn-more:hover { color: var(--blue-lighter) !important; }

/* ── Checklist / Bullets ── */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; margin-bottom: 32px; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.checklist li i { color: var(--blue-light); font-size: 14px; flex-shrink: 0; }
.checklist li, .check-list li, .page ul.checks li { color: rgba(255,255,255,0.72) !important; }
.checklist li::before, .check-list li::before,
.service-card ul li::before, .compliance-panel ul li::before {
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
}

.service-card ul li { font-size: 13.5px; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.service-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

.service-card h3 { font-size: 17px !important; margin-bottom: 12px !important; }
.service-card ul { margin-bottom: 20px; }

/* Learn more links */
.service-card .learn-more { display: flex; align-items: center; gap: 6px; transition: gap 0.2s; font-size: 14px; }
.service-card:hover .learn-more { gap: 10px; }
.industry-card:hover .btn-link { gap: 10px; }
.industry-card .btn-link { color: var(--blue-light); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
}

.main-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 70px;
  background: rgba(5,8,22,0.94) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(20px) !important;
  transition: all 0.22s var(--ease);
}
.main-nav.scrolled {
  background: rgba(5,8,22,0.99) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5) !important;
}

.nav-logo a {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 19px; color: #fff; white-space: nowrap;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child { color: #fff !important; font-weight: 800 !important; }
.logo-text span:last-child { color: var(--blue-light) !important; font-size: 10px !important; letter-spacing: 1.5px !important; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.72) !important;
  padding: 7px 13px; border-radius: 7px !important;
  transition: all 0.18s var(--ease) !important;
  display: flex; align-items: center; gap: 5px;
  text-decoration: none;
}
.nav-links > li > a:hover {
  color: var(--blue-light) !important;
  background: rgba(59,130,246,0.09) !important;
}
.nav-links > li > a i.fa-chevron-down { font-size: 10px; transition: transform 0.2s; }
.nav-links > li.open > a i.fa-chevron-down { transform: rotate(180deg); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  color: rgba(255,255,255,0.72) !important;
  font-size: 13px !important;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-phone:hover { color: var(--blue-light) !important; }
.nav-phone i { color: var(--blue-light); font-size: 13px; }
.nav-right > .btn-orange { padding: 9px 20px !important; font-size: 13px !important; }

/* ── Dropdown Menus ── */
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--dark2) !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55) !important;
  min-width: 220px; padding: 10px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200; margin-top: 0;
}
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.nav-links > li.open .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px !important;
  color: rgba(255,255,255,0.74) !important;
  font-size: 14px; font-weight: 400;
  transition: background 0.15s, color 0.15s;
  border-radius: 7px !important;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(59,130,246,0.09) !important; color: var(--blue-light) !important; }
.dropdown-menu a i { width: 16px; color: var(--blue) !important; font-size: 12px; }

/* ── Mega Dropdown ── */
.mega-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark2) !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55) !important;
  width: min(760px, 95vw); padding: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200; margin-top: 0;
}
.mega-dropdown::before {
  content: ''; position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.nav-links > li.open .mega-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mega-col h4 {
  font-family: 'Syne', sans-serif; font-size: 10px !important; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px !important;
  color: var(--blue-light) !important;
  margin-bottom: 10px !important; padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(59,130,246,0.2) !important;
}
.mega-col a {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 7px 0; color: rgba(255,255,255,0.74) !important;
  font-size: 13.5px; line-height: 1.4; transition: color 0.15s;
}
.mega-col a:hover { color: var(--blue-light) !important; }
.mega-col a i { margin-top: 3px; color: var(--blue) !important; font-size: 11px; flex-shrink: 0; }

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 6px; border-radius: 4px; background: none; border: none;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.88) !important;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(380px, 100vw);
  height: 100vh; background: var(--dark1) !important;
  border-left: 1px solid rgba(255,255,255,0.06) !important;
  overflow-y: auto; z-index: 2000;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 0 0 40px;
}
.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 1999; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  background: var(--dark2) !important;
  border-bottom: 1px solid rgba(59,130,246,0.15) !important;
}
.drawer-close {
  background: none; border: none; color: #fff; font-size: 22px;
  cursor: pointer; padding: 4px; line-height: 1;
}
.drawer-nav { padding: 8px 0; }
.drawer-cta { padding: 24px; }
.drawer-cta .btn-orange { width: 100%; justify-content: center; font-size: 16px; padding: 15px; }

.drawer-accordion { border-bottom: 1px solid rgba(255,255,255,0.07); }
.drawer-accordion-trigger {
  display: flex !important; align-items: center; justify-content: space-between;
  padding: 16px 20px; color: #fff !important;
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; background: transparent; border: none; width: 100%;
  text-align: left; -webkit-tap-highlight-color: transparent;
  transition: background 0.15s; line-height: 1.4; box-sizing: border-box;
}
.drawer-accordion-trigger:active,
.drawer-accordion-trigger.open { background: rgba(59,130,246,0.10); color: var(--blue-light) !important; }
.drawer-accordion-trigger .trigger-left { display: flex; align-items: center; gap: 12px; flex: 1; }
.drawer-accordion-trigger .trigger-left i.icon { width: 20px; text-align: center; color: var(--blue-light); font-size: 15px; flex-shrink: 0; }
.drawer-accordion-trigger .trigger-label { color: #fff !important; font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif; display: block; }
.drawer-accordion-trigger .chevron { font-size: 12px; color: rgba(255,255,255,0.45); transition: transform 0.25s; flex-shrink: 0; margin-left: 8px; }
.drawer-accordion-trigger.open .chevron { transform: rotate(180deg); color: var(--blue-light); }

.drawer-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: rgba(0,0,0,0.25); }
.drawer-accordion-body.open { max-height: 1200px; }
.drawer-accordion-body a {
  display: flex !important; align-items: center; gap: 10px;
  padding: 12px 20px 12px 32px; color: rgba(255,255,255,0.78) !important;
  font-size: 14px; font-weight: 400; font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, color 0.15s;
  text-decoration: none; cursor: pointer;
}
.drawer-accordion-body a:last-child { border-bottom: none; }
.drawer-accordion-body a:active { background: rgba(59,130,246,0.15); color: var(--blue-light) !important; }
.drawer-accordion-body a i { width: 16px; text-align: center; font-size: 12px; color: var(--blue-light); flex-shrink: 0; }

.drawer-sub-label {
  padding: 10px 20px 5px 32px; font-size: 10px; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  font-weight: 700; font-family: 'Inter', sans-serif;
}

.drawer-plain-link {
  display: flex !important; align-items: center; gap: 12px;
  padding: 16px 20px; color: #fff !important;
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  -webkit-tap-highlight-color: transparent; text-decoration: none;
  cursor: pointer; transition: background 0.15s;
}
.drawer-plain-link:active { background: rgba(59,130,246,0.10); color: var(--blue-light) !important; }
.drawer-plain-link i { width: 20px; text-align: center; color: var(--blue-light); font-size: 15px; flex-shrink: 0; }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-section {
  position: relative; overflow: hidden;
  min-height: 56vh; max-height: 640px;
  display: flex; align-items: center;
  background: var(--dark1) !important;
}

/* Aurora background effect */
.hero-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(59,130,246,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(139,92,246,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 90%, rgba(6,182,212,0.1) 0%, transparent 60%) !important;
  animation: auroraShift 12s ease-in-out infinite alternate;
}

/* Grid overlay */
.hero-section::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.05) 1px, transparent 1px) !important;
  background-size: 60px 60px !important;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

@keyframes auroraShift {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.06); }
}

/* Slides track */
.hero-slides {
  position: absolute; inset: 0;
  display: flex; width: 300%;
  transition: transform 0.9s cubic-bezier(0.77,0,0.18,1);
}
.hero-slide { width: calc(100% / 3); position: relative; flex-shrink: 0; }
.hero-slide-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center; background-repeat: no-repeat;
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-img { transform: scale(1.06); }
.hero-slide:not(.active) .hero-slide-img { transform: scale(1); }

/* Slide overlays */
.hero-slide-overlay { position: absolute; inset: 0; }
.hero-slide:nth-child(1) .hero-slide-overlay {
  background: linear-gradient(105deg, rgba(8,18,30,0.88) 0%, rgba(8,18,30,0.72) 45%, rgba(8,18,30,0.18) 75%, transparent 100%);
}
.hero-slide:nth-child(2) .hero-slide-overlay {
  background: linear-gradient(105deg, rgba(6,16,28,0.90) 0%, rgba(6,16,28,0.68) 40%, rgba(6,16,28,0.15) 72%, transparent 100%);
}
.hero-slide:nth-child(3) .hero-slide-overlay {
  background: linear-gradient(105deg, rgba(5,14,24,0.92) 0%, rgba(5,14,24,0.74) 42%, rgba(5,14,24,0.22) 70%, transparent 100%);
}

/* Content */
.hero-content-wrap {
  position: static; z-index: 10; width: 100%;
  padding: 50px 0 40px; display: flex; align-items: center;
}
.hero-content, .hero-content-wrap { position: relative !important; z-index: 2 !important; }
.hero-content { max-width: 600px; width: 100%; }

.hero-geo-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.14) !important;
  border: 1px solid rgba(59,130,246,0.38) !important;
  color: var(--blue-light) !important;
  padding: 6px 16px; border-radius: 100px !important;
  font-size: 13px; font-weight: 500; letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero-geo-tag i { font-size: 11px; }

.hero-h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(34px, 4.5vw, 58px);
  color: #fff !important; line-height: 1.1; margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-h1 span { color: var(--blue-light); }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.85) !important;
  font-weight: 300; line-height: 1.75;
  max-width: 580px; margin-bottom: 34px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.12);
  border-radius: 14px; overflow: visible;
  border: 1px solid rgba(255,255,255,0.18);
  width: 100%; max-width: 100%;
  position: relative;
}
.hero-stats::before {
  content: ''; position: absolute; inset: 0; border-radius: 13px;
  background: rgba(5,14,28,0.82); z-index: 0;
}
.stat-item {
  background: transparent; padding: 20px 10px 18px;
  text-align: center; position: relative; z-index: 1; min-width: 0;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--blue-light) !important;
  line-height: 1; margin-bottom: 6px; display: block; white-space: nowrap;
}
.stat-label {
  font-size: 10.5px; color: rgba(255,255,255,0.78) !important;
  font-weight: 500; letter-spacing: 0.3px; line-height: 1.3; display: block;
}

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); z-index: 20;
  display: flex; gap: 10px; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s; padding: 0;
}
.hero-dot.active {
  background: var(--blue-light) !important; transform: scale(1.4);
  width: 24px !important; border-radius: 100px !important;
}

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--blue); z-index: 20;
  width: 0%; transition: width linear;
}

/* Content animate in */
.hero-content-anim { animation: heroContentIn 0.7s ease both; }
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   TRUST RIBBON
   ========================================================================== */
.trust-ribbon-wrap {
  background: var(--dark2) !important;
  border-top: 1px solid rgba(59,130,246,0.15) !important;
  border-bottom: 1px solid rgba(59,130,246,0.15) !important;
  overflow: hidden; position: relative;
  padding: 14px 0;
}
.trust-ribbon-wrap::before, .trust-ribbon-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.trust-ribbon-wrap::before { left: 0; background: linear-gradient(to right, var(--dark2), transparent) !important; }
.trust-ribbon-wrap::after  { right: 0; background: linear-gradient(to left,  var(--dark2), transparent) !important; }

.trust-ribbon-track {
  display: flex !important; align-items: center !important;
  width: max-content !important;
  animation: ribbonSlide 28s linear infinite !important;
}
.trust-ribbon-track:hover { animation-play-state: paused !important; }
@keyframes ribbonSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-ribbon-item {
  display: inline-flex !important; align-items: center !important;
  gap: 8px !important; padding: 0 30px !important;
  font-size: 13px !important; font-weight: 500 !important;
  white-space: nowrap !important; color: rgba(255,255,255,0.58) !important;
  border-right: 1px solid rgba(59,130,246,0.18) !important;
}
.trust-ribbon-item i { color: var(--blue-light) !important; }
.trust-ribbon-item:last-child { border-right: none !important; }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section { padding: 90px 0; background: var(--dark2) !important; }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }

.how-it-works-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 20px; padding: 36px 28px;
}
.how-step { display: flex; align-items: flex-start; gap: 18px; }
.how-connector { padding: 3px 0; margin-left: 22px; }
.how-connector-line { width: 2px; height: 24px; border-left: 2px dashed rgba(59,130,246,0.3); margin-left: 1px; }
.how-step-num { display: none; }
.how-step-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0; min-width: 48px;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(59,130,246,0.18);
  position: relative; z-index: 1;
}
.how-step-icon-wrap i { display: none; }
.how-step:nth-child(1) .how-step-icon-wrap::after { content: "01"; font-family: "Syne",sans-serif; font-weight: 800; font-size: 15px; color: var(--blue-light); }
.how-step:nth-child(3) .how-step-icon-wrap::after { content: "02"; font-family: "Syne",sans-serif; font-weight: 800; font-size: 15px; color: var(--blue-light); }
.how-step:nth-child(5) .how-step-icon-wrap::after { content: "03"; font-family: "Syne",sans-serif; font-weight: 800; font-size: 15px; color: var(--blue-light); }

.how-step-body { flex: 1; padding-top: 10px; }
.how-step-body h3 { font-size: 16px; color: #fff !important; margin-bottom: 6px; }
.how-step-body p { font-size: 14px; color: rgba(255,255,255,0.58) !important; font-weight: 300; line-height: 1.65; }

.about-text h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 20px; }
.about-text p { font-size: 16px; line-height: 1.75; font-weight: 300; margin-bottom: 28px; }

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section { padding: 90px 0; background: var(--dark1) !important; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.services-cta { text-align: center; }

/* Service icon wrapper */
.service-card {
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover::after { opacity: 1; }

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-section {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--dark2) 0%, var(--dark3) 100%) !important;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -30%, rgba(59,130,246,0.08) 0%, transparent 60%) !important;
}
.why-section .section-header h2 { color: #fff !important; }
.why-section .section-header p { color: rgba(255,255,255,0.55) !important; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { padding: 32px 28px; position: relative; }

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-section { padding: 90px 0; background: var(--dark1) !important; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ind-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; margin: 24px auto 0; }
.industry-card { padding: 32px 28px; display: flex; flex-direction: column; }

.compliance-badge { display: inline-flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.badge-pill {
  background: rgba(59,130,246,0.1); color: var(--blue-light);
  padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 500;
  border: 1px solid rgba(59,130,246,0.2);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--dark2) 0%, var(--dark3) 100%) !important;
}
.testimonials-section .section-header h2 { color: #fff !important; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card { padding: 32px 28px; backdrop-filter: blur(14px); }
.stars, .g-rating-stars { color: var(--gold) !important; font-size: 14px; margin-bottom: 16px; letter-spacing: 3px !important; }
.testimonial-card blockquote {
  font-size: 15px; color: rgba(255,255,255,0.78) !important;
  font-weight: 300; line-height: 1.75; margin-bottom: 24px;
  font-style: italic !important;
}
.testimonial-card blockquote::before {
  content: '\201C'; color: var(--blue-light); font-size: 40px;
  line-height: 0; vertical-align: -18px; margin-right: 4px;
}
.reviewer-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: #fff !important; }
.reviewer-title { font-size: 13px; color: rgba(255,255,255,0.45) !important; margin-top: 3px; }

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-section { padding: 90px 0; background: var(--dark1) !important; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.blog-card { display: flex; flex-direction: column; }
.blog-cta { text-align: center; }

/* ==========================================================================
   SERVICE AREAS SECTION
   ========================================================================== */
.areas-section { padding: 90px 0; background: var(--dark2) !important; }
.areas-section .section-header h2 { color: #fff !important; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.area-column h3 {
  font-size: 16px; color: rgba(255,255,255,0.9) !important; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.area-column ul { list-style: none; }
.area-column ul li {
  padding: 6px 0; color: rgba(255,255,255,0.65) !important; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.area-column ul li a { color: rgba(255,255,255,0.65) !important; }
.area-column ul li i { color: rgba(59,130,246,0.6); font-size: 10px; }

.area-state-badge {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(59,130,246,0.25) !important;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  font-weight: 600; transition: all 0.22s var(--ease);
}
.area-state-badge i { color: var(--blue) !important; }
.area-state-badge:hover {
  background: rgba(59,130,246,0.12) !important;
  border-color: rgba(59,130,246,0.4) !important;
  color: var(--blue-lighter) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.2);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(160deg, var(--dark2) 0%, var(--dark3) 100%) !important;
  padding: 90px 0; position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(28px, 3.5vw, 44px); color: #fff !important; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.65) !important; font-weight: 300; max-width: 560px; margin: 0 auto 36px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, var(--dark1) 0%, #030610 100%) !important;
  padding: 80px 0 0; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent) !important;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 17px; color: #fff;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4) !important; line-height: 1.7; font-weight: 300; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(59,130,246,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: rgba(59,130,246,0.15); border-color: rgba(59,130,246,0.4); color: var(--blue-light); }

.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 10px !important; font-weight: 700;
  color: rgba(255,255,255,0.9) !important; margin-bottom: 14px !important;
  padding-bottom: 10px !important; letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-bottom: 1px solid rgba(59,130,246,0.2) !important;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 2px; }
.footer-col ul li a {
  font-size: 14px !important; color: rgba(255,255,255,0.42) !important;
  padding: 5px 0; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover { color: var(--blue-light) !important; padding-left: 6px; }
.footer-col ul li a i { font-size: 10px; color: rgba(59,130,246,0.5); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--blue) !important; margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.footer-contact-item a, .footer-contact-item p {
  font-size: 14px; color: rgba(255,255,255,0.65) !important; line-height: 1.5; font-weight: 300;
}
.footer-contact-item a:hover { color: var(--blue-light) !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.3) !important;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3) !important; }
.footer-legal { display: flex; gap: 20px; align-items: center; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4) !important; transition: color 0.2s; }
.footer-legal a:hover { color: var(--blue-light) !important; }

/* ==========================================================================
   PAGES / SPA ROUTING
   ========================================================================== */
.page { display: none; background: var(--dark1) !important; }
.page.active { display: block; }
.page section, [id^="page-"] section { background: var(--dark1) !important; }
[id^="page-"] .faq-section,
[id^="page-"] .why-us-page,
[id^="page-"] .ind-services-section,
[id^="page-"] .compliance-section { background: var(--dark2) !important; }

/* All white bg overrides */
.page section[style*="background:#fff"],
.page section[style*="background: #fff"],
.page section[style*="background: var(--white)"],
.page section[style*="background:var(--white)"],
.page section[style*="background:#F"],
.page div[style*="background:#fff"],
.page div[style*="background: #fff"] { background: var(--dark1) !important; }
.page section[style*="background:var(--navy)"],
.page section[style*="background: var(--navy)"],
.page section[style*="background:#0B"],
.page div[style*="background:#0B"] { background: var(--dark2) !important; }
section[style*="background:#fff"], section[style*="background: #fff"],
section[style*="background:#050816"],
div[style*="padding:80px 0;background:#fff"], div[style*="padding:70px 0;background:#fff"],
div[style*="padding:90px 0;background:#fff"],
div[style*="padding:80px 0;background:#050816"] { background: var(--dark1) !important; }
section[style*="background:var(--light-bg)"], section[style*="background: var(--light-bg)"],
div[style*="background:var(--light-bg)"],
div[style*="padding:70px 0;background:#0B"],
div[style*="padding:80px 0;background:#0B"] { background: var(--dark2) !important; }

/* Page hero */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 90px; min-height: 380px;
  display: flex; align-items: center;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,8,22,0.93) 0%, rgba(5,8,22,0.72) 55%, rgba(5,8,22,0.3) 100%);
}
.page-hero .container, .page-hero-content { position: relative; z-index: 2; }
.page-hero h1, .page-hero p,
.page-hero-content h1, .page-hero-content p { color: #fff !important; }
.page-hero p { color: rgba(255,255,255,0.75) !important; }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }

.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59,130,246,0.12) !important;
  border: 1px solid rgba(59,130,246,0.3) !important;
  color: var(--blue-lighter) !important;
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 16px;
}
.page-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.45) !important; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue-light) !important; }
.breadcrumb i { color: rgba(255,255,255,0.25); font-size: 10px; }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   INNER PAGE COMPONENTS
   ========================================================================== */

/* Why Us Page */
.why-us-page { padding: 80px 0; background: var(--dark2) !important; }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-us-item { padding: 28px 24px; text-align: center; }
.why-us-item .w-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(59,130,246,0.12); display: flex;
  align-items: center; justify-content: center; margin: 0 auto 16px;
  border: 1px solid rgba(59,130,246,0.22);
}
.why-us-item .w-icon i { color: var(--blue-light); font-size: 20px; }
.why-us-item h3 { font-size: 15px; margin-bottom: 8px; }
.why-us-item p { font-size: 13.5px; line-height: 1.6; font-weight: 300; }

/* Ind. Services */
.ind-services-section { padding: 80px 0; background: var(--dark1) !important; }
.ind-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ind-service-card { padding: 28px 24px; }

/* Overview */
.overview-section { padding: 80px 0; background: var(--dark2) !important; }
.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.overview-panel { padding: 28px 24px; }

/* Compliance */
.compliance-deep-dive { padding: 80px 0; background: var(--dark1) !important; }
.compliance-section { padding: 80px 0; background: var(--dark2) !important; }
.compliance-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px; }
.compliance-panel { padding: 28px 24px; }
.compliance-panel ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.compliance-panel ul li {
  font-size: 13.5px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.compliance-panel ul li::before { content: '→'; color: var(--blue-light); flex-shrink: 0; }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--dark1) !important; }
.faq-section h2 { font-size: clamp(26px, 3vw, 36px); color: #fff !important; text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important; margin-bottom: 10px; overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { border-color: rgba(59,130,246,0.2) !important; }
.faq-item.open { border-color: rgba(59,130,246,0.25) !important; background: rgba(59,130,246,0.04) !important; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; background: transparent;
  transition: background 0.15s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question h3 { font-size: 15px; color: rgba(255,255,255,0.87) !important; flex: 1; padding-right: 16px; }
.faq-question h4 { font-size: 15px; color: rgba(255,255,255,0.87) !important; flex: 1; padding-right: 16px; }
.faq-question p { color: rgba(255,255,255,0.87) !important; }
.faq-question span { color: rgba(255,255,255,0.87) !important; }
.faq-question i { color: var(--blue-light); font-size: 14px; transition: transform 0.2s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 20px; padding-top: 16px;
  font-size: 14.5px; color: rgba(255,255,255,0.65) !important;
  line-height: 1.75; font-weight: 300;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-answer li { color: rgba(255,255,255,0.65) !important; }

/* Reviews Section */
.reviews-section { padding: 90px 0; background: var(--dark2) !important; }
.reviews-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-card-sm { display: flex; align-items: flex-start; gap: 16px; padding: 24px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(59,130,246,0.15); color: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px; flex-shrink: 0;
  border: 1px solid rgba(59,130,246,0.25);
}
.review-avatar.dynamic { background: linear-gradient(135deg, var(--dark2) 0%, #1a3a5c 100%); }
.review-body { flex: 1; }
.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: rgba(255,255,255,0.72) !important; line-height: 1.6; font-weight: 300; margin-bottom: 8px; font-style: italic; }
.review-author { font-size: 13px; color: #fff !important; font-weight: 600; }
.review-source { font-size: 11px; color: rgba(255,255,255,0.45) !important; margin-top: 2px; display: flex; align-items: center; gap: 5px; }

/* Review form */
.review-form-card { background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.09) !important; border-radius: 20px; padding: 40px 36px; position: sticky; top: 90px; }
.review-form-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; color: #fff !important; margin-bottom: 6px; }
.review-form-card > p { font-size: 14px; color: rgba(255,255,255,0.55) !important; font-weight: 300; margin-bottom: 28px; line-height: 1.5; }
.review-field { margin-bottom: 16px; }
.review-field label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55) !important; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 7px; }
.review-field input, .review-field textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 12px 14px;
  color: #fff; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.review-field input::placeholder, .review-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.review-field input:focus, .review-field textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.review-field textarea { resize: vertical; min-height: 100px; }
.star-picker { display: flex; gap: 6px; margin-bottom: 4px; }
.star-picker span { font-size: 28px; color: rgba(255,255,255,0.2); cursor: pointer; transition: color 0.15s, transform 0.15s; user-select: none; line-height: 1; }
.star-picker span:hover, .star-picker span.selected { color: #FFB800; transform: scale(1.15); }
.star-picker span.hovered { color: #FFD700; }
.review-submit-btn { width: 100%; padding: 14px; font-size: 15px; margin-top: 4px; }
.review-success { display: none; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); border-radius: 10px; padding: 16px; margin-top: 16px; color: #86efac; font-size: 14px; text-align: center; line-height: 1.5; }
.review-success i { display: block; font-size: 28px; margin-bottom: 8px; }
.review-platforms { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.review-platforms p { font-size: 12px; color: rgba(255,255,255,0.4) !important; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.platform-links { display: flex; gap: 10px; flex-wrap: wrap; }
.platform-link {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 400; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.platform-link:hover { background: rgba(59,130,246,0.12); color: var(--blue-light); border-color: rgba(59,130,246,0.3); }

/* Contact / Form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75) !important; margin-bottom: 8px; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.9) !important;
  border-radius: 10px; font-family: 'Inter', sans-serif;
  font-size: 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.28) !important; }
.form-group select option { background: var(--dark2) !important; color: #fff !important; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15) !important;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.contact-info-panel {
  background: linear-gradient(145deg, rgba(59,130,246,0.08), rgba(139,92,246,0.06)) !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  border-radius: 20px;
}
.contact-info-panel h3, .contact-info-panel h4 { color: #fff !important; }
.contact-info-panel p, .contact-info-panel li { color: rgba(255,255,255,0.65) !important; }

/* Google Rating Bar */
.google-rating-bar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 16px; padding: 16px 20px; margin-top: 20px;
}
.g-rating-score { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 38px; color: #fff !important; line-height: 1; }
.g-rating-text { font-size: 12px; color: rgba(255,255,255,0.5) !important; margin-top: 2px; }
.g-logo { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5) !important; margin-left: auto; }
.g-logo-g { font-weight: 800; font-size: 18px; }
.g-logo-g span:nth-child(1) { color: #4285F4; }
.g-logo-g span:nth-child(2) { color: #EA4335; }
.g-logo-g span:nth-child(3) { color: #FBBC05; }
.g-logo-g span:nth-child(4) { color: #4285F4; }
.g-logo-g span:nth-child(5) { color: #34A853; }
.g-logo-g span:nth-child(6) { color: #EA4335; }

.verified-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  color: #16a34a; padding: 2px 8px; border-radius: 100px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px; margin-top: 4px; text-transform: uppercase;
}
.verified-badge i { font-size: 9px; }

/* Blog post pages */
[id^="page-blog-"] h2, [id^="page-blog-"] h3 { color: #fff !important; }
[id^="page-blog-"] p, [id^="page-blog-"] li { color: rgba(255,255,255,0.72) !important; }
[id^="page-blog-"] strong { color: #fff !important; }
[id^="page-blog-"] a:not(.btn-orange) { color: var(--blue-light) !important; }
[id^="page-blog-"] div[style*="border-left"] {
  background: rgba(59,130,246,0.08) !important;
  border-left-color: var(--blue) !important;
  color: rgba(255,255,255,0.85) !important;
}

/* About */
.cert-badge, .partner-logo-wrap {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* M365 app tiles */
.m365-app-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.m365-app-tile {
  background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 14px !important; padding: 20px 16px !important; text-align: center !important;
  transition: all 0.25s !important; cursor: default !important;
}
.m365-app-tile:hover {
  background: rgba(59,130,246,0.1) !important;
  border-color: rgba(59,130,246,0.25) !important;
  transform: translateY(-4px) !important;
}
.m365-app-tile i { font-size: 28px !important; color: var(--blue-light) !important; margin-bottom: 10px !important; display: block !important; }
.m365-app-tile p { color: rgba(255,255,255,0.75) !important; font-size: 13px !important; font-weight: 500 !important; }
.m365-apps-panel { background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.09) !important; border-radius: 20px !important; padding: 28px !important; }
.m365-apps-panel h3 { color: #fff !important; font-size: 18px !important; margin-bottom: 20px !important; }

#page-svc-m365 .app-grid div,
#page-svc-m365 [style*="background:#0B"],
#page-svc-m365 [style*="background:var(--navy"] { background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.09) !important; }

[style*="background:#fff;border-radius"][style*="border:1px"] { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.09) !important; }

/* ==========================================================================
   FLOATING & STICKY ELEMENTS
   ========================================================================== */

/* Float CTA button */
.float-cta {
  position: fixed !important;
  bottom: 28px !important; right: 28px !important;
  z-index: 9000 !important;
  display: none;
  align-items: center !important; gap: 8px !important;
  padding: 12px 22px !important; border-radius: 100px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important; font-size: 13px !important;
  text-decoration: none !important; letter-spacing: 0.02em !important;
  cursor: pointer !important;
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(59,130,246,0.45) !important;
  transition: all 0.25s !important;
  animation: floatPulse 3s ease-in-out infinite !important;
}
.float-cta:hover {
  transform: translateY(-3px) scale(1.04) !important;
  box-shadow: 0 8px 40px rgba(59,130,246,0.65) !important;
}
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(59,130,246,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(59,130,246,0.65); }
}

/* Mobile sticky bottom bar */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--dark1);
  border-top: 2px solid rgba(255,255,255,0.1);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  gap: 10px;
}
.sticky-bar-call {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
  color: #fff !important; font-weight: 700 !important;
  padding: 13px 10px; border-radius: 10px !important;
  font-family: 'Inter', sans-serif; font-size: 15px;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.sticky-bar-quote {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--dark2) !important;
  border: 1.5px solid rgba(59,130,246,0.35) !important;
  color: #fff !important; font-weight: 600 !important;
  padding: 13px 10px; border-radius: 10px !important;
  font-family: 'Inter', sans-serif; font-size: 14px;
  text-decoration: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.sticky-bar-call i, .sticky-bar-quote i { font-size: 15px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 501;
  background: var(--dark2) !important;
  border-top: 3px solid var(--blue) !important;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -6px 32px rgba(0,0,0,0.3);
  transform: translateY(0); transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.78) !important; flex: 1; min-width: 240px; line-height: 1.5; }
.cookie-text a { color: var(--blue-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: linear-gradient(135deg, var(--blue), var(--purple)) !important;
  color: #fff !important; border: none; padding: 9px 22px; border-radius: 10px !important;
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); padding: 9px 18px;
  border-radius: 6px; font-size: 13px; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 1024px — Large tablets */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-dropdown { width: min(600px, 95vw); }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 900px — Tablets */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .how-it-works-card { order: 2; }
  .about-text { order: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-row-2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .overview-grid { grid-template-columns: 1fr; }
  .compliance-item { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-form-card { position: static; }
  .page-hero { padding: 60px 0 70px; min-height: 340px; }
  .page-hero h1 { font-size: clamp(24px, 6vw, 36px); }
  .page-hero p { font-size: 15px; }
}

/* 768px — Mobile */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links { display: none !important; }
  .nav-phone { display: none !important; }
  .nav-right > .btn-orange { display: none !important; }
  .hamburger { display: flex !important; }
  .main-nav { height: 60px; padding: 0 16px; }

  /* Base */
  .container { padding: 0 18px !important; }

  /* Grids → single column */
  .services-grid, .testimonials-grid, .blog-grid, .why-grid,
  .industries-grid, .ind-row-2, .areas-grid, .footer-grid,
  .ind-services-grid, .why-us-grid, .mega-grid, .checklist {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap:12px"],
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 12px"] { grid-template-columns: 1fr 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 3px"],
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap:3px"] { grid-template-columns: 1fr 1fr !important; }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"] { grid-template-columns: 1fr 1fr !important; }

  /* Section spacing */
  .services-section, .why-section, .industries-section,
  .testimonials-section, .blog-section, .areas-section,
  .about-section, .overview-section, .compliance-deep-dive,
  .ind-services-section, .why-us-page, .faq-section,
  .reviews-section { padding: 48px 0 !important; }
  section[style*="padding: 80px"], section[style*="padding:80px"],
  section[style*="padding: 70px"], section[style*="padding:70px"] { padding: 48px 0 !important; }

  /* Hero */
  .hero-content-wrap { padding: 80px 0 72px !important; align-items: flex-start !important; }
  .hero-content { max-width: 100%; width: 100%; }
  .hero-geo-tag { font-size: 12px !important; padding: 5px 14px !important; margin-bottom: 16px !important; }
  .hero-h1 { font-size: 30px !important; line-height: 1.12 !important; margin-bottom: 14px !important; }
  .hero-sub { font-size: 15px !important; margin-bottom: 24px !important; line-height: 1.65 !important; }
  .hero-btns { flex-direction: column !important; gap: 12px !important; margin-bottom: 28px !important; }
  .hero-btns a { width: 100% !important; justify-content: center !important; padding: 16px 20px !important; font-size: 16px !important; box-sizing: border-box !important; }
  .hero-stats { grid-template-columns: repeat(2, 1fr) !important; max-width: 100% !important; gap: 2px !important; }
  .stat-item { padding: 16px 8px !important; }
  .stat-num { font-size: 24px !important; }
  .stat-label { font-size: 11px !important; }
  .hero-dots { bottom: 12px !important; }

  /* Trust bar */
  .trust-ribbon-item { padding: 0 16px !important; }

  /* About */
  .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .how-it-works-card { padding: 28px 20px !important; order: 2; }
  .about-text { order: 1; }
  .about-text h2 { font-size: 26px !important; }

  /* Nav */
  .mobile-sticky-bar { display: flex; }
  .site-footer { padding-bottom: 72px; }
  .cookie-banner { padding: 14px 16px 84px; flex-direction: column; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }

  /* Drawer */
  .mobile-drawer { width: 85vw !important; max-width: 320px !important; }

  /* Blog post */
  .blog-post-body { padding: 40px 20px !important; }
  .blog-post-body h2 { font-size: 20px !important; }

  /* M365 app grid */
  .m365-app-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Float CTA — hide on mobile (sticky bar shown instead) */
  .float-cta { display: none !important; }
}

/* 480px — Small phones */
@media (max-width: 480px) {
  .m365-app-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-h1 { font-size: 26px !important; }
  .section-header h2 { font-size: 22px !important; }
}
