/* ============================================================
   style.css — Avatechtax Consultancy
   Full design token + component stylesheet mirroring the
   React / Tailwind / shadcn-ui source exactly.
   ============================================================ */

/* ── Design Tokens (mirrors index.css :root) ──────────────── */
:root {
  --radius: 0.5rem;

  /* Core palette */
  --background:          hsl(0, 0%, 100%);
  --foreground:          hsl(222.2, 84%, 4.9%);
  --card:                hsl(0, 0%, 100%);
  --card-foreground:     hsl(222.2, 84%, 4.9%);
  --primary:             hsl(222.2, 47.4%, 11.2%);
  --primary-foreground:  hsl(210, 40%, 98%);
  --secondary:           hsl(210, 40%, 96.1%);
  --secondary-foreground:hsl(222.2, 47.4%, 11.2%);
  --muted:               hsl(210, 40%, 96.1%);
  --muted-foreground:    hsl(215.4, 16.3%, 46.9%);
  --border:              hsl(214.3, 31.8%, 91.4%);
  --input:               hsl(214.3, 31.8%, 91.4%);
  --accent:              hsl(210, 40%, 96.1%);
  --accent-foreground:   hsl(222.2, 47.4%, 11.2%);
  --destructive:         hsl(0, 84.2%, 60.2%);
  --ring:                hsl(222.2, 84%, 4.9%);

  /* Derived shorthands used across components */
  --muted-bg:      hsl(210, 40%, 96.1%);
  --muted-bg-30:   hsl(210 40% 96.1% / 0.30);
  --muted-bg-50:   hsl(210 40% 96.1% / 0.50);
  --primary-10:    hsl(222.2 47.4% 11.2% / 0.10);
  --primary-20:    hsl(222.2 47.4% 11.2% / 0.20);
  --primary-5:     hsl(222.2 47.4% 11.2% / 0.05);
  --white-10:      rgba(255,255,255,0.10);
  --white-20:      rgba(255,255,255,0.20);
  --white-70:      rgba(255,255,255,0.70);
  --white-80:      rgba(255,255,255,0.80);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Scrollbar ────────────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: hsl(214.3 31.8% 91.4%) transparent; }
*::-webkit-scrollbar { width: 6px; background: transparent; }
*::-webkit-scrollbar-thumb { background: hsl(214.3 31.8% 91.4%); border-radius: 3px; }

/* ── Container (mirrors tailwind container: center, 2rem pad, 1400px max) */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: inherit; font-size: 0.875rem; font-weight: 500;
  border: none; border-radius: var(--radius);
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s, background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-sm   { height: 2.25rem; padding: 0 0.875rem; font-size: 0.8125rem; }
.btn-md   { height: 2.25rem; padding: 0 1rem; }
.btn-lg   { height: 2.75rem; padding: 0 2rem; font-size: 1rem; }
.btn-xl   { height: 3rem;    padding: 0 3rem; font-size: 1.125rem; font-weight: 700; }

.btn-primary   { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: 0.9; }

.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-secondary:hover { opacity: 0.85; }

.btn-outline {
  background: var(--background); color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--muted); }

.btn-outline-primary {
  background: transparent; color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: var(--primary-foreground); }

.btn-ghost {
  background: transparent; color: var(--primary);
  border: none;
}
.btn-ghost:hover { background: var(--primary-10); }

.btn-ghost-white {
  background: var(--white-10); color: white;
  border: 1px solid rgba(255,255,255,0.50);
}
.btn-ghost-white:hover { background: var(--white-20); }

.btn-white {
  background: white; color: var(--primary); font-weight: 700;
}
.btn-white:hover { opacity: 0.9; }

.btn-full { width: 100%; }

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-primary { background: var(--primary); color: var(--primary-foreground); }

/* ============================================================
   NAVBAR  (matches Navbar.tsx)
   ============================================================ */
.navbar {
  position: fixed; top: 0; z-index: 50; width: 100%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
/* All states: links & brand use dark colour (navbar always has white bg) */
.navbar:not(.scrolled) .nav-desktop a { color: var(--foreground); }
.navbar:not(.scrolled) .nav-desktop a:hover,
.navbar:not(.scrolled) .nav-desktop a.active { color: var(--primary); }
.navbar:not(.scrolled) .nav-brand-name { color: var(--primary); }
.navbar:not(.scrolled) .hamburger-btn svg { stroke: var(--foreground); }
/* Non-hero pages start opaque */
.navbar.navbar-opaque {
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex; height: 5rem;
  align-items: center; justify-content: space-between;
}

.nav-brand { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo  { height: 4rem; width: auto; }
.nav-brand-name { font-weight: 700; font-size: 1.25rem; color: var(--primary); }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted-foreground); transition: color 0.15s;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--primary); }
/* ── Pricing nav link — bounce + red badge ── */
.nav-pricing-link {
  position: relative;
  color: #dc2626 !important;
  font-weight: 700 !important;
  animation: navPricingBounce 1.8s ease infinite;
  display: inline-flex;
  align-items: center;
}
.nav-pricing-link::after {
  content: 'NEW';
  display: inline-block;
  background: #dc2626;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 0.1rem 0.35rem;
  border-radius: 9999px;
  vertical-align: middle;
  line-height: 1.4;
  margin-left: 0.3rem;
}
.nav-pricing-link:hover { color: #b91c1c !important; }
@keyframes navPricingBounce {
  0%, 100% { transform: translateY(0); }
  18%       { transform: translateY(-5px); }
  36%       { transform: translateY(0); }
  52%       { transform: translateY(-3px); }
  68%       { transform: translateY(0); }
}

/* Mobile hamburger */
.nav-mobile-toggle { display: none; }
.hamburger-btn {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: transparent; border: none; cursor: pointer;
  border-radius: var(--radius); transition: background 0.15s;
}
.hamburger-btn:hover { background: var(--muted); }
.hamburger-btn svg { width: 1.5rem; height: 1.5rem; stroke: var(--foreground); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Mobile drawer */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 49;
  background: rgba(0,0,0,0.4);
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; z-index: 50;
  background: var(--background); border-left: 1px solid var(--border);
  padding: 1.5rem; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.mobile-drawer.open  { transform: translateX(0); }
.mobile-overlay.open { display: block; }
.mobile-drawer nav   { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.mobile-drawer nav a { font-size: 1.125rem; font-weight: 500; color: var(--muted-foreground); transition: color 0.15s; }
.mobile-drawer nav a:hover,
.mobile-drawer nav a.active { color: var(--primary); }
.drawer-close {
  align-self: flex-end; background: transparent; border: none;
  cursor: pointer; padding: 0.25rem; border-radius: var(--radius);
}
.drawer-close:hover { background: var(--muted); }
.drawer-close svg { width: 1.5rem; height: 1.5rem; stroke: var(--foreground); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   FOOTER  (matches Footer.tsx)
   ============================================================ */
.footer {
  background: var(--muted-bg-50);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem;
}
.footer-col     { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand   { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.footer-col > p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
.footer-social  { display: flex; gap: 1rem; }
.footer-social a { color: var(--muted-foreground); transition: color 0.15s; }
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-heading { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--foreground); }
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-item svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 0.125rem; }
.footer-contact-item span { font-size: 0.875rem; color: var(--muted-foreground); }
.footer-bottom {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.875rem; color: var(--muted-foreground); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   WHATSAPP BUTTON  (matches WhatsAppButton.tsx)
   ============================================================ */
.wa-wrapper {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  display: flex; align-items: center; gap: 0.5rem;
}
.wa-label {
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500; color: #16a34a;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transform: translateX(-0.5rem); transition: opacity 0.3s, transform 0.3s;
}
.wa-wrapper:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  display: flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: #25D366; flex-shrink: 0;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15), 0 8px 10px -6px rgba(0,0,0,0.1);
  transition: background 0.2s, transform 0.2s;
}
.wa-btn:hover { background: #20ba5a; transform: scale(1.1); }
.wa-btn svg { width: 1.75rem; height: 1.75rem; fill: white; stroke: none; }

/* ============================================================
   TOAST
   ============================================================ */
#toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #16a34a; color: #fff;
  padding: 0.875rem 1.5rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 500;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  z-index: 9999; max-width: 90vw; text-align: center; pointer-events: none;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   PAGE HEADER BANNER  (bg-image + blue overlay, text centered)
   ============================================================ */
.page-header {
  position: relative; overflow: hidden;
  color: #fff;
  padding: 7rem 2rem 5rem; /* extra top for fixed navbar */
  text-align: center;
  /* fallback bg if no inline style */
  background-color: var(--primary);
  isolation: isolate; /* creates stacking context */
}
/* Background image set via inline style="--ph-img:url(...)" on each <section> */
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--ph-img, none);
  background-size: cover; background-position: center;
  z-index: 0;
}
/* Blue semi-transparent overlay — reveals the photo beneath */
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 42, 85, 0.38);
  z-index: 1;
}
.page-header .page-header-inner {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 700;
  letter-spacing: -0.025em; margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  animation: heroFadeUp 0.8s 0.05s ease both;
}
.page-header p {
  font-size: 1.25rem; color: rgba(255,255,255,0.95);
  max-width: 42rem; margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  animation: heroFadeUp 0.8s 0.2s ease both;
}

/* ── audit-hero also supports bg-image ── */
.audit-hero {
  position: relative; overflow: hidden;
  isolation: isolate;
}
.audit-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--ph-img, none);
  background-size: cover; background-position: center;
  z-index: 0;
}
.audit-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 42, 85, 0.62);
  z-index: 1;
}
.audit-hero-inner { position: relative; z-index: 3; }
/* ── Auditing page with sidebar ── */
.audit-with-sidebar {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0 1.5rem;
}
.audit-sidebar { min-width: 0; }
.audit-main { min-width: 0; padding: 0; }
@media (max-width: 1024px) {
  .audit-with-sidebar { grid-template-columns: 1fr; }
  .audit-sidebar { display: none; }
}
/* ── Full-width sections below the sidebar layout ── */
.page-fullwidth-sections { padding: 0 0 2rem; }
.page-fullwidth-sections .container { display: flex; flex-direction: column; gap: 2rem; }
.page-fullwidth-sections .sc { width: 100%; }

/* ============================================================
   HOME PAGE
   ============================================================ */

/* ── Service feature cards (dark grid – matching reference image) ── */
.svc-feature-section { margin: 2rem 0 1rem; }
.svc-feature-label {
  font-size: 1.125rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--foreground);
  display: block;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--primary);
}
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.svc-card {
  background: #1e3a5a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.875rem;
  padding: 1.4rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 11rem;
  color: #fff;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: rgba(255,255,255,0.35); transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
.svc-card.accent-card { background: #b07a18; }
.svc-card-top { margin-bottom: 0.75rem; }
.svc-card-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.18);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.svc-card.accent-card .svc-card-icon { background: rgba(255,255,255,0.22); }
.svc-card-icon svg {
  width: 1.2rem; height: 1.2rem;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.svc-card-name {
  font-size: 1rem; font-weight: 800;
  color: #fff; line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.svc-card-desc {
  font-size: 0.8125rem; color: rgba(255,255,255,0.82);
  line-height: 1.55; margin-top: 0.25rem;
}
/* Responsive */
@media (max-width: 1024px) { .svc-cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .svc-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .svc-cards-grid { grid-template-columns: 1fr; } }

/* Hero */
.hero {
  position: relative; min-height: 580px;
  display: flex; align-items: center;
  background-color: var(--primary);
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center;
  color: white; overflow: hidden;
  padding-top: 5rem; /* offset for fixed navbar */
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10, 42, 85, 0.40);
  z-index: 1;
}
.hero .container { position: relative; z-index: 10; padding-top: 3rem; padding-bottom: 3rem; }
.hero-content { max-width: 54rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem;
  animation: heroFadeUp 0.9s ease both; }
.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.15;
  animation: heroFadeUp 0.9s 0.1s ease both;
}
.hero-subtitle { font-size: 1.5rem; font-weight: 600; color: #fb923c; line-height: 1.5;
  animation: heroFadeUp 0.9s 0.25s ease both; }
.hero-desc     { font-size: 1.25rem; color: rgba(255,255,255,0.95); line-height: 1.625; max-width: 42rem;
  animation: heroFadeUp 0.9s 0.4s ease both; }
.hero-buttons  { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; padding-top: 1rem;
  animation: heroFadeUp 0.9s 0.55s ease both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stats bar */
.stats-bar { background: var(--muted-bg-30); padding: 3rem 0; border-bottom: 1px solid var(--border); }

/* ── Home Intro / About Section ── */
.home-intro {
  padding: 5rem 0 6rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.home-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.home-intro-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--primary);
  margin-bottom: 0.75rem;
}
.home-intro-label::before {
  content: ''; display: block; width: 2rem; height: 2px; background: var(--primary);
}
.home-intro-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -0.025em; margin-bottom: 1.5rem;
  color: var(--foreground);
}
.home-intro-accent {
  color: var(--primary);
}
.home-intro-text p {
  font-size: 1.0625rem; color: var(--muted-foreground);
  line-height: 1.8; margin-bottom: 1rem;
}
.home-intro-text p:last-of-type { margin-bottom: 0; }
.home-intro-badges {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.75rem;
}
.home-intro-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary-light, #eef3fb);
  color: var(--primary);
  border: 1px solid rgba(10,42,85,0.12);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem; font-weight: 600;
}
.home-intro-badge svg {
  width: 0.9rem; height: 0.9rem;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
/* Who We Are — right visual column */
.home-intro-visual { display: flex; flex-direction: column; gap: 1.25rem; }
.hiv-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
.hiv-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  background: linear-gradient(135deg, hsl(215 60% 18%), hsl(215 80% 26%));
  border: none;
}
.hiv-stat { text-align: center; padding: .25rem 0; }
.hiv-stat-num { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.hiv-stat-num span { font-size: 1.1rem; color: rgba(255,255,255,.7); }
.hiv-stat-lbl { font-size: .72rem; color: rgba(255,255,255,.65); margin-top: .35rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.hiv-feature-list { display: flex; flex-direction: column; gap: .85rem; }
.hiv-feature { display: flex; align-items: flex-start; gap: .85rem; }
.hiv-feature-icon {
  width: 2.25rem; height: 2.25rem; flex-shrink: 0;
  background: hsl(215 60% 95%); border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
}
.hiv-feature-icon svg {
  width: 1rem; height: 1rem;
  stroke: var(--primary); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hiv-feature-name { font-size: .88rem; font-weight: 700; color: var(--foreground); line-height: 1.3; }
.hiv-feature-desc { font-size: .78rem; color: var(--muted-foreground); margin-top: .15rem; line-height: 1.5; }
@media (max-width: 768px) {
  .home-intro { padding: 3.5rem 0 4rem; }
  .home-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-intro-visual { display: none; }
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.stat-label  { font-size: 0.875rem; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

/* Services overview */
.services-section { padding: 6rem 0; background: white; }
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.section-header p  { font-size: 1.125rem; color: var(--muted-foreground); }

.service-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
  border: 1px solid hsl(222.2 47.4% 11.2% / 0.1);
  border-radius: 1rem; padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
  border-color: var(--primary-20);
}
.service-card-icon {
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: var(--primary-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: background 0.3s, color 0.3s;
}
.service-card:hover .service-card-icon { background: var(--primary); color: white; }
.service-card-icon svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-weight: 700; font-size: 1.125rem; }
.service-card p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 700; color: var(--primary);
  margin-top: 0.5rem;
}
.service-card-link:hover { text-decoration: underline; }
.service-card-link svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.services-view-all { text-align: center; margin-top: 3rem; }

/* Why choose us */
.why-section { background: var(--primary); color: white; padding: 6rem 0; }
.why-inner   { max-width: 56rem; margin: 0 auto; }
.why-title   { text-align: center; margin-bottom: 3rem; }
.why-title h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
.why-title p  { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
.why-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.why-item    { display: flex; gap: 1rem; padding: 1.5rem; border-radius: 1rem; background: var(--white-10); border: 1px solid rgba(255,255,255,0.1); }
.why-icon-wrap { background: var(--secondary); border-radius: 9999px; padding: 0.5rem; height: fit-content; flex-shrink: 0; }
.why-icon-wrap svg { width: 1.5rem; height: 1.5rem; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-item h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.why-item p  { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Bottom CTA */
.cta-section { padding: 6rem 0; text-align: center; background: var(--muted-bg-30); }
.cta-inner   { max-width: 56rem; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.cta-inner p  { font-size: 1.25rem; color: var(--muted-foreground); margin-bottom: 2rem; }
.cta-buttons  { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-who { padding: 6rem 0; }
.about-who-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.about-who h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: 2rem; }
.about-who p  { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.75; margin-bottom: 1.5rem; }
.about-who .quote {
  font-size: 1.25rem; font-weight: 700; font-style: italic; color: var(--primary);
  border-top: 2px solid hsl(222.2 47.4% 11.2% / 0.1);
  border-bottom: 2px solid hsl(222.2 47.4% 11.2% / 0.1);
  padding: 2rem 0; margin: 1.5rem 0;
}

.mv-section { background: var(--muted-bg-30); padding: 6rem 0; }
.mv-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.mv-card {
  background: white; border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.mv-card-icon {
  width: 4rem; height: 4rem; border-radius: 1rem;
  background: var(--primary-10);
  display: flex; align-items: center; justify-content: center;
}
.mv-card-icon svg { width: 2rem; height: 2rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mv-card h3 { font-size: 1.5rem; font-weight: 700; }
.mv-card p  { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.75; }

.values-section { padding: 6rem 0; }
.values-section h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 4rem; }
.values-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card   { text-align: center; padding: 2rem; border-radius: 1rem; border: 1px solid var(--border); transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.value-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,0.10); transform: translateY(-4px); border-color: var(--primary-20); }
.value-card h4 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; }
.value-card p  { color: var(--muted-foreground); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-page { padding: 3rem 0 6rem; }
.services-layout { display: flex; gap: 2rem; align-items: flex-start; }

/* Sidebar — compact */
.services-sidebar { width: 14rem; flex-shrink: 0; }
.sidebar-sticky   { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1rem; }
.sidebar-heading  { font-size: 1rem; font-weight: 700; border-bottom: 1px solid var(--border); padding-bottom: 0.625rem; }
.sidebar-nav      { display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.625rem 0.75rem; border-radius: 0.625rem;
  font-size: 0.8125rem; font-weight: 500;
  background: var(--muted-bg-50); color: var(--muted-foreground);
  cursor: pointer; border: none; width: 100%; text-align: left;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  font-family: inherit;
}
.sidebar-link:hover  { background: var(--primary-10); color: var(--primary); transform: translateX(3px); }
.sidebar-link.active { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.sidebar-link-inner  { display: flex; align-items: center; gap: 0.5rem; }
.sidebar-link-inner svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sidebar-link .chevron { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.18s; }
.sidebar-link:hover .chevron { transform: translateX(3px); }
.sidebar-help {
  background: var(--primary-5); border-radius: 0.875rem;
  border: 1px solid var(--primary-10); padding: 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.sidebar-help h4 { font-weight: 700; color: var(--primary); font-size: 0.875rem; }
.sidebar-help p  { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.6; }
.sidebar-help a  { font-size: 0.8125rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 0.25rem; }
.sidebar-help a:hover { text-decoration: underline; }
.sidebar-help a svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Service detail */
.service-content { flex: 1; min-width: 0; }
.service-panel   { display: none; }
.service-panel.active { display: block; animation: fadeIn 0.35s ease both; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Service banner — full-width image with overlay */
.service-banner {
  height: 18rem; width: 100%; overflow: hidden;
  border-radius: 1.25rem; position: relative;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.service-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform 0.5s ease;
}
.service-banner:hover img { transform: scale(1.04); }
.service-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,42,85,0.72) 0%, rgba(10,42,85,0.35) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.service-banner-overlay h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: #fff; line-height: 1.2; }
.service-banner-overlay p  { font-size: 1rem; color: rgba(255,255,255,0.85); margin-top: 0.5rem; max-width: 36rem; }

.service-detail-grid { display: grid; grid-template-columns: 1fr 16rem; gap: 2rem; }
.service-main { display: flex; flex-direction: column; gap: 2rem; }
.service-main h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.service-main p  { font-size: 1.125rem; color: var(--muted-foreground); line-height: 1.75; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.benefit-item  {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem; border-radius: 0.75rem;
  background: var(--muted-bg-30); border: 1px solid hsl(214.3 31.8% 91.4% / 0.5);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.benefit-item:hover {
  background: var(--primary-10); border-color: var(--primary-20);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.benefit-item svg { width: 1.25rem; height: 1.25rem; stroke: #10b981; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.benefit-item span { font-size: 0.875rem; font-weight: 500; }

.service-cta-box {
  background: var(--muted-bg-50); border-radius: 1.5rem;
  border: 1px solid hsl(214.3 31.8% 91.4% / 0.5); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.service-cta-box h3 { font-size: 1.5rem; font-weight: 700; }
.service-cta-box p  { color: var(--muted-foreground); line-height: 1.7; }
.service-cta-btns   { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Service sidebar widgets — now inline full-width */
.service-aside { display: flex; flex-direction: column; gap: 2rem; }
.commitment-card {
  background: var(--primary); color: white;
  border-radius: 1.25rem; padding: 1.5rem 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.commitment-title {
  font-size: 1.125rem; font-weight: 700;
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 0.875rem;
}
.commitment-list  { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; grid-column: 1 / -1; }
.commitment-item  { display: flex; align-items: flex-start; gap: 0.625rem; }
.commitment-check { background: var(--white-10); border-radius: 9999px; padding: 0.25rem; height: fit-content; flex-shrink: 0; }
.commitment-check svg { width: 1rem; height: 1rem; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.commitment-item p  { font-size: 0.875rem; color: rgba(255,255,255,0.85); }

.other-services-card {
  background: white; border-radius: 1.5rem;
  border: 1px solid var(--border); padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 1.5rem;
}
.other-services-card h4 { font-size: 1.25rem; font-weight: 700; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.other-service-link {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.75rem; border-radius: 0.75rem;
  transition: background 0.15s, color 0.15s;
}
.other-service-link:hover { background: var(--muted-bg-50); }
.other-service-link:hover span { color: var(--primary); }
.other-service-link span { font-weight: 700; font-size: 0.875rem; transition: color 0.15s; }
.other-service-link small { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Other Services full-width section (before footer) ── */
.other-services-section {
  padding: 5rem 0; background: var(--muted-bg-30);
  border-top: 1px solid var(--border);
}
.other-services-section .section-header { margin-bottom: 2.5rem; }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.other-service-card {
  background: white; border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none; color: var(--foreground);
}
.other-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border-color: var(--primary-20);
}
.other-service-card-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--primary-10);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.other-service-card-icon svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.other-service-card h4 { font-size: 1rem; font-weight: 800; color: var(--foreground); }
.other-service-card p  { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.55; flex: 1; }
.other-service-card .os-link { font-size: 0.8125rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 0.25rem; margin-top: auto; }
.other-service-card .os-link svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── Individual service page sidebar ──────────────────────── */
.svc-page-layout {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem 0;
}
.svc-page-sidebar {
  width: 15rem;
  flex-shrink: 0;
  position: sticky;
  top: 5.5rem;
}
.svc-page-sidebar-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}
.svc-page-sidebar-heading {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}
.svc-page-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.svc-page-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.svc-page-sidebar-link:hover {
  background: var(--primary-10);
  color: var(--primary);
  transform: translateX(3px);
}
.svc-page-sidebar-link.active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.svc-page-sidebar-link svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svc-page-main { flex: 1; min-width: 0; }
.svc-page-main .service-fullwidth { padding-left: 0; padding-right: 0; }
.svc-page-main .service-fullwidth .container,
.svc-page-main .pricing-section .container,
.svc-page-main .faq-section .container,
.svc-page-main .other-services-section .container { max-width: 100%; padding-left: 0; padding-right: 0; }

/* Collapse sidebar below 1024px */
@media (max-width: 1023px) {
  .svc-page-layout { flex-direction: column; padding: 1.5rem 1rem 0; }
  .svc-page-sidebar { width: 100%; position: static; }
  .svc-page-sidebar-inner { display: none; }
  .svc-page-main .service-fullwidth { padding-left: 0; padding-right: 0; }
  .svc-page-main .service-fullwidth .container,
  .svc-page-main .pricing-section .container,
  .svc-page-main .faq-section .container,
  .svc-page-main .other-services-section .container { padding-left: 0; padding-right: 0; }
}

.service-fullwidth {
  width: 100%;
  padding: 4rem 2rem;
  background: var(--background);
}
.service-fullwidth .container { max-width: 1400px; margin: 0 auto; }
.service-fullwidth + .service-fullwidth { padding-top: 0; }

/* ── Pricing section ── */
.pricing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(222.2 47.4% 6%) 0%, hsl(222.2 47.4% 11%) 100%);
}
.pricing-section .section-header { margin-bottom: 3rem; text-align: center; }
.pricing-section .section-header h2 { color: #fff; }
.pricing-section .section-header p  { color: rgba(255,255,255,0.75); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 1.5rem;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.25);
}
.pricing-card.popular {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(10,42,85,0.45);
}
.pricing-card.popular:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(10,42,85,0.5);
}
.pricing-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: linear-gradient(135deg, #c9952a 0%, #f0c040 50%, #c9952a 100%);
  color: #5a3800;
  font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  box-shadow: 0 3px 10px rgba(201,149,42,0.55);
}
.pricing-plan {
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.pricing-card.popular .pricing-plan { color: rgba(255,255,255,0.8); }
.pricing-amount {
  display: flex; align-items: flex-end; gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.pricing-currency { font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1.8; }
.pricing-price    { font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1; }
/* override specificity for audit-page inline pricing grid */
.pricing-grid .pricing-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); line-height: 1.4; }
.pricing-period   { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.pricing-card.popular .pricing-period { border-color: rgba(255,255,255,0.25); }
.pricing-desc { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; flex: 1; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.85);
}
.pricing-feature svg { width: 1rem; height: 1rem; stroke: #10b981; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-card.popular .pricing-feature svg { stroke: #6ee7b7; }
.pricing-cta {
  display: block; text-align: center;
  padding: 0.875rem 1.5rem; border-radius: 0.75rem;
  font-size: 0.9375rem; font-weight: 700;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, border-color 0.2s;
  margin-top: auto;
}
.pricing-cta:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.pricing-card.popular .pricing-cta {
  background: #fff; color: var(--primary);
  border-color: #fff;
}
.pricing-card.popular .pricing-cta:hover { background: rgba(255,255,255,0.92); }
.pricing-note {
  text-align: center; margin-top: 2rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
}
.pricing-note a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ── CEO message section ── */
.ceo-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a6e 60%, #0f2548 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ceo-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ceo-inner {
  display: grid; grid-template-columns: 24rem 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.ceo-image-wrap {
  position: relative;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 100%);
  padding: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.ceo-image-wrap img {
  width: 100%; border-radius: 1rem;
  object-fit: cover; object-position: center top;
  display: block;
  aspect-ratio: 4/5;
}
.ceo-image-wrap::after {
  content: '';
  position: absolute; bottom: -1rem; right: -1rem;
  width: 55%; height: 55%;
  border: 3px solid rgba(255,255,255,0.35); border-radius: 1rem;
  z-index: -1;
}
.ceo-content { display: flex; flex-direction: column; gap: 1.5rem; }
.ceo-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
}
.ceo-label::before {
  content: ''; display: block; width: 2rem; height: 2px; background: rgba(255,255,255,0.5);
}
.ceo-content h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.25; color: #fff; }
.ceo-quote {
  font-size: 1.0625rem; color: rgba(255,255,255,0.85); line-height: 1.75;
  font-style: italic; position: relative; padding-left: 1.5rem;
}
.ceo-quote::before {
  content: '\201C'; position: absolute; left: 0; top: -0.25rem;
  font-size: 3rem; color: rgba(255,255,255,0.5); line-height: 1; font-style: normal;
  font-family: Georgia, serif;
}
.ceo-message { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.75; }
.ceo-sig { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 0.5rem; }
.ceo-sig strong { font-size: 1.125rem; font-weight: 700; color: #fff; }
.ceo-sig span   { font-size: 0.875rem; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
  .ceo-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ceo-image-wrap { max-width: 18rem; margin: 0 auto; }
  .service-fullwidth { padding: 3rem 1rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 6rem 0; }
.contact-grid    { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info-side h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info-side > p { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 2rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; border-radius: 1rem;
  background: var(--muted-bg-30); border: 1px solid hsl(214.3 31.8% 91.4% / 0.5);
  transition: background 0.15s, border-color 0.15s;
}
.contact-info-card:hover { background: var(--muted-bg-50); border-color: var(--primary); }
.contact-info-card:hover .cic-title { color: var(--primary); }
.cic-icon-wrap {
  background: white; padding: 0.75rem; border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08); flex-shrink: 0;
  transition: background 0.15s;
}
.contact-info-card:hover .cic-icon-wrap { background: var(--primary); }
.contact-info-card:hover .cic-icon-wrap svg { stroke: white; }
.cic-icon-wrap svg { width: 1.5rem; height: 1.5rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.cic-title { font-weight: 700; font-size: 1rem; transition: color 0.15s; }
.cic-detail { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* Contact Form card */
.contact-form-card {
  border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.contact-form-header {
  background: var(--primary-5);
  border-bottom: 1px solid var(--primary-10);
  padding: 2rem;
}
.contact-form-header h3 { font-size: 1.5rem; font-weight: 700; }
.contact-form-header p  { color: var(--muted-foreground); margin-top: 0.5rem; }
.contact-form-body { padding: 2rem; }
.form-grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-field   { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.5rem; }
.form-label   { font-size: 0.875rem; font-weight: 500; }
.form-input, .form-textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 1px solid var(--input); border-radius: var(--radius);
  font-size: 0.875rem; font-family: inherit;
  background: var(--background); color: var(--foreground);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsl(222.2 47.4% 11.2% / 0.15);
}
.form-textarea { resize: none; min-height: 9.375rem; }
.form-error  { font-size: 0.75rem; color: var(--destructive); margin-top: 0.25rem; display: none; }
.form-input.invalid { border-color: var(--destructive); }
.form-input.invalid + .form-error { display: block; }
.form-submit  { width: 100%; height: 3rem; font-size: 1.125rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-submit svg { width: 1.25rem; height: 1.25rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Map */
.map-section { height: 28rem; overflow: hidden; filter: grayscale(1); transition: filter 0.5s; }
.map-section:hover { filter: grayscale(0); }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section { padding: 5rem 0; }

/* ── Featured Post ── */
.blog-featured {
  margin-bottom: 3.5rem;
}
.blog-featured-inner {
  display: grid; grid-template-columns: 1fr 48%;
  gap: 0; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 8px 40px rgba(10,42,85,0.13);
  background: var(--card);
  border: 1px solid var(--border);
}
.blog-featured-img {
  min-height: 20rem;
  overflow: hidden;
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.5s ease;
}
.blog-featured-inner:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body {
  padding: 2.5rem 2.75rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.25rem;
}
.blog-featured-meta {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.blog-meta-date {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.8125rem; color: var(--muted-foreground);
}
.blog-meta-date svg { width: 0.85rem; height: 0.85rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-featured-title {
  font-size: clamp(1.35rem, 2.5vw, 1.875rem); font-weight: 800;
  line-height: 1.3; color: var(--foreground); letter-spacing: -0.02em;
}
.blog-featured-summary {
  font-size: 1rem; color: var(--muted-foreground); line-height: 1.75;
}
.blog-featured-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.5rem; align-self: flex-start;
}
.blog-featured-cta svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── Post Link List ── */
.blog-list-section { }
.blog-list-title {
  font-size: 1.25rem; font-weight: 700; color: var(--foreground);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.blog-link-list {
  display: flex; flex-direction: column; gap: 0;
}
.blog-link-item {
  display: grid; grid-template-columns: 7rem 1fr auto;
  gap: 1.25rem; align-items: center;
  padding: 1.125rem 1.25rem;
  border-radius: 0.75rem;
  text-decoration: none; color: inherit;
  transition: background 0.18s, box-shadow 0.18s;
  border-bottom: 1px solid var(--border);
}
.blog-link-item:last-child { border-bottom: none; }
.blog-link-item:hover {
  background: var(--muted-bg-30);
  box-shadow: 0 2px 12px rgba(10,42,85,0.07);
}
.blog-link-img {
  border-radius: 0.5rem; overflow: hidden;
  height: 5rem; flex-shrink: 0;
}
.blog-link-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform 0.35s;
}
.blog-link-item:hover .blog-link-img img { transform: scale(1.06); }
.blog-link-body { display: flex; flex-direction: column; gap: 0.375rem; min-width: 0; }
.blog-link-cat { align-self: flex-start; }
.blog-link-title {
  font-size: 0.9375rem; font-weight: 700; line-height: 1.4;
  color: var(--foreground);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.15s;
}
.blog-link-item:hover .blog-link-title { color: var(--primary); }
.blog-link-date {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
.blog-link-date svg { width: 0.75rem; height: 0.75rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-link-arrow {
  color: var(--primary); opacity: 0.5; flex-shrink: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.blog-link-arrow svg { width: 1.125rem; height: 1.125rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-link-item:hover .blog-link-arrow { opacity: 1; transform: translateX(3px); }

/* Legacy grid (kept for backward compat) */
.blog-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  display: flex; flex-direction: column;
  border-radius: 1rem; overflow: hidden;
  border: 1px solid transparent; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  background: var(--muted-bg-30);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.blog-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.13); transform: translateY(-4px); border-color: var(--primary-10); }
.blog-card-header { padding: 1.5rem 1.5rem 0.5rem; }
.blog-card-meta   { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--muted-foreground); margin: 1rem 0 0.75rem; }
.blog-card-meta svg { width: 0.75rem; height: 0.75rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-card-title { font-size: 1.25rem; font-weight: 700; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.15s;
}
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-body   { padding: 0.5rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: 1rem; }
.blog-card-summary { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--primary); font-size: 0.875rem; margin-top: auto; }
.blog-read-more:hover { text-decoration: underline; }
.blog-read-more svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Newsletter */
.newsletter-section { background: var(--muted-bg-30); padding: 6rem 0; }
.newsletter-card {
  max-width: 56rem; margin: 0 auto;
  background: var(--primary); border-radius: 2.5rem;
  padding: 3rem; text-align: center; color: white;
  display: flex; flex-direction: column; gap: 2rem;
}
.newsletter-card h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
.newsletter-card p  { color: var(--white-80); font-size: 1.125rem; }
.newsletter-form { display: flex; gap: 1rem; max-width: 32rem; margin: 0 auto; }
.newsletter-input {
  flex: 1; height: 3rem; padding: 0 1.5rem; border-radius: 9999px;
  background: white; color: var(--foreground);
  border: none; outline: none; font-size: 0.875rem; font-family: inherit;
}
.newsletter-btn {
  height: 3rem; padding: 0 2rem; border-radius: 9999px;
  background: var(--secondary); color: var(--secondary-foreground);
  font-weight: 500; font-size: 0.875rem; font-family: inherit;
  border: none; cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s;
}
.newsletter-btn:hover { opacity: 0.85; }

/* ============================================================
   AUDITING SERVICES DEDICATED PAGE
   ============================================================ */

/* Hero */
.audit-hero {
  background: var(--primary); color: var(--primary-foreground);
  padding: 7rem 2rem 3.5rem; /* extra top padding for fixed navbar */
}
.audit-hero-inner { max-width: 1400px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.breadcrumb a:hover { color: white; }
.breadcrumb svg { width: 0.75rem; height: 0.75rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.audit-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 1rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.audit-hero .subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.9); max-width: 44rem; line-height: 1.65; margin-bottom: 1.25rem; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.audit-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.audit-tag {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9); padding: 0.3rem 0.875rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 500;
}

/* Two-column layout */
.audit-page { padding: 3rem 0 5rem; }
.audit-body { display: flex; gap: 2.5rem; align-items: flex-start; }
.audit-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2rem; }
.audit-sidebar {
  width: 22rem; flex-shrink: 0;
  position: sticky; top: 6rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}

/* Section cards */
.sc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; overflow: hidden;
}
.sc-head {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  background: var(--muted-bg-30);
}
.sc-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: var(--primary-10);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sc-icon svg { width: 1.125rem; height: 1.125rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sc-head h2 { font-size: 1.125rem; font-weight: 700; }
.sc-body { padding: 1.5rem; }

/* Overview */
.overview-text p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.75; }
.overview-text p + p { margin-top: 1rem; }

/* Audit types */
.audit-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.audit-type {
  padding: 1rem; border-radius: 0.75rem;
  background: var(--muted-bg-50); border: 1px solid hsl(214.3 31.8% 91.4% / 0.6);
  display: flex; flex-direction: column; gap: 0.625rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.audit-type:hover {
  background: white; border-color: var(--primary-20);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.audit-type-icon-row { display: flex; align-items: center; gap: 0.625rem; }
.audit-type-icon { background: var(--primary); border-radius: 0.375rem; padding: 0.375rem; flex-shrink: 0; }
.audit-type-icon svg { width: 1rem; height: 1rem; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.audit-type h4 { font-size: 0.875rem; font-weight: 600; }
.audit-type p  { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.55; }

/* Process steps (legacy vertical list — service page uses card-grid override below) */
.process-steps { position: relative; }
.process-step  { display: flex; flex-direction: column; align-items: center; gap: .6rem; position: relative; }
.process-step:not(:last-child)::before {
  content: ''; position: absolute;
  left: 1.0625rem; top: 2.5rem; bottom: 0; width: 2px;
  background: var(--border);
}
.step-num {
  width: 2.125rem; height: 2.125rem; border-radius: 9999px;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700; flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-body { padding-bottom: 1.5rem; flex: 1; }
.step-body h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.375rem; }
.step-body p  { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.65; }

/* Benefits */
.benefits-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.benefit-2  { display: flex; align-items: flex-start; gap: 0.625rem; }
.b2-check   { background: var(--primary-10); border-radius: 9999px; padding: 0.1875rem; margin-top: 0.125rem; flex-shrink: 0; }
.b2-check svg { width: 0.875rem; height: 0.875rem; stroke: var(--primary); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; display: block; }
.benefit-2 span { font-size: 0.875rem; line-height: 1.5; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pricing-card { border: 1px solid var(--border); border-radius: 0.875rem; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.pricing-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-2px); }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
.pricing-popular { background: var(--primary); color: white; text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.375rem; }
.pricing-head { padding: 1.25rem; border-bottom: 1px solid var(--border); }
.pricing-head h3 { font-weight: 700; font-size: 1rem; }
.pricing-desc { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.375rem; line-height: 1.5; }
.pricing-features-list { padding: 1.25rem; flex: 1; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-features-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; line-height: 1.5; }
.pricing-features-list li svg { width: 0.875rem; height: 0.875rem; stroke: #16a34a; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.125rem; }
.pricing-foot { padding: 0.875rem 1.25rem 1.25rem; }
.pricing-note { margin-top: 1rem; padding: 0.875rem 1rem; background: var(--primary-5); border-left: 3px solid var(--primary); border-radius: 0 0.5rem 0.5rem 0; font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.65; }
.case-card { border: 1px solid var(--border); border-radius: 0.875rem; overflow: hidden; }
.case-card + .case-card { margin-top: 1.25rem; }
.case-top { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--muted-bg-50); border-bottom: 1px solid var(--border); }
.case-top h3 { font-weight: 700; font-size: 0.9375rem; flex: 1; }
.case-year { font-size: 0.75rem; color: var(--muted-foreground); white-space: nowrap; }
.case-body { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.case-col { padding: 1.25rem; }
.case-col:not(:last-child) { border-right: 1px solid var(--border); }
.case-col h5 { font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.case-col p  { font-size: 0.8125rem; line-height: 1.6; }
.case-results { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.case-result  { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; }
.case-result svg { width: 0.875rem; height: 0.875rem; stroke: #16a34a; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.125rem; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.case-metric  { background: var(--primary-5); border-radius: 0.5rem; padding: 0.625rem; text-align: center; }
.case-metric .val { font-size: 1rem; font-weight: 700; color: var(--primary); line-height: 1; }
.case-metric .lbl { font-size: 0.625rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* FAQ */
.faq-list { divide: var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; text-align: left;
  font-size: 0.9375rem; font-weight: 600; font-family: inherit; color: var(--foreground);
}
.faq-q svg { width: 1rem; height: 1rem; stroke: var(--muted-foreground); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; padding-bottom: 1rem; }
.faq-item.open .faq-a { display: block; }

/* Audit page CTA strip */
.audit-cta { background: var(--primary); color: white; padding: 3rem 2rem; text-align: center; }
.audit-cta h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; }
.audit-cta p  { color: var(--white-80); margin: 0.75rem auto 1.5rem; max-width: 40rem; }
.audit-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.875rem; }

/* Sidebar widgets */
.widget { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.widget-head { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.875rem; font-weight: 700; }
.widget-body { padding: 1.25rem; }
.stats-w-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; }
.stat-w { background: var(--muted-bg-50); border-radius: 0.75rem; padding: 0.75rem; text-align: center; }
.stat-w .ico { color: var(--primary); display: flex; justify-content: center; margin-bottom: 0.25rem; }
.stat-w .ico svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat-w .val { font-size: 1.25rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-w .lbl { font-size: 0.625rem; color: var(--muted-foreground); margin-top: 0.25rem; }

.cta-widget { background: var(--primary); border-radius: 1rem; padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cta-widget h4 { font-weight: 700; color: white; }
.cta-widget p  { font-size: 0.8125rem; color: rgba(255,255,255,0.8); line-height: 1.55; }
.cta-widget .phone-link { display: flex; align-items: center; gap: 0.375rem; justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.8); transition: color 0.15s; }
.cta-widget .phone-link:hover { color: white; }
.cta-widget .phone-link svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.contact-w-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.contact-w-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-w-item svg { width: 1.125rem; height: 1.125rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.125rem; }
.contact-w-label { font-size: 0.75rem; font-weight: 600; }
.contact-w-val   { font-size: 0.75rem; color: var(--muted-foreground); }

.related-list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.related-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.875rem; color: var(--muted-foreground);
  background: var(--muted-bg-50); transition: background 0.15s, color 0.15s;
}
.related-link:hover { background: var(--primary-10); color: var(--primary); }
.related-link svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ============================================================
   ADMIN LOGIN PAGE
   ============================================================ */
.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(222.2, 60%, 25%) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.admin-login-card {
  background: var(--card);
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  width: 100%; max-width: 26rem;
  padding: 2.75rem 2.5rem 2.5rem;
}
.admin-login-logo {
  text-align: center; margin-bottom: 2rem;
}
.admin-login-logo img { height: 3.5rem; margin: 0 auto 0.75rem; }
.admin-login-logo h1 { font-size: 1.375rem; font-weight: 700; color: var(--foreground); }
.admin-login-logo p  { font-size: 0.8125rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.admin-login-divider {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1.25rem 0;
}
.admin-login-divider::before,
.admin-login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.admin-login-divider span { font-size: 0.75rem; color: var(--muted-foreground); white-space: nowrap; }
.admin-login-error {
  background: hsl(0 84.2% 60.2% / 0.1);
  border: 1px solid hsl(0 84.2% 60.2% / 0.3);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--destructive);
  display: none; margin-bottom: 1rem;
}
.admin-login-error.show { display: flex; align-items: center; gap: 0.5rem; }
.admin-login-footer {
  text-align: center; margin-top: 1.75rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}

/* ============================================================
   ADMIN DASHBOARD LAYOUT
   ============================================================ */
.admin-page { display: flex; min-height: 100vh; }

/* Sidebar */
.admin-sidebar {
  width: 15rem; flex-shrink: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
  overflow-y: auto;
}
.admin-sidebar-brand {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.admin-sidebar-brand img { height: 2.5rem; margin-bottom: 0.5rem; }
.admin-sidebar-brand h2 { font-size: 0.875rem; font-weight: 700; opacity: 0.9; }
.admin-sidebar-brand p  { font-size: 0.6875rem; opacity: 0.55; margin-top: 0.125rem; }
.admin-nav { padding: 1rem 0.75rem; flex: 1; }
.admin-nav-label {
  font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.45;
  padding: 0.75rem 0.5rem 0.375rem;
}
.admin-nav-item {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.72);
  cursor: pointer; transition: all 0.15s;
  margin-bottom: 0.125rem; border: none; background: none;
  width: 100%; text-align: left; text-decoration: none;
}
.admin-nav-item svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.admin-nav-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-nav-item.active { background: rgba(255,255,255,0.18); color: #fff; font-weight: 600; }
.admin-sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.admin-signout {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: pointer; width: 100%; border: none; background: none;
  transition: all 0.15s;
}
.admin-signout svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.admin-signout:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }

/* Main area */
.admin-main {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  background: hsl(210, 40%, 98%);
}
.admin-topbar {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.admin-topbar-title { font-size: 1rem; font-weight: 600; color: var(--foreground); }
.admin-topbar-right { display: flex; align-items: center; gap: 0.75rem; }
.admin-avatar {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.admin-content { padding: 2rem; flex: 1; }

/* Panels (view switching) */
.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* Stats row */
.admin-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.admin-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.admin-stat-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.625rem;
  background: var(--primary-5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.admin-stat-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.admin-stat-val { font-size: 1.625rem; font-weight: 700; line-height: 1; }
.admin-stat-lbl { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.2rem; }

/* ── Post Editor ── */
.editor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.editor-card-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem;
}
.editor-card-head h3 { font-size: 1rem; font-weight: 600; }
.editor-card-head .badge { margin-left: auto; }
.editor-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.editor-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.editor-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }

/* Rich text toolbar */
.rte-toolbar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem;
  padding: 0.5rem 0.625rem;
  background: var(--muted-bg);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 0.5rem 0.5rem 0 0;
}
.rte-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2rem; height: 2rem; padding: 0 0.375rem;
  border: none; border-radius: 0.375rem;
  background: none; cursor: pointer;
  font-size: 0.8125rem; font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.12s;
}
.rte-btn svg { width: 0.875rem; height: 0.875rem; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.rte-btn:hover { background: var(--border); color: var(--foreground); }
.rte-btn.active { background: var(--primary); color: var(--primary-foreground); }
.rte-divider { width: 1px; height: 1.25rem; background: var(--border); margin: 0 0.125rem; }
.rte-area {
  min-height: 14rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--foreground);
  outline: none;
  background: var(--background);
  overflow-y: auto;
}
.rte-area:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-10); }
.rte-area h2 { font-size: 1.375rem; font-weight: 700; margin: 0.75rem 0 0.375rem; }
.rte-area h3 { font-size: 1.125rem; font-weight: 600; margin: 0.625rem 0 0.25rem; }
.rte-area p  { margin: 0; }
.rte-area ul, .rte-area ol { padding-left: 1.5rem; margin: 0.375rem 0; }
.rte-area blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 1rem; margin: 0.5rem 0;
  color: var(--muted-foreground); font-style: italic;
}
.rte-area a { color: var(--primary); text-decoration: underline; }
.rte-char-count { font-size: 0.75rem; color: var(--muted-foreground); text-align: right; margin-top: 0.25rem; }

/* Preview panel */
.preview-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.preview-panel-head {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.preview-panel-head h4 { font-size: 0.875rem; font-weight: 600; }
.preview-panel-body { padding: 1.5rem; }
.preview-empty {
  text-align: center; padding: 2.5rem 1rem;
  color: var(--muted-foreground); font-size: 0.875rem;
}
.preview-empty svg { width: 3rem; height: 3rem; stroke: var(--border); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; display: block; margin: 0 auto 0.75rem; }

/* Editor actions */
.editor-actions {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── Posts Manager Table ── */
.posts-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}
.posts-table-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.posts-table-head h3 { font-size: 1rem; font-weight: 600; }
.posts-search {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--muted-bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
}
.posts-search svg { width: 0.875rem; height: 0.875rem; stroke: var(--muted-foreground); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.posts-search input { border: none; background: none; outline: none; font-size: 0.8125rem; color: var(--foreground); width: 14rem; }
.posts-table-scroll { overflow-x: auto; }
table.posts-table { width: 100%; border-collapse: collapse; white-space: nowrap; }
table.posts-table th {
  padding: 0.75rem 1.25rem;
  text-align: left; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--muted-foreground);
  background: var(--muted-bg);
  border-bottom: 1px solid var(--border);
}
table.posts-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
table.posts-table tr:last-child td { border-bottom: none; }
table.posts-table tr:hover td { background: var(--muted-bg-50); }
.post-title-cell { font-weight: 500; color: var(--foreground); max-width: 22rem; }
.post-title-cell-sub { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; white-space: normal; }
.table-actions { display: flex; align-items: center; gap: 0.5rem; }
.tbl-btn {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem; font-size: 0.75rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--background);
  cursor: pointer; transition: all 0.12s; color: var(--foreground);
}
.tbl-btn svg { width: 0.75rem; height: 0.75rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tbl-btn:hover { background: var(--muted-bg); }
.tbl-btn.danger { color: var(--destructive); border-color: hsl(0 84.2% 60.2% / 0.3); }
.tbl-btn.danger:hover { background: hsl(0 84.2% 60.2% / 0.08); }
.posts-empty-row td { text-align: center; padding: 3rem; color: var(--muted-foreground); font-size: 0.875rem; }

/* Status badge */
.status-pill {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.2rem 0.625rem; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.status-pill.published { background: hsl(142 72% 50% / 0.12); color: hsl(142 72% 30%); }
.status-pill.draft     { background: hsl(38 92% 50% / 0.12);  color: hsl(38 92% 35%); }
.status-pill::before { content: ''; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: currentColor; }

/* Confirm delete modal */
.confirm-modal-wrap {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 200;
  align-items: center; justify-content: center; padding: 1rem;
}
.confirm-modal-wrap.open { display: flex; }
.confirm-modal {
  background: var(--card);
  border-radius: 1rem; padding: 2rem;
  max-width: 24rem; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.confirm-modal h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.confirm-modal p  { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.confirm-modal-btns { display: flex; gap: 0.75rem; justify-content: flex-end; }

/* Mobile sidebar toggle */
.admin-mobile-toggle { display: none; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 5rem 0;
  background: var(--background);
  border-top: 1px solid var(--border);
}
.faq-section .section-header { margin-bottom: 3rem; text-align: center; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: 0;
  overflow: hidden; border-bottom: none;
}
.faq-item:first-child { border-radius: 1rem 1rem 0 0; }
.faq-item:last-child  { border-radius: 0 0 1rem 1rem; border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 1rem; font-weight: 600; gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--muted-bg-30); }
.faq-item.open .faq-question { background: var(--primary-5); color: var(--primary); }
.faq-chevron {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
  font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-hero {
  position: relative; overflow: hidden;
  padding: 7rem 2rem 5rem; text-align: center; color: #fff;
  background-color: var(--primary);
}
.testimonials-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/team-office.jpg');
  background-size: cover; background-position: center; z-index: 0;
}
.testimonials-hero::after { content: ''; position: absolute; inset: 0; background: rgba(10,42,85,0.62); z-index: 1; }
.testimonials-hero-inner { position: relative; z-index: 2; }
.testimonials-hero h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1rem; animation: heroFadeUp 0.8s 0.05s ease both; }
.testimonials-hero p  { font-size: 1.25rem; color: rgba(255,255,255,0.9); max-width: 42rem; margin: 0 auto; animation: heroFadeUp 0.8s 0.2s ease both; }

.testimonials-section { padding: 5rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: white; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.testimonial-stars { display: flex; gap: 0.2rem; }
.testimonial-stars svg {
  width: 1.125rem; height: 1.125rem;
  fill: #f59e0b; stroke: #f59e0b; stroke-width: 1;
}
.testimonial-quote {
  font-size: 0.9375rem; color: var(--muted-foreground);
  line-height: 1.75; flex: 1;
  font-style: italic; position: relative;
  padding-left: 1.25rem;
}
.testimonial-quote::before {
  content: '"'; position: absolute; left: 0; top: -0.5rem;
  font-size: 2.5rem; color: var(--primary); font-style: normal;
  font-family: Georgia, serif; line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testimonial-avatar {
  width: 3rem; height: 3rem; border-radius: 9999px;
  background: var(--primary-10); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-name  { font-size: 0.9375rem; font-weight: 700; }
.testimonial-role  { font-size: 0.8125rem; color: var(--muted-foreground); }
.testimonial-service { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: 0.125rem; }

/* Stats bar */
.testimonials-stats {
  background: var(--primary); padding: 3rem 0; margin-bottom: 0;
}
.testimonials-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.t-stat-num  { font-size: 2.5rem; font-weight: 800; color: #fff; }
.t-stat-lbl  { font-size: 0.9375rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }

/* CTA strip */
.testimonials-cta { background: var(--muted-bg-30); padding: 5rem 0; text-align: center; border-top: 1px solid var(--border); }
.testimonials-cta h2 { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; margin-bottom: 1rem; }
.testimonials-cta p  { color: var(--muted-foreground); max-width: 38rem; margin: 0 auto 2rem; }
.testimonials-cta .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .audit-sidebar  { width: 18rem; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 24rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-stats-grid { grid-template-columns: repeat(2, 1fr); }
  /* Blog featured: stack on tablets */
  .blog-featured-inner { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 16rem; }
}

@media (max-width: 768px) {
  .nav-desktop    { display: none; }
  .nav-mobile-toggle { display: block; }
  /* Show brand name on mobile */
  .nav-brand-name { display: flex; font-size: 1rem; }

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; }

  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .mv-grid          { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .form-grid-2      { grid-template-columns: 1fr; }
  .blog-grid        { grid-template-columns: 1fr; }
  .newsletter-form  { flex-direction: column; }
  /* Blog link list: smaller thumbnail on mobile */
  .blog-link-item { grid-template-columns: 5.5rem 1fr auto; gap: 0.875rem; padding: 0.875rem 0.75rem; }
  .blog-link-img  { height: 4rem; }
  .blog-featured-body { padding: 1.5rem; }
  .blog-featured-img { min-height: 12rem; }

  .services-layout  { flex-direction: column; }
  .services-sidebar { width: 100%; }
  .sidebar-sticky   { position: static; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .commitment-list  { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }

  .audit-body     { flex-direction: column; }
  .audit-sidebar  { width: 100%; position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-types-grid { grid-template-columns: 1fr; }
  .benefits-2     { grid-template-columns: 1fr; }
  .case-body      { grid-template-columns: 1fr; }
  .case-col:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-grid   { max-width: 100%; }

  .wa-label { display: none; }
  /* Admin */
  .admin-sidebar { position: fixed; left: -15rem; top: 0; bottom: 0; z-index: 50; transition: left 0.25s; }
  .admin-sidebar.open { left: 0; box-shadow: 4px 0 24px rgba(0,0,0,0.2); }
  .admin-mobile-toggle { display: flex; align-items: center; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .editor-row-2 { grid-template-columns: 1fr; }
  .editor-row-3 { grid-template-columns: 1fr; }
  .posts-search input { width: 9rem; }
}

@media (max-width: 480px) {
  .footer-grid    { grid-template-columns: 1fr; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .stats-w-grid   { grid-template-columns: repeat(4, 1fr); }
  .other-services-grid { grid-template-columns: 1fr; }
  /* Admin */
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .editor-row-2    { grid-template-columns: 1fr; }
  .editor-row-3    { grid-template-columns: 1fr; }
}

/* ── Service Card Modal ───────────────────────────────────────────── */
.svc-card { cursor: pointer; }
.svc-card-click-hint {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem; color: rgba(255,255,255,0.6);
  margin-top: 0.65rem; letter-spacing: 0.03em;
  text-transform: uppercase; font-weight: 600;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.6rem; width: 100%;
}
.svc-card-click-hint svg {
  width: 0.75rem; height: 0.75rem;
  stroke: rgba(255,255,255,0.6); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
/* Overlay */
.svc-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.svc-modal-overlay.open { opacity: 1; pointer-events: all; }
/* Dialog */
.svc-modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  width: 100%; max-width: 38rem;
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.25);
  transform: translateY(60px) scale(0.95);
  transition: transform 0.38s cubic-bezier(0.34, 1.28, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}
.svc-modal-overlay.open .svc-modal { transform: translateY(0) scale(1); opacity: 1; }
/* Modal header */
.svc-modal-header {
  background: linear-gradient(135deg, #0d2140 0%, #112a52 60%, #1a3a6e 100%);
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 1.25rem 1.25rem 0 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.svc-modal-header-left { display: flex; align-items: center; gap: 1rem; }
.svc-modal-icon {
  width: 3rem; height: 3rem; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.svc-modal-icon svg {
  width: 1.4rem; height: 1.4rem;
  stroke: #fff; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.svc-modal-title { font-size: 1.1875rem; font-weight: 800; color: #fff; line-height: 1.3; }
.svc-modal-subtitle { font-size: 0.8125rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.svc-modal-close {
  width: 2.25rem; height: 2.25rem; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
  transition: background 0.15s;
}
.svc-modal-close:hover { background: rgba(255,255,255,0.2); }
.svc-modal-close svg {
  width: 1.1rem; height: 1.1rem;
  stroke: #fff; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
/* Modal body */
.svc-modal-body { padding: 1.75rem; }
.svc-modal-desc { font-size: 1rem; color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1.5rem; }
.svc-modal-details { margin-bottom: 1.75rem; }
.svc-modal-details h4 {
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 0.875rem;
}
.svc-modal-details ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-modal-details li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--foreground); line-height: 1.5;
}
.svc-modal-details li::before {
  content: ''; width: 0.5rem; height: 0.5rem; flex-shrink: 0;
  background: var(--primary); border-radius: 50%; margin-top: 0.45rem;
}
/* Modal footer */
.svc-modal-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 0.75rem; flex-wrap: wrap;
}
.svc-modal-footer .btn { flex: 1; min-width: 10rem; text-align: center; justify-content: center; }
@media (max-width: 480px) {
  .svc-modal-footer .btn { flex: 1 1 100%; }
  .svc-modal { max-width: calc(100% - 2rem); }
}

/* ==========================================================
   PAYMENT MODAL  (pay-modal.js)
   ========================================================== */
#avt-pay-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(5,20,40,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
#avt-pay-overlay.open { opacity: 1; pointer-events: all; }

#avt-pay-modal {
  background: url("images/mpesa-banner.jpg") center/cover no-repeat;
  border-radius: 1.25rem;
  width: 100%; max-width: 480px;
  box-shadow: 0 24px 60px rgba(5,20,40,0.40);
  transform: translateY(60px) scale(0.95);
  transition: transform 0.38s cubic-bezier(0.34, 1.28, 0.64, 1), opacity 0.3s ease;
  overflow: hidden;
  position: relative;
}
/* Dark overlay behind all form content */
#avt-pay-modal::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8, 28, 56, 0.72);
  z-index: 0;
  pointer-events: none;
}
/* Ensure all direct children sit above the overlay */
#avt-pay-modal > * { position: relative; z-index: 1; }
#avt-pay-overlay.open #avt-pay-modal { transform: translateY(0) scale(1); }

.avt-pay-header {
  background: var(--primary);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
  position: relative;
}
.avt-pay-header-icon {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  background: rgba(255,255,255,0.15); border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
}
.avt-pay-header-icon svg { width: 1.4rem; height: 1.4rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.avt-pay-header h2 { color: #fff; font-size: 1.125rem; font-weight: 700; margin: 0 0 0.2rem; }
.avt-pay-header p { color: rgba(255,255,255,0.78); font-size: 0.8125rem; margin: 0; }
.avt-pay-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  width: 2rem; height: 2rem; border-radius: 50%;
  color: #fff; font-size: 1.25rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.avt-pay-close:hover { background: rgba(255,255,255,0.28); }

.avt-pay-summary { background: rgba(255,255,255,0.10); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.15); }
.avt-pay-summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: rgba(255,255,255,0.75); padding: 0.3rem 0; }
.avt-pay-summary-row strong { color: #fff; font-weight: 600; }
.avt-pay-summary-row.total { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 0.4rem; padding-top: 0.7rem; }
.avt-pay-summary-row.total span { font-weight: 700; color: rgba(255,255,255,0.9); font-size: 0.9375rem; }
.avt-pay-summary-row.total strong { font-size: 1.25rem; color: #f0c060; font-weight: 800; }

#avt-pay-form { padding: 1.5rem 1.5rem 1rem; }
.avt-pay-field { margin-bottom: 0.5rem; }
.avt-pay-field label { display: block; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 0.5rem; }
.avt-pay-input-wrap { display: flex; align-items: stretch; border: 1.5px solid rgba(255,255,255,0.30); border-radius: 0.625rem; overflow: hidden; transition: border-color 0.18s, box-shadow 0.18s; background: rgba(255,255,255,0.12); }
.avt-pay-input-wrap:focus-within { border-color: #f0c060; box-shadow: 0 0 0 3px rgba(240,192,96,0.22); }
.avt-pay-prefix { background: rgba(255,255,255,0.12); border-right: 1.5px solid rgba(255,255,255,0.25); padding: 0 0.875rem; display: flex; align-items: center; gap: 0.4rem; font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; flex-shrink: 0; }
.avt-pay-prefix svg { width: 1rem; height: 1rem; stroke: #f0c060; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
#avt-phone { flex: 1; border: none; outline: none; padding: 0.75rem 1rem; font-size: 1rem; color: #fff; font-family: inherit; background: transparent; min-width: 0; }
#avt-phone::placeholder { color: rgba(255,255,255,0.45); }
#avt-phone.avt-input-error { background: rgba(220,38,38,0.15); }
/* Name field — same sizing as phone input, full-width, accepts letters + numbers */
#avt-client-name { flex: 1; border: none; outline: none; padding: 0.75rem 1rem; font-size: 1rem; color: #fff; font-family: inherit; background: transparent; min-width: 0; width: 100%; }
#avt-client-name.avt-input-error { background: rgba(220,38,38,0.15); }

.avt-pay-hint { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.375rem; display: block; }
.avt-pay-optional { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.45); }
.avt-pay-error { font-size: 0.8125rem; color: #fca5a5; margin-top: 0.375rem; display: none; font-weight: 500; }

.avt-pay-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.avt-btn-back { display: flex; align-items: center; gap: 0.4rem; padding: 0.75rem 1.25rem; border-radius: 0.625rem; border: 1.5px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.10); font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,0.85); cursor: pointer; transition: border-color 0.18s, background 0.18s; flex-shrink: 0; }
.avt-btn-back:hover { border-color: #f0c060; color: #f0c060; background: rgba(240,192,96,0.10); }
.avt-btn-back svg { width: 1rem; height: 1rem; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.avt-btn-pay { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.25rem; border-radius: 0.625rem; border: none; background: #16a34a; color: #fff; font-size: 0.9375rem; font-weight: 700; cursor: pointer; transition: background 0.18s, box-shadow 0.18s; }
.avt-btn-pay:hover { background: #15803d; box-shadow: 0 4px 16px rgba(22,163,74,0.45); }
.avt-btn-pay svg { width: 1rem; height: 1rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.avt-pay-secure { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin: 0; padding: 0.875rem 1.5rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.12); }
.avt-pay-secure svg { width: 0.875rem; height: 0.875rem; stroke: #4ade80; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

@media (max-width: 480px) {
  #avt-pay-modal { max-width: calc(100% - 1rem); border-radius: 1rem; }
  .avt-pay-actions { flex-direction: column-reverse; }
  .avt-btn-back { justify-content: center; }
}

/* ==========================================================
   HOMEPAGE ENHANCEMENTS
   ========================================================== */
.hiw-section { padding: 5.5rem 0; background: #fff; }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 3rem; }
.hiw-steps::before { content: ''; position: absolute; top: 2rem; left: calc(12.5% + 1.25rem); right: calc(12.5% + 1.25rem); height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent,#c9952a) 100%); z-index: 0; }
.hiw-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.25rem; position: relative; z-index: 1; }
.hiw-step-num { width: 4rem; height: 4rem; background: var(--primary); color: #fff; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 3px var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; margin-bottom: 1.25rem; }
.hiw-step h4 { font-size: 1rem; font-weight: 700; color: #1a2a3a; margin-bottom: 0.5rem; }
.hiw-step p { font-size: 0.8125rem; color: #64748b; line-height: 1.6; }

.home-testimonials { padding: 5.5rem 0; background: var(--muted-bg-30, #f0f5fb); }
.home-testimonials .section-header { margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: #fff; border-radius: 1rem; padding: 1.75rem; border: 1px solid #e2e8f0; box-shadow: 0 2px 12px rgba(10,42,85,0.06); display: flex; flex-direction: column; gap: 1rem; transition: box-shadow 0.2s, transform 0.2s; }
.testi-card:hover { box-shadow: 0 8px 28px rgba(10,42,85,0.12); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 0.2rem; }
.testi-stars svg { width: 1rem; height: 1rem; fill: #f6ad55; stroke: #f6ad55; stroke-width: 1; }
.testi-quote { font-size: 0.9375rem; color: #2d3748; line-height: 1.7; font-style: italic; flex: 1; }
.testi-quote::before { content: '\201C'; font-size: 1.5rem; color: var(--primary); line-height: 0; vertical-align: -0.35em; margin-right: 0.1em; }
.testi-quote::after  { content: '\201D'; font-size: 1.5rem; color: var(--primary); line-height: 0; vertical-align: -0.35em; margin-left:  0.1em; }
.testi-author { display: flex; align-items: center; gap: 0.875rem; padding-top: 1rem; border-top: 1px solid #e2e8f0; }
.testi-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.9375rem; color: #1a2a3a; }
.testi-company { font-size: 0.8rem; color: #718096; }

.home-industries { padding: 5rem 0; background: #fff; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.industry-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.875rem; padding: 1.5rem 1.25rem; text-align: center; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.industry-card:hover { border-color: var(--primary); box-shadow: 0 6px 20px rgba(10,42,85,0.1); transform: translateY(-3px); }
.industry-icon { width: 3.5rem; height: 3.5rem; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--primary) 0%, var(--accent,#c9952a) 100%); border-radius: 0.875rem; display: flex; align-items: center; justify-content: center; }
.industry-icon svg { width: 1.5rem; height: 1.5rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.industry-card h4 { font-size: 0.9375rem; font-weight: 700; color: #1a2a3a; margin-bottom: 0.4rem; }
.industry-card p { font-size: 0.8125rem; color: #64748b; line-height: 1.5; margin: 0; }

.home-compliance { background: var(--primary); padding: 3rem 0; }
.compliance-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.compliance-badge { display: flex; align-items: center; gap: 0.875rem; color: rgba(255,255,255,0.9); }
.compliance-badge svg { width: 2rem; height: 2rem; stroke: var(--accent,#c9952a); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.compliance-badge strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.compliance-badge span { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }

@media (max-width: 1024px) {
  .hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hiw-steps::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 28rem; margin: 0 auto; }
  .compliance-inner { gap: 1.75rem; }
}
@media (max-width: 480px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================
   HOME PRICING OVERVIEW
   ========================================================== */
.home-pricing-section { padding: 5.5rem 0; background: #f8fafc; }
.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.home-pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.home-pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 32px rgba(10,42,85,0.12);
  transform: translateY(-4px);
}
.home-pricing-icon {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent,#c9952a) 100%);
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}
.home-pricing-icon svg { width: 1.35rem; height: 1.35rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-pricing-card h3 { font-size: 1.0625rem; font-weight: 700; color: #1a2a3a; margin: 0; }
.home-pricing-desc { font-size: 0.8125rem; color: #64748b; line-height: 1.6; margin: 0; flex: 1; }
.home-pricing-from {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.875rem 1rem;
  background: #f0f5fb; border-radius: 0.625rem;
}
.home-pricing-label { font-size: 0.75rem; color: #718096; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.home-pricing-amount { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.home-pricing-period { font-size: 0.875rem; font-weight: 500; color: #718096; margin-left: 0.2rem; }
.home-pricing-plans {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.home-pricing-plans span {
  font-size: 0.8125rem; color: #4a5568; cursor: pointer;
  padding: 0.4rem 0.75rem; border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  display: flex; justify-content: space-between; align-items: center;
}
.home-pricing-plans span::after { content: '→'; color: var(--primary); font-weight: 700; opacity: 0; transition: opacity 0.15s; }
.home-pricing-plans span:hover { background: #f0f5fb; border-color: var(--primary); color: var(--primary); }
.home-pricing-plans span:hover::after { opacity: 1; }
.home-pricing-cta {
  display: block; text-align: center;
  padding: 0.625rem 1rem; border-radius: 0.625rem;
  border: 1.5px solid var(--primary); color: var(--primary);
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  margin-top: auto;
}
.home-pricing-cta:hover { background: var(--primary); color: #fff; }
.home-pricing-note {
  display: flex; align-items: flex-start; gap: 0.625rem;
  margin-top: 2.5rem; padding: 1rem 1.25rem;
  background: #fff8ed; border: 1px solid #f6d782; border-radius: 0.625rem;
  font-size: 0.875rem; color: #744210;
}
.home-pricing-note svg { width: 1.1rem; height: 1.1rem; stroke: #c9952a; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.1rem; }
.home-pricing-note a { color: var(--primary); font-weight: 600; }

@media (max-width: 1024px) { .home-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .home-pricing-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   PAY MODAL v2 — global error banner, loading spinner
   ========================================================== */
.avt-global-error {
  display: none;
  align-items: flex-start; gap: 0.625rem;
  background: rgba(153,27,27,0.35); border: 1px solid rgba(252,165,165,0.45); border-radius: 0.5rem;
  padding: 0.875rem 1rem; margin: 0 1.5rem 1rem;
  font-size: 0.875rem; color: #fca5a5; font-weight: 500;
}
.avt-global-error svg { width: 1.1rem; height: 1.1rem; stroke: #fca5a5; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.1rem; }
.avt-loading {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 0.875rem; padding: 2rem;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
}
.avt-loading p { font-size: 0.9rem; color: #4a5568; margin: 0; }
.avt-spinner {
  width: 2.25rem; height: 2.25rem;
  border: 3px solid #e2e8f0;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: avt-spin 0.75s linear infinite;
}
@keyframes avt-spin { to { transform: rotate(360deg); } }
#avt-pay-modal { position: relative; }

/* Single service charge row */
.svc-modal-charge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #f0f5fb;
  border: 1px solid #dbeafe;
}
.svc-modal-charge-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a2a3a;
  flex: 1;
}
.svc-modal-charge-amt {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}
.svc-modal-charge-from {
  font-size: 0.7rem;
  color: #718096;
  white-space: nowrap;
}

/* ============================================================
   AUDITING PAGE — ENRICHMENT SECTIONS
   ============================================================ */

/* Who We Serve grid */
.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .who-we-serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .who-we-serve-grid { grid-template-columns: 1fr; } }

.serve-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.serve-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.09); transform: translateY(-2px); }
.serve-card-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--primary);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.serve-card-icon svg { width: 1.15rem; height: 1.15rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.serve-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--foreground); margin: 0; }
.serve-card p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; margin: 0; }

/* Why Choose grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 700px) { .why-choose-grid { grid-template-columns: 1fr; } }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.why-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.why-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 1.15rem; height: 1.15rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-body h4 { font-size: 0.9375rem; font-weight: 700; color: var(--foreground); margin: 0 0 0.35rem; }
.why-body p  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; margin: 0; }

/* Audit Readiness Checklist */
.sc-intro { font-size: 1rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) { .checklist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .checklist-grid { grid-template-columns: 1fr; } }

.checklist-col h4 {
  font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.85rem;
}
.audit-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.audit-checklist li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--foreground); line-height: 1.55;
}
.audit-checklist li svg {
  width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.1rem;
  stroke: var(--primary); fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.checklist-cta {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.checklist-cta p { font-size: 0.9375rem; color: var(--foreground); margin: 0; }
.inline-link { color: var(--primary); font-weight: 600; text-decoration: underline; }
.inline-link:hover { color: var(--primary-dark, var(--primary)); }





/* ══════════════════════════════════════════════════════════════════
   MODERN DESIGN SYSTEM  v43
   — Animated hero, 3D cards, glassmorphism, micro-interactions
   ══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   1. COMPACT NAV CTA BUTTON
───────────────────────────────────────────────────────────────── */
.nav-desktop { gap: 1.25rem; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.125rem;
  padding: 0 1rem;
  background: linear-gradient(135deg, #0a3c78 0%, #1255a8 100%);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(10,42,85,.32), inset 0 1px 0 rgba(255,255,255,.12);
  transition: box-shadow .2s, transform .15s, background .2s;
}
.btn-nav-cta:hover {
  background: linear-gradient(135deg, #0c4896 0%, #1a66c8 100%);
  box-shadow: 0 4px 18px rgba(10,42,85,.42);
  transform: translateY(-1px);
  color: #fff !important;
}
.btn-nav-cta:active { transform: translateY(0) scale(.97); }
.btn-nav-cta-icon {
  width: 0.875rem; height: 0.875rem;
  stroke: rgba(255,255,255,.9); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────
   2. HERO — VIDEO BACKGROUND with fallback gradient
───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
  background: #040e1e;
  color: #fff;
}

/* Video element fills the hero */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Dark overlay on top of video for readability */
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(4,14,30,.48) 0%,
    rgba(10,42,85,.38) 40%,
    rgba(4,14,30,.35) 100%
  );
}

/* Fallback gradient (shown when video can't load) */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 15% 45%, rgba(12,72,150,.75) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 85% 15%, rgba(0,195,230,.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 60% 85%, rgba(245,130,32,.12) 0%, transparent 45%);
  animation: heroBgPulse 16s ease-in-out infinite alternate;
}
@keyframes heroBgPulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.07) translateX(-1%) translateY(1.5%); opacity: .88; }
  100% { transform: scale(1.09) translateX(-.8%) translateY(.8%); opacity: 1; }
}

/* Orbs stay above video */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
  animation: orbDrift 24s ease-in-out infinite;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(18,85,168,.38) 0%, transparent 68%);
  filter: blur(55px);
  top: -12%; left: -8%;
  animation-duration: 22s;
}
.hero-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,210,255,.16) 0%, transparent 68%);
  filter: blur(45px);
  bottom: -8%; right: 4%;
  animation-duration: 28s; animation-delay: -10s;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,130,32,.14) 0%, transparent 65%);
  filter: blur(40px);
  top: 25%; right: 18%;
  animation-duration: 20s; animation-delay: -5s;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(28px,-18px) scale(1.05); }
  50%      { transform: translate(-14px,30px) scale(.96); }
  75%      { transform: translate(20px,14px) scale(1.03); }
}

/* Particle canvas */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 4; pointer-events: none;
  width: 100%; height: 100%;
}

/* Hero content above all layers */
.hero .container { position: relative; z-index: 10; }

/* Text readability */
.hero-content h1    { text-shadow: 0 3px 24px rgba(0,0,0,.6); }
.hero-subtitle      { text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.hero-desc          { text-shadow: 0 1px 8px rgba(0,0,0,.35); }

/* ─────────────────────────────────────────────────────────────────
   3. STATS BAR — Dark gradient glass
───────────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #081628 0%, #0d3460 50%, #0a3c78 100%);
  border-bottom: none;
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(18,85,168,.2), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative; z-index: 1;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.stat-number-accent { color: #fb923c; }
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─────────────────────────────────────────────────────────────────
   4. SERVICE CARDS — 3D perspective tilt
───────────────────────────────────────────────────────────────── */
.service-cards-grid { perspective: 1200px; gap: 1.25rem; }

.service-card {
  background: #fff;
  border: 1px solid rgba(10,42,85,.09);
  border-radius: 1.125rem;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275),
              box-shadow .3s ease, border-color .25s;
}
/* Top-edge color bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a3c78, #1a8fd1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  border-radius: 3px 3px 0 0;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  box-shadow: 0 20px 50px rgba(10,42,85,.16), 0 4px 12px rgba(10,42,85,.08);
  border-color: rgba(10,42,85,.18);
}

.service-card-icon {
  width: 3.25rem; height: 3.25rem;
  background: linear-gradient(135deg, rgba(10,42,85,.08) 0%, rgba(26,143,209,.1) 100%);
  border-radius: .75rem;
  transition: background .3s, transform .3s;
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, #0a3c78 0%, #1a8fd1 100%);
  color: #fff;
  transform: rotate(-8deg) scale(1.12);
}

/* ─────────────────────────────────────────────────────────────────
   5. WHY CHOOSE US — Glassmorphism
───────────────────────────────────────────────────────────────── */
.why-section {
  background:
    linear-gradient(160deg, #eef4fd 0%, #e3eefe 50%, #eaf2fb 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(10,42,85,.06), transparent 55%),
    radial-gradient(circle at 10% 110%, rgba(26,143,209,.06), transparent 50%);
  pointer-events: none;
}
.why-grid { position: relative; z-index: 1; }

.why-item {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 1.125rem;
  box-shadow: 0 2px 12px rgba(10,42,85,.06);
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.175,.885,.32,1.275),
              box-shadow .28s, background .2s;
}
.why-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #0a3c78, #1a8fd1, #00c8e0);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s ease;
}
.why-item:hover {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 32px rgba(10,42,85,.14);
  transform: translateY(-5px);
}
.why-item:hover::after { transform: scaleX(1); }

/* ─────────────────────────────────────────────────────────────────
   6. PAGE HEADERS — Video bg + animated overlay
───────────────────────────────────────────────────────────────── */
.page-header {
  background: #040e1e;
  isolation: isolate;
}

/* VIDEO inside page-header */
.page-header-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Still keep photo fallback via ::before */
.page-header::before {
  background-size: cover; background-position: center;
  animation: headerImgZoom 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes headerImgZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Rich gradient overlay — readability on any bg */
.page-header::after {
  background: linear-gradient(
    160deg,
    rgba(4,14,30,.55) 0%,
    rgba(10,42,85,.45) 45%,
    rgba(4,14,30,.40) 100%
  );
  z-index: 1;
}

/* content always on top */
.page-header .page-header-inner { z-index: 5; }

/* ─────────────────────────────────────────────────────────────────
   7. TESTIMONIAL CARDS — depth & shine
───────────────────────────────────────────────────────────────── */
.testimonial-card {
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.75rem; right: .75rem;
  font-size: 8rem; line-height: 1;
  color: var(--primary);
  opacity: .055;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 48px rgba(10,42,85,.14);
}

/* ─────────────────────────────────────────────────────────────────
   8. CTA SECTION — rich gradient
───────────────────────────────────────────────────────────────── */
.cta-section {
  background:
    linear-gradient(135deg, #040e1e 0%, #0a3c78 45%, #0d5491 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 20% 50%, rgba(0,200,255,.08), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(245,130,32,.07), transparent 55%);
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────────
   9. HOME INTRO — gradient top accent
───────────────────────────────────────────────────────────────── */
.home-intro {
  position: relative;
  background: #fff;
}
.home-intro::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #0a3c78 25%, #1a8fd1 50%, #00c8e0 75%, transparent 100%);
}

/* ─────────────────────────────────────────────────────────────────
   10. FOOTER — accent top line
───────────────────────────────────────────────────────────────── */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0a3c78 30%, #1a8fd1 50%, transparent 100%);
}

/* ─────────────────────────────────────────────────────────────────
   11. BUTTON MICRO-ANIMATIONS
───────────────────────────────────────────────────────────────── */
.btn {
  transition: background .2s, color .2s, box-shadow .2s,
              transform .15s cubic-bezier(.175,.885,.32,1.275),
              border-color .2s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.97); }

/* ─────────────────────────────────────────────────────────────────
   12. PRICING CARDS
───────────────────────────────────────────────────────────────── */
.pricing-card {
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a3c78, #1a8fd1);
  opacity: 0;
  transition: opacity .25s;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 55px rgba(10,42,85,.18);
}

/* ─────────────────────────────────────────────────────────────────
   13. SCROLL REVEAL (JS-driven)
───────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .6s cubic-bezier(.215,.61,.355,1), transform .6s cubic-bezier(.215,.61,.355,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ─────────────────────────────────────────────────────────────────
   14. BLOG CARDS — elevated on hover
───────────────────────────────────────────────────────────────── */
.blog-card-page, .snippet-card {
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
}
.blog-card-page:hover, .snippet-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 46px rgba(10,42,85,.15);
}

/* ─────────────────────────────────────────────────────────────────
   15. INPUT FOCUS GLOW
───────────────────────────────────────────────────────────────── */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px rgba(10,42,85,.14);
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #0a3c78;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─────────────────────────────────────────────────────────────────
   16. SCROLLBAR
───────────────────────────────────────────────────────────────── */
* { scrollbar-width: thin; scrollbar-color: rgba(10,42,85,.3) transparent; }
*::-webkit-scrollbar { width: 6px; background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgba(10,42,85,.25);
  border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover { background: rgba(10,42,85,.4); }

/* ─────────────────────────────────────────────────────────────────
   17. SECTION DIVIDERS (thin gradient)
───────────────────────────────────────────────────────────────── */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10,42,85,.15) 30%, rgba(26,143,209,.25) 50%, transparent 100%);
  border: none; margin: 0;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 768px) {
  .hero { min-height: 560px; }
  .hero-orb-3 { display: none; }
  .hero-orb-1 { width: 280px; height: 280px; }
  .hero-orb-2 { width: 220px; height: 220px; }
  /* On mobile, hide CTA label, show only icon */
  .btn-nav-cta span { display: none; }
  .btn-nav-cta {
    width: 2.25rem; height: 2.25rem;
    padding: 0; border-radius: 50%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero { min-height: 480px; }
  .stat-number { font-size: 2rem; }
}


/* ══════════════════════════════════════════════════════════════════
   NEW PROFESSIONAL SECTION BACKGROUNDS  v43+
   — Teal-to-navy, warm-amber accents, deep-slate alternation
   — Only on non-blog pages; no color conflict with text tokens
   ══════════════════════════════════════════════════════════════════ */

/* ── Home page section alternation ── */
.home-intro {
  background: linear-gradient(170deg, #f4f7fc 0%, #eef3fc 100%);
}
.services-section {
  background: #fff;
}
.why-section {
  background: linear-gradient(150deg, #0a2547 0%, #0e3b70 40%, #1053a0 100%);
  color: #fff;
}
/* Why items on dark bg — force contrast */
.why-section .why-item {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.why-section .why-item:hover {
  background: rgba(255,255,255,.18);
}
.why-section .why-body h4 { color: #fff; }
.why-section .why-body p  { color: rgba(255,255,255,.82); }
.why-section .why-icon {
  background: rgba(255,255,255,.18);
}
.why-section .why-icon svg { stroke: #fff; }
/* Force section title text white on dark bg */
.why-section .section-header h2,
.why-section .section-header p { color: #fff; }
.why-section .section-label    { color: rgba(255,255,255,.7); }

/* How It Works */
.hiw-section {
  background: linear-gradient(170deg, #f9fbff 0%, #eef5ff 100%);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Industries */
.home-industries {
  background: linear-gradient(160deg, #06152b 0%, #0a2547 50%, #0e3565 100%);
  color: #fff;
}
.home-industries .section-header h2,
.home-industries .section-header p { color: #fff; }
.home-industries .section-label    { color: rgba(255,255,255,.65); }

/* Compliance badges section */
.home-compliance {
  background: #fff;
}

/* Testimonials */
.home-testimonials {
  background: linear-gradient(160deg, #f4f8ff 0%, #e8f0fe 100%);
}

/* Bottom CTA */
.cta-section {
  background: linear-gradient(135deg, #050f22 0%, #0a2e60 45%, #0d4080 100%) !important;
}

/* ── About page ── */
.about-section {
  background: #fff;
}
.about-section-alt {
  background: linear-gradient(165deg, #f2f6fc 0%, #e8f0fd 100%);
}
.ceo-section {
  background: linear-gradient(155deg, #06152b 0%, #0a2547 50%, #102e62 100%);
  color: #fff;
}
.ceo-section h2,
.ceo-section h3 { color: #fff; }
.ceo-section p  { color: rgba(255,255,255,.85); }

/* ── Services pages & service detail ── */
.service-detail-section,
.service-content-section {
  background: #fff;
}
.service-features-section {
  background: linear-gradient(160deg, #f2f7ff 0%, #e8f0fe 100%);
}
.other-services-section {
  background: linear-gradient(165deg, #06152b 0%, #0a2e65 100%);
  color: #fff;
}
.other-services-section .section-header h2,
.other-services-section .section-header p { color: #fff; }
.other-services-section .section-label    { color: rgba(255,255,255,.65); }

/* ── Contact page ── */
.contact-section {
  background: linear-gradient(170deg, #f4f8ff 0%, #eef4ff 100%);
}
.contact-map-section {
  background: #fff;
}

/* ── Testimonials page ── */
.testimonials-page {
  background: linear-gradient(170deg, #f2f7ff 0%, #eaf2ff 100%);
}

/* ── Pricing page ── */
.pricing-section-bg {
  background: linear-gradient(170deg, #f4f8ff 0%, #eef4ff 100%);
}

/* ── Service sub-pages: FAQ, audit, etc. ── */
.service-faq-section {
  background: linear-gradient(165deg, #f2f7ff 0%, #eef4ff 100%);
}
.audit-bg-alt {
  background: linear-gradient(160deg, #06152b 0%, #0a2547 50%, #0e3565 100%);
}

/* ══════════════════════════════════════════════════════════════════
   PRICING PAGE FIXES  v43+
   — Badge fully visible, card not clipped, equal-height grid
   ══════════════════════════════════════════════════════════════════ */

/* ── PRICING GRID CONTAINER — room for badge above card ── */
.pricing-cards-grid {
  padding-top: 2.25rem !important; /* was 1.5rem — gives badge space above */
  align-items: start !important;   /* remove stretch so popular card can overflow up */
  overflow: visible !important;
}

/* ── POPULAR CARD — badge visible above card ── */
.pricing-card.popular {
  margin-top: -1.25rem;      /* lift card up inside extra-padded grid space */
  position: relative;
  overflow: visible !important;  /* badge must NOT be clipped */
  border-radius: 1.375rem;
  background: linear-gradient(160deg, #071e40 0%, #0d3266 55%, #163d7a 100%);
  box-shadow: 0 20px 60px rgba(10,42,85,.55), 0 0 0 2px rgba(255,255,255,.12);
}

/* ── BADGE — golden pill, always visible ── */
.popular-badge {
  position: absolute;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  background: linear-gradient(135deg, #b8860b 0%, #f5c842 45%, #d4a017 100%);
  color: #3b2400;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1.1rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(180,130,10,.55), 0 1px 3px rgba(0,0,0,.3);
  border: 1.5px solid rgba(255,255,255,.35);
}

/* Ensure parent grid doesn't clip the badge */
.pricing-section-cards,
.tab-content {
  overflow: visible !important;
}
.container { overflow: visible !important; }

/* ── Feature list visual upgrade ── */
.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  line-height: 1.5;
  padding: .35rem .5rem;
  border-radius: .4rem;
  transition: background .2s;
}
.pricing-card-features li:hover {
  background: rgba(10,42,85,.05);
}
.pricing-card.popular .pricing-card-features li:hover {
  background: rgba(255,255,255,.08);
}
.pricing-card-features li svg {
  width: .9rem; height: .9rem;
  stroke: #16a34a; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: .2rem;
}
.pricing-card-features li.unavailable svg { stroke: #9ca3af; }
.pricing-card-features li.unavailable { opacity: .6; }

/* Divider between price and features */
.pricing-card-price {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(10,42,85,.1);
  margin-bottom: 0;
}
.pricing-card.popular .pricing-card-price {
  border-bottom-color: rgba(255,255,255,.15);
}

/* Card CTA pinned to bottom */
.pricing-card {
  display: flex !important;
  flex-direction: column !important;
}
.pricing-card-cta { margin-top: auto; padding-top: .75rem; }

/* Responsive pricing grid */
@media (max-width: 860px) {
  .pricing-cards-grid { grid-template-columns: 1fr !important; max-width: 26rem !important; }
  .pricing-card.popular { margin-top: 1rem; }
}

/* ══════════════════════════════════════════════════════════════════
   ENRICHED CONTENT SECTIONS  v43+
   ══════════════════════════════════════════════════════════════════ */

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media(max-width:1100px){ .process-steps { grid-template-columns: repeat(2,1fr); } }
@media(max-width:520px){ .process-steps { grid-template-columns: 1fr; } }

.process-step {
  background: var(--card);
  border: 1px solid rgba(10,42,85,.09);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  counter-increment: step;
  transition: transform .3s, box-shadow .3s;
  min-width: 0;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
  /* ensure flex column so heading is ALWAYS below icon */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(10,42,85,.12); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(10,42,85,.08);
  line-height: 1;
  margin-bottom: .75rem;
}
.process-step-icon {
  width: 3rem; height: 3rem;
  background: linear-gradient(135deg, rgba(10,42,85,.1), rgba(26,143,209,.12));
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
}
.process-step-icon svg { width: 1.4rem; height: 1.4rem; stroke: #0a3c78; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-step h4 { font-size: .9375rem; font-weight: 700; margin-bottom: .4rem; }
.process-step p  { font-size: .8125rem; color: var(--muted-foreground); line-height: 1.6; }

/* Value props strip */
.value-strip {
  background: linear-gradient(135deg, #071e40 0%, #0e3b70 50%, #1255a8 100%);
  padding: 3rem 0;
  color: #fff;
}
.value-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media(max-width:700px){ .value-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.value-strip-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.value-strip-icon {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  background: rgba(255,255,255,.12);
  border-radius: .625rem;
  display: flex; align-items: center; justify-content: center;
}
.value-strip-icon svg { width: 1.25rem; height: 1.25rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-strip-item h4 { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.value-strip-item p  { font-size: .8125rem; color: rgba(255,255,255,.78); line-height: 1.6; }


/* ══════════════════════════════════════════════════════════════════
   SERVICE INTRO (full-width, no sidebar)  v44+
   ══════════════════════════════════════════════════════════════════ */
.service-intro-section {
  background: linear-gradient(170deg, #f4f8ff 0%, #eef4ff 100%);
}

/* Make service panel fill full width */
.service-intro-section .service-panel { width: 100%; }

/* Banner: wide cinematic ratio */
.service-intro-section .service-banner {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 21/7;
  position: relative;
  margin-bottom: 2.5rem;
}
.service-intro-section .service-banner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.service-intro-section .service-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,14,30,.68) 0%, rgba(10,42,85,.55) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem 3rem;
}
.service-intro-section .service-banner-overlay h2 {
  font-size: clamp(1.75rem,4vw,2.75rem);
  font-weight: 800; color: #fff;
  letter-spacing: -.025em; margin-bottom: .5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.service-intro-section .service-banner-overlay p {
  font-size: 1.125rem; color: rgba(255,255,255,.88);
  max-width: 42rem; line-height: 1.6;
}

/* Service-main: two-column grid for about + benefits */
.service-intro-section .service-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 740px) {
  .service-intro-section .service-main { grid-template-columns: 1fr; }
  .service-intro-section .service-banner { aspect-ratio: 16/9; }
  .service-intro-section .service-banner-overlay { padding: 1.5rem; }
}
.service-intro-section .service-main > div {
  background: #fff;
  border: 1px solid rgba(10,42,85,.09);
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(10,42,85,.06);
}
.service-intro-section .service-main h3 {
  font-size: 1.1875rem; font-weight: 800;
  color: var(--foreground);
  margin-bottom: .9rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid rgba(10,42,85,.08);
}
.service-intro-section .service-main p {
  font-size: 1rem; color: var(--muted-foreground); line-height: 1.75;
}

/* Benefits grid inside intro */
.service-intro-section .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .75rem;
  margin-top: .25rem;
}
.service-intro-section .benefit-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: var(--foreground); font-weight: 500;
}
.service-intro-section .benefit-item svg {
  width: .9rem; height: .9rem;
  stroke: #16a34a; fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   STICKY GET-A-QUOTE BAR  (service pages)
   ══════════════════════════════════════════════════════════ */
#gaq-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8500;
  background: linear-gradient(90deg, #071e40 0%, #0a3c78 55%, #1a8fd1 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 1.5rem;
  box-shadow: 0 4px 18px rgba(10,42,85,.35);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .38s;
  pointer-events: none;
}
#gaq-bar.gaq-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
#gaq-bar-text {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#gaq-bar-text strong { color: #fff; font-weight: 800; }
#gaq-bar-actions { display: flex; gap: .6rem; flex-shrink: 0; align-items: center; }
.gaq-btn {
  border: none; border-radius: .4rem;
  padding: .4rem .85rem;
  font-size: .75rem; font-weight: 800;
  cursor: pointer; white-space: nowrap;
  transition: filter .18s, transform .15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: .3rem;
}
.gaq-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.gaq-btn-primary { background: #fff; color: #0a3c78; }
.gaq-btn-wa      { background: #25D366; color: #fff; }
.gaq-btn svg     { width: .8rem; height: .8rem; stroke: currentColor; fill: none;
                   stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.gaq-btn-wa svg  { stroke: none; fill: #fff; }
#gaq-bar-dismiss {
  background: none; border: none; color: rgba(255,255,255,.6);
  cursor: pointer; font-size: 1.1rem; line-height: 1; padding: .1rem;
  transition: color .15s; flex-shrink: 0;
}
#gaq-bar-dismiss:hover { color: #fff; }
@media (max-width: 600px) {
  #gaq-bar { padding: .5rem .85rem; }
  #gaq-bar-text { display: none; }
  .gaq-btn { padding: .38rem .65rem; font-size: .7rem; }
}

/* ── NEW COMPONENTS (Sub-nav, Language, CTAs, Features) ── */
.sub-navbar {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
  position: sticky;
  top: 5rem; /* below main nav */
  z-index: 40;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.sub-navbar-inner {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 2rem;
  align-items: center;
}
.sub-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--muted);
  transition: all 0.2s;
}
.sub-nav-link:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
@media (max-width: 768px) {
  .hidden-mobile { display: none !important; }
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  border-radius: var(--radius);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  height: 2.25rem;
}
.btn-lang:hover { background: var(--muted); }

.persistent-ctas {
  background: var(--section-alt, hsl(215 30% 97%));
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.persistent-ctas h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--primary);
}
.ctas-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* PRICING TIERS */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}
.pricing-tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(10,42,85,0.1);
  border-color: var(--primary);
}
.pricing-tier.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(10,42,85,0.1);
}
.pricing-tier.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier-name { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.tier-price { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--foreground); }
.tier-price span { font-size: 1rem; color: var(--muted-foreground); font-weight: 500; }
.tier-features { list-style: none; margin-bottom: 2.5rem; flex: 1; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}
.tier-features svg {
  width: 1.25rem; height: 1.25rem;
  stroke: var(--primary); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 0.125rem;
}
.tier-btn { width: 100%; margin-top: auto; }

/* TESTIMONIALS & SOCIAL FEED */
.testimonials-section, .social-feed-section {
  padding: 5rem 0;
  background: var(--background);
}
.testimonials-grid, .social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card, .social-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.testimonial-text { font-size: 1.0625rem; font-style: italic; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 700; color: var(--foreground); }
.testimonial-company { font-size: 0.875rem; color: var(--primary); }

.social-card { display: flex; flex-direction: column; gap: 1rem; }
.social-header { display: flex; align-items: center; gap: 1rem; }
.social-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: var(--muted); }
.social-author { font-weight: 700; font-size: 0.9375rem; }
.social-handle { font-size: 0.75rem; color: var(--muted-foreground); }
.social-content { font-size: 0.9375rem; line-height: 1.6; }
.social-footer { margin-top: auto; font-size: 0.75rem; color: var(--muted-foreground); }

/* TRUST BADGES */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--section-alt, hsl(215 30% 97%));
}
.badge-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 600; color: var(--foreground);
}
.badge-item svg { width: 2rem; height: 2rem; stroke: var(--primary); fill: none; stroke-width: 1.5; }

/* CALCULATOR TABS */
.calc-tabs { display: flex; gap: 1rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.calc-tab {
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--muted-foreground);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
}
.calc-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.calc-pane { display: none; }
.calc-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* FORMS */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.875rem; }
.form-control {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  font-family: inherit; font-size: 1rem;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(10,42,85,0.1); }

/* Dropdown CSS */


/* Main nav Services hover dropdown */
.nav-services-dropdown {
  position: relative;
  display: inline-block;
}
.nav-services-dropdown > a {
  display: inline-block;
  padding: 0.5rem 0;
}
.nav-services-menu {
  display: none;
  position: absolute;
  background-color: var(--card, #ffffff);
  min-width: 280px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 0.5rem;
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-services-menu a {
  color: var(--foreground, #333);
  padding: 10px 18px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s;
}
.nav-services-menu a:last-child {
  border-bottom: none;
}
.nav-services-menu a:hover {
  background-color: #f1f5f9;
  color: var(--primary, #0a3c78);
}
.nav-services-dropdown:hover .nav-services-menu {
  display: block;
}
