/* Source: public/assets/css/tokens.css */
:root {
  /* Color Palette - Al Barr Brand */
  --color-primary: #001355;
  --color-primary-container: #082680;
  --color-primary-fixed: #dde1ff;
  
  --color-secondary: #008000;
  --color-secondary-hover: #006800;
  --color-secondary-container: #008000;
  --color-secondary-fixed: #32CD32;
  --color-on-secondary-container: #006800;

  --color-tertiary: #001b40;
  --color-tertiary-container: #002f67;

  --color-background: #f9f9ff;
  --color-surface: #ffffff;
  --color-surface-muted: #f4f6fc;
  --color-surface-container-low: #f1f3ff;
  --color-surface-container-high: #e1e8fd;
  
  --color-on-background: #141b2b;
  --color-on-surface: #141b2b;
  --color-on-surface-variant: #444652;
  --color-on-primary: #ffffff;
  --color-on-secondary: #ffffff;

  --color-border-subtle: #e2e6f3;
  --color-border-hover: #001355;
  --color-outline: #757683;

  /* Unified Sans-Serif Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
  --font-mono: var(--font-sans);

  /* Shared non-hero content typography */
  --type-content-h1: clamp(2rem, 3vw, 2.4rem);
  --type-content-h2: clamp(1.625rem, 2.4vw, 2rem);
  --type-content-h3: clamp(1.3rem, 1.8vw, 1.5rem);
  --type-content-h4: clamp(1.125rem, 1.4vw, 1.25rem);
  --type-content-h5: clamp(1.05rem, 1.2vw, 1.125rem);
  --type-content-h6: 1rem;
  --type-content-body: 1rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: clamp(2.5rem, 6vw, 5rem);
  
  --container-max: 1280px;
  --header-height: 4.5rem;

  /* Elevation & Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 19, 85, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 19, 85, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 19, 85, 0.12);
}
/* Source: public/assets/css/base.css */
*, *::before, *::after { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-on-background);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

body.modal-open .site-header {
  padding-right: var(--scrollbar-width, 0px);
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Subtle In-Content Paragraph Links (No forced bolding, no underline on default or hover) */
p a, .content-link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

p a:hover, .content-link:hover {
  color: var(--color-secondary);
  text-decoration: none !important;
}

p a:focus-visible, .content-link:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6, p {
  margin-block-start: 0;
  margin-block-end: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 1rem; }

/*
 * One content scale across every public template. Hero containers retain their
 * purpose-built display typography; UI chrome outside <main> is unaffected.
 * !important intentionally neutralizes legacy inline font-size declarations.
 */
main :where(h1):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-h1) !important;
  line-height: 1.16;
  text-wrap: balance;
}

main :where(h2):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-h2) !important;
  line-height: 1.2;
  text-wrap: balance;
}

main :where(h3):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-h3) !important;
  line-height: 1.25;
  text-wrap: balance;
}

main :where(h4):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-h4) !important;
  line-height: 1.3;
  text-wrap: balance;
}

main :where(h5):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-h5) !important;
  line-height: 1.35;
  text-wrap: balance;
}

main :where(h6):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-h6) !important;
  line-height: 1.4;
  text-wrap: balance;
}

main :where(p):not(:where([class*="hero"] *)) {
  font-size: var(--type-content-body) !important;
  line-height: 1.65;
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 2rem), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-8);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-200%);
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Eyebrow / Label Caps */
.label-caps {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Source: public/assets/css/components.css */
/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 2.35rem;
  width: auto;
  object-fit: contain;
}

.primary-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

/* Glam & Modern Hover Effect for Header Nav Links */
.nav-link {
  position: relative;
  padding: 0.5rem 0.95rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-on-surface-variant);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #082680;
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0, 19, 85, 0.12);
  transform: translateY(-1px);
  text-decoration: none;
}

.nav-link.active {
  color: #082680;
  font-weight: 700;
  background: #ffffff;
  border-color: var(--color-border-subtle);
  box-shadow: 0 2px 8px rgba(0, 19, 85, 0.08);
}

/* Mega Menu Container & Dropdown Styling */
.nav-item-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-arrow {
  font-size: 1.15rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Menu Content Panel */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  padding-top: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item-dropdown:hover .mega-menu,
.nav-item-dropdown:focus-within .mega-menu {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-services {
  width: min(92vw, 52rem);
}

.mega-menu-services .mega-menu-inner {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.mega-menu-products {
  width: min(92vw, 24rem);
}

.mega-menu-inner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 16px 40px rgba(0, 19, 85, 0.14);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-height: calc(85vh - var(--header-height));
  overflow-y: auto;
}

.mega-menu-inner.mega-single-column {
  grid-template-columns: 1fr;
  padding: 1.25rem;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-mega-section-trigger {
  display: none;
}

.mega-menu-header {
  display: flex;
  align-items: center;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.mega-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.mega-col-sub {
  font-size: 0.78rem;
  color: var(--color-on-surface-variant);
}

/* Mega Menu Links Grid with Clean Vertical Scrollable Flow (Showing ~6 Items Default) */
.mega-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 14.5rem;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.mega-links-grid::-webkit-scrollbar {
  width: 5px;
}

.mega-links-grid::-webkit-scrollbar-track {
  background: var(--color-surface-container-low);
  border-radius: 4px;
}

.mega-links-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 19, 85, 0.2);
  border-radius: 4px;
}

.mega-link-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-on-surface-variant);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.35;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mega-link-item:hover {
  background-color: var(--color-surface-container-low);
  color: var(--color-primary);
  font-weight: 600;
  transform: translateX(3px);
}

/* Location-first service navigation */
.location-directory {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  max-height: 14.5rem;
  padding-right: .35rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 19, 85, .25) transparent;
}

.location-service-group {
  border-radius: var(--radius-sm);
  overflow: clip;
}

.location-service-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem .75rem;
  color: var(--color-on-surface-variant);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s ease, background-color .2s ease;
}

.location-service-trigger::-webkit-details-marker {
  display: none;
}

.location-service-trigger:hover,
.location-service-trigger:focus-visible,
.location-service-group[open] > .location-service-trigger {
  color: var(--color-primary);
  background: var(--color-surface-container-low);
  font-weight: 600;
}

.location-service-trigger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.location-service-name {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.location-service-arrow {
  flex: 0 0 auto;
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.location-service-group[open] .location-service-arrow {
  transform: rotate(180deg);
}

.location-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .25rem;
  padding: .35rem .5rem .6rem;
  border-top: 1px solid var(--color-border-subtle);
  background: var(--color-surface-muted);
}

.location-service-link {
  min-width: 0;
  padding: .45rem .5rem;
  border-radius: .35rem;
  color: var(--color-on-surface-variant);
  font-size: .77rem;
  line-height: 1.35;
  text-decoration: none;
}

a.location-service-link:hover,
a.location-service-link:focus-visible {
  color: var(--color-primary);
  background: #fff;
  text-decoration: none;
}

.location-service-link-pending {
  color: #94a3b8;
  cursor: default;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid var(--color-border-subtle);
  border-radius: 50%;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-btn:hover {
  background-color: var(--color-surface-container-low);
  border-color: var(--color-primary);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

/* 2026 Modern Design System - Fast & Lightweight Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.725rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, box-shadow;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:active {
  transform: scale(0.97) translateY(0) !important;
  box-shadow: none !important;
}

/* 1. Primary Button: 2026 Premium Deep Blue Multi-Stop Gradient */
.button-primary {
  background: linear-gradient(135deg, #001f85 0%, #001355 50%, #000930 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(0, 19, 85, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, #0028a8 0%, #00196e 50%, #001047 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 22px rgba(0, 19, 85, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.book-service-btn {
  padding: 0.65rem 1.45rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* 2. Secondary Button: Modern 2026 Subtle Surface Glow & Sharp Border */
.button-secondary {
  background: rgba(0, 19, 85, 0.03);
  color: var(--color-primary);
  border: 1.5px solid rgba(0, 19, 85, 0.22);
  box-shadow: 0 2px 6px rgba(0, 19, 85, 0.04);
}

.button-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 6px 18px rgba(0, 19, 85, 0.22);
  transform: translateY(-2px);
}

.button-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.button-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  transform: translateY(-1.5px);
}

/* 3. Green Action Button (WhatsApp / Direct Bookings): 2026 Rich Emerald Gradient */
.button-whatsapp {
  background: linear-gradient(135deg, #008000 0%, #006800 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(0, 128, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button-whatsapp:hover {
  background: linear-gradient(135deg, #006800 0%, #005000 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 22px rgba(0, 104, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* FAB WhatsApp Floating Button (Hardware Accelerated 2026 Pulse) */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #008000 0%, #006800 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 128, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  will-change: transform;
}

.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  background: linear-gradient(135deg, #006800 0%, #005000 100%);
  box-shadow: 0 12px 30px rgba(0, 104, 0, 0.45);
  color: #ffffff;
}

/* Mobile-specific nav adjustments & Slide-down Drawer */
.mobile-book-btn {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

@media (min-width: 64rem) {
  .nav-toggle { display: none !important; }
  .primary-nav {
    display: flex !important;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    flex-direction: row !important;
    height: auto !important;
    overflow: visible !important;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--header-height);
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 63.99rem) {
  .header-actions .book-service-btn {
    display: none;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 90;
  }

  .nav-toggle-icon {
    transition: transform 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    transform: rotate(90deg);
  }
  
  /* Mobile Navigation Drawer (Opens Below Header, Smooth Hardware Accelerated) */
  .primary-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    padding: 1.25rem 1.5rem 3rem 1.5rem;
    border-top: 1px solid var(--color-border-subtle);
    box-shadow: 0 20px 40px rgba(0, 19, 85, 0.18);
    gap: 0.75rem;
    overflow-y: auto;
    transform: translate3d(0, -1rem, 0);
    will-change: transform, opacity;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.26s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.2s ease,
                visibility 0s linear 0.26s;
    z-index: 65;
  }

  .primary-nav[data-open] {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  /* Mobile Sidebar Backdrop Overlay */
  .mobile-nav-backdrop {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 27, 43, 0.65);
    backdrop-filter: blur(4px);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0s linear 0.22s;
  }

  .primary-nav[data-open] ~ .mobile-nav-backdrop,
  .mobile-nav-backdrop[data-open] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .primary-nav .nav-link {
    width: 100%;
    padding: 0.85rem 1.15rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-primary);
  }

  .primary-nav .nav-link.active {
    background: var(--color-surface-container-low);
    border-color: var(--color-primary);
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .mega-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    padding-top: 0.5rem;
    display: none;
    width: 100% !important;
  }

  .nav-item-dropdown[data-mobile-open] .mega-menu {
    display: block;
  }

  .nav-item-dropdown[data-mobile-open] .dropdown-arrow {
    transform: rotate(180deg);
  }

  .mega-menu-inner {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    box-shadow: none !important;
    border: 1px solid var(--color-border-subtle) !important;
    background: var(--color-surface-muted) !important;
    padding: 1rem !important;
    max-height: 15.5rem !important;
    overflow-y: auto !important;
  }

  .mega-menu-services .mega-menu-inner {
    max-height: none !important;
    overflow: visible !important;
  }

  .mega-menu-services .mega-menu-header-desktop {
    display: none;
  }

  .mobile-mega-section-trigger {
    width: 100%;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .9rem;
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--color-primary);
    font: inherit;
    font-size: .925rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }

  .mobile-mega-section-trigger .material-symbols-outlined {
    font-size: 1.15rem;
    transition: transform .2s ease;
  }

  [data-mobile-section-open] > .mobile-mega-section-trigger {
    border-color: var(--color-primary);
    background: var(--color-surface-container-low);
  }

  [data-mobile-section-open] > .mobile-mega-section-trigger .material-symbols-outlined {
    transform: rotate(180deg);
  }

  .mega-menu-services [data-mobile-mega-panel] {
    display: none !important;
  }

  .mega-menu-services [data-mobile-section-open] > [data-mobile-mega-panel] {
    display: flex !important;
  }

  .location-directory {
    max-height: 18.5rem;
    padding-right: .25rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .location-service-trigger {
    min-height: 2.85rem;
    padding: .7rem .8rem;
  }

  .location-service-links {
    grid-template-columns: 1fr;
  }

  .location-service-link {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    padding: .55rem .65rem;
    font-size: .82rem;
  }

  .mega-links-grid {
    max-height: none !important;
    overflow-y: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
  }

  .mega-menu-quick-services .mega-links-grid {
    max-height: 14.5rem !important;
    padding-right: .25rem;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav .mobile-book-btn {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    padding: 0.9rem 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
  }
}

/* Search Modal Overlay */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(2rem, 10vw, 5rem);
  padding-inline: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.search-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 43, 0.65);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-container {
  position: relative;
  z-index: 10;
  width: min(100%, 42rem);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(-16px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal[aria-hidden="false"] .search-modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border-subtle);
  gap: 0.75rem;
}

.search-input-wrapper .search-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.search-input-wrapper input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.05rem;
  color: var(--color-on-surface);
}

.search-modal-close {
  background: transparent;
  border: 0;
  color: var(--color-on-surface-variant);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.search-modal-close:hover {
  color: var(--color-primary);
  background: var(--color-surface-container-low);
  transform: rotate(90deg);
}

.search-results-list {
  max-height: 24rem;
  overflow-y: auto;
  padding: 0.5rem;
}

.search-placeholder-hint {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--color-on-surface-variant);
  font-size: 0.95rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: var(--color-surface-container-low);
}

.search-result-title {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.search-result-category {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: var(--color-surface-container-high);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Book Service Popup Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 27, 43, 0.65);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-card {
  position: relative;
  z-index: 10;
  width: min(100%, 36rem);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-subtle);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 35.99rem) {
  .modal-overlay {
    align-items: flex-end;
    padding: max(0.5rem, env(safe-area-inset-top)) 0 0;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100dvh - max(0.5rem, env(safe-area-inset-top)));
    border-radius: 1.25rem 1.25rem 0 0 !important;
    border-bottom: 0 !important;
    transform: translateY(2rem) scale(0.985);
  }

  .modal-header {
    flex: 0 0 auto;
    align-items: center;
    padding: 1rem 1.1rem !important;
  }

  .modal-title {
    font-size: 1.15rem !important;
  }

  .modal-close-btn {
    width: 2.5rem !important;
    height: 2.5rem !important;
    flex: 0 0 2.5rem;
  }

  .modal-body {
    min-height: 0;
    padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom)) !important;
    gap: 0.8rem !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .modal-body .form-row {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0.8rem !important;
  }

  .modal-body .form-group {
    min-width: 0;
    gap: 0.25rem;
  }

  .modal-body .form-group label {
    margin-bottom: 0.2rem !important;
    font-size: 0.8rem !important;
  }

  .modal-body input:not([type="hidden"]),
  .modal-body textarea,
  .modal-body .custom-dropdown-trigger {
    min-height: 2.75rem;
    padding: 0.65rem 0.8rem !important;
    font-size: 1rem !important;
  }

  .modal-body textarea {
    min-height: 4.75rem;
    resize: vertical;
  }

  .modal-body .phone-prefix {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.7rem !important;
  }

  .modal-body .custom-dropdown-menu {
    position: static !important;
    max-height: 10.5rem !important;
    margin-top: 0.35rem;
  }

  .modal-body .modal-footer {
    position: sticky;
    bottom: calc(-1rem - env(safe-area-inset-bottom));
    z-index: 20;
    margin: 0.1rem -1rem calc(-1rem - env(safe-area-inset-bottom)) !important;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.94), #ffffff 35%);
    border-top: 1px solid var(--color-border-subtle);
  }

  .modal-body .modal-footer .button {
    min-height: 3rem;
    padding: 0.7rem 1rem !important;
    font-size: 0.95rem !important;
  }
}

.modal-overlay[aria-hidden="false"] .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-header {
  padding: 1.25rem 1.5rem;
  background: var(--color-surface-muted);
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.modal-close-btn {
  background: transparent;
  border: 0;
  color: var(--color-on-surface-variant);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.modal-close-btn:hover {
  color: #ffffff !important;
  background: #008000 !important;
  border-color: #008000 !important;
}

.toast-region {
  position: fixed;
  z-index: 300;
  inset-block-start: calc(var(--header-height) + 1rem);
  inset-inline-end: max(1rem, calc((100vw - var(--container-max)) / 2));
  display: grid;
  gap: 0.75rem;
  width: min(24rem, calc(100vw - 2rem));
  pointer-events: none;
}

.site-toast {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 0.9rem 0.8rem 0.9rem 1rem;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 19, 85, .82), rgba(17, 42, 112, .66));
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 19, 85, .24), inset 0 1px 0 rgba(255, 255, 255, .28);
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  font-size: .925rem;
  font-weight: 400;
  pointer-events: auto;
  animation: notification-enter .28s cubic-bezier(.16, 1, .3, 1) both;
  transition: opacity .2s ease, transform .2s ease;
}

.site-toast::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background: radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .32), transparent 45%);
  pointer-events: none;
}

.site-toast-message {
  flex: 1;
  padding-top: .15rem;
  line-height: 1.5;
}

@media (max-width: 47.99rem) {
  .toast-region {
    inset-block-start: calc(var(--header-height) + .75rem);
    inset-inline: auto;
    left: 50%;
    width: calc(100vw - 2rem);
    transform: translateX(-50%);
  }
}

.site-toast-success {
  background: linear-gradient(135deg, rgba(8, 105, 58, .84), rgba(22, 137, 78, .66));
}

.site-toast-error {
  background: linear-gradient(135deg, rgba(145, 22, 36, .86), rgba(190, 38, 50, .66));
}

.notification-close {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: inherit;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.notification-close:hover,
.notification-close:focus-visible {
  background: rgba(255, 255, 255, .26);
  transform: scale(1.05);
}

.notification-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.notification-close .material-symbols-outlined {
  font-size: 1.1rem;
}

.site-toast.is-closing,
.form-response-alert.is-closing {
  opacity: 0;
  transform: translateY(-.5rem) scale(.97);
}

.form-response-alert {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: .75rem 0 .5rem;
  padding: .9rem 1rem;
  color: var(--color-primary);
  font-weight: 400;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(0, 19, 85, .18);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 19, 85, .12), inset 0 1px 0 rgba(255, 255, 255, .65);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition: opacity .2s ease, transform .2s ease;
}

.button.is-submitting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  cursor: wait;
}

.button.is-submitting:disabled {
  opacity: .82;
}

.submit-loading-spinner {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, .42);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: submit-spinner-rotate .7s linear infinite;
}

@keyframes submit-spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.form-response-alert.alert-success {
  border-color: rgba(8, 105, 58, .3);
  color: #075b35;
}

.form-response-alert.alert-danger {
  border-color: rgba(145, 22, 36, .3);
  color: #8b1727;
}

.form-response-alert .notification-close {
  margin-left: auto;
  border-color: rgba(0, 19, 85, .14);
  background: rgba(255, 255, 255, .36);
}

@keyframes notification-enter {
  from {
    opacity: 0;
    transform: translateY(-.75rem) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-toast {
    animation: none;
  }

  .site-toast,
  .form-response-alert {
    transition: none;
  }

  .submit-loading-spinner {
    animation-duration: 1.4s;
  }
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 36rem) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  background: var(--color-background);
  color: var(--color-on-surface);
  font-size: 0.9375rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 19, 85, 0.1);
}

.custom-dropdown-item {
  padding: .6rem .85rem;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  line-height: 1.4;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease;
}

.custom-dropdown-item:hover,
.custom-dropdown-item:focus,
.custom-dropdown-item[aria-selected="true"] {
  color: var(--color-primary);
  background: rgba(0, 19, 85, .08);
}

.modal-footer {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--color-on-surface-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
}

/* Service Cards */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.25);
  box-shadow: var(--shadow-md);
}

.service-card-image {
  position: relative;
  height: 12.5rem;
  width: 100%;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-surface-container-low);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-card-text {
  font-size: 0.9375rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
}

.service-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap 0.2s ease;
}

.service-card-link:hover {
  gap: 0.65rem;
}

/* FAQ Accordion Component */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
}

.faq-item {
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 19, 85, 0.03);
  transition: border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(0, 19, 85, 0.25);
  box-shadow: 0 6px 18px rgba(0, 19, 85, 0.08);
}

.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0, 19, 85, 0.12);
  background-color: #ffffff;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 1rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] .faq-summary {
  color: #001355;
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.03) 0%, rgba(0, 19, 85, 0.01) 100%);
  border-bottom: 1px solid rgba(0, 19, 85, 0.08);
}

.faq-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(0, 128, 0, 0.08);
  border: 1px solid rgba(0, 128, 0, 0.2);
  color: #008000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.25s ease, 
              color 0.25s ease,
              border-color 0.25s ease;
  flex-shrink: 0;
}

.faq-summary:hover .faq-icon {
  background: #008000;
  color: #ffffff;
  border-color: #008000;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #001f85 0%, #001355 100%);
  color: #ffffff;
  border-color: #001355;
}

.faq-content {
  padding: 1.25rem 1.6rem 1.5rem 1.6rem;
  color: var(--color-on-surface-variant);
  font-size: 0.965rem;
  line-height: 1.65;
  background-color: #ffffff;
}

/* Footer */
.site-footer {
  background-color: #050c26;
  background-image: 
    radial-gradient(rgba(50, 205, 50, 0.12) 1px, transparent 1px),
    linear-gradient(to right, rgba(0, 128, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 128, 0, 0.04) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
  position: relative;
  color: #ffffff;
  padding-block: var(--space-8) var(--space-6);
  border-top: 1px solid rgba(50, 205, 50, 0.25);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.footer-brand-col {
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.footer-logo {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  margin-left: 0;
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 22rem;
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

.footer-title {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #32CD32;
  margin-bottom: 0.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #32CD32;
  transform: scale(1.05);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  text-align: left;
}

.icon-accent {
  color: #32CD32;
  flex-shrink: 0;
  font-size: 1.15rem;
  margin-top: 0.1rem;
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

@media (min-width: 48rem) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer-right-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

@media (min-width: 48rem) {
  .footer-right-legal {
    align-items: flex-end;
    text-align: right;
  }
}

.footer-legal-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal-copy p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #32CD32;
  transform: scale(1.015);
  text-decoration: none;
}

.credit-line {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.platform-line {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-legal-links a:hover {
  color: #32CD32;
  transform: scale(1.015);
  text-decoration: none;
}

/* Footer Mobile Responsive Optimizations */
@media (max-width: 47.99rem) {
  .site-footer {
    padding-block: 3.5rem 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.25rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }

  .footer-description {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    padding-block: 0.2rem;
    font-size: 0.9rem;
  }

  .footer-contact-col {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-right-legal {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-legal-links {
    margin-top: 0.25rem;
    flex-wrap: wrap;
    gap: 0.65rem;
  }
}
/* Source: public/assets/css/pages.css */
/* Hero Section */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: var(--space-8);
  background-color: var(--color-background);
  overflow: hidden;
}

/* Projects showcase and gallery */
.project-hero-content{position:relative;z-index:2;}
.projects-showcase-section{padding-block:var(--space-8);background:var(--color-background);}
.projects-showcase-section .section-header>p{max-width:46rem;margin-inline:auto;color:var(--color-on-surface-variant);font-size:1.05rem;}
.projects-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem;margin-top:var(--space-6);}
.project-card{display:flex;overflow:hidden;flex-direction:column;border:1px solid var(--color-border-subtle);border-radius:20px;background:var(--color-surface);box-shadow:0 14px 38px rgba(6,59,58,.08);transition:transform .25s ease,box-shadow .25s ease;}
.project-card:hover{transform:translateY(-4px);box-shadow:0 20px 48px rgba(6,59,58,.14);}
.project-card-media{position:relative;display:block;width:100%;padding:0;border:0;background:#dcebea;cursor:pointer;overflow:hidden;}
.project-card-media:focus-visible{outline:3px solid var(--color-secondary);outline-offset:-3px;}
.project-card-media img{display:block;width:100%;aspect-ratio:4/3;object-fit:cover;transition:transform .4s ease;}
.project-card:hover .project-card-media img,.project-card-media:focus-visible img{transform:scale(1.035);}
.project-image-count,.project-view-gallery{position:absolute;display:inline-flex;align-items:center;gap:.35rem;border-radius:999px;background:rgba(6,38,37,.78);color:#fff;backdrop-filter:blur(10px);}
.project-image-count{top:.85rem;right:.85rem;padding:.4rem .65rem;font-size:.75rem;font-weight:650;}
.project-image-count .material-symbols-outlined{font-size:1rem;}
.project-view-gallery{left:50%;bottom:1rem;padding:.5rem .85rem;font-size:.78rem;font-weight:700;opacity:0;transform:translate(-50%,10px);transition:opacity .25s ease,transform .25s ease;}
.project-card-media:hover .project-view-gallery,.project-card-media:focus-visible .project-view-gallery{opacity:1;transform:translate(-50%,0);}
.project-card-body{display:flex;flex:1;padding:1.15rem 1.2rem 1.3rem;flex-direction:column;align-items:flex-start;}
.project-service-label{display:inline-flex;margin-bottom:.65rem;padding:.3rem .58rem;border-radius:999px;background:rgba(50,205,50,.12);color:var(--color-primary);font-size:.72rem;font-weight:750;letter-spacing:.03em;}
.project-card-body h3{margin:0 0 .55rem;color:var(--color-primary);font-size:1.14rem;line-height:1.3;}
.project-card-body p{margin:0;color:var(--color-on-surface-variant);font-size:.9rem;line-height:1.65;}
.project-card-action{display:inline-flex;align-items:center;gap:.35rem;margin-top:auto;padding:1rem 0 0;border:0;background:transparent;color:var(--color-primary);font-size:.86rem;font-weight:750;cursor:pointer;}
.project-card-action .material-symbols-outlined{font-size:1.05rem;transition:transform .2s ease;}
.project-card-action:hover .material-symbols-outlined,.project-card-action:focus-visible .material-symbols-outlined{transform:translateX(.2rem);}
.projects-empty-state{display:flex;min-height:17rem;margin-top:var(--space-6);padding:var(--space-6);align-items:center;justify-content:center;flex-direction:column;text-align:center;border:1px dashed var(--color-border-subtle);border-radius:20px;background:var(--color-surface-muted);}
.projects-empty-state>.material-symbols-outlined{font-size:3rem;color:var(--color-secondary);}
.projects-empty-state h3{margin:.7rem 0 .3rem;color:var(--color-primary);}
.projects-empty-state p{margin:0;color:var(--color-on-surface-variant);}
.project-gallery-modal[hidden]{display:none;}
.project-gallery-modal{position:fixed;inset:0;z-index:1200;display:grid;padding:clamp(.75rem,3vw,2rem);place-items:center;}
.project-gallery-backdrop{position:absolute;inset:0;background:rgba(3,20,20,.78);backdrop-filter:blur(12px);}
.project-gallery-dialog{position:relative;display:grid;width:min(1080px,100%);max-height:calc(100vh - 2rem);grid-template-rows:auto minmax(0,1fr) auto;overflow:hidden;border:1px solid rgba(255,255,255,.18);border-radius:24px;background:#071f1e;color:#fff;box-shadow:0 28px 80px rgba(0,0,0,.42);}
.project-gallery-dialog:focus{outline:none;}
.project-gallery-header{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;padding:1rem 1.2rem;border-bottom:1px solid rgba(255,255,255,.1);}
.project-gallery-service{display:block;margin-bottom:.25rem;color:#7ee17e;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.project-gallery-header h2{margin:0;color:#fff;font-size:clamp(1.1rem,2.2vw,1.55rem);}
.project-gallery-header p{max-width:48rem;margin:.35rem 0 0;color:rgba(255,255,255,.68);font-size:.82rem;line-height:1.5;}
.project-gallery-close,.project-gallery-arrow{display:grid;flex:0 0 auto;padding:0;place-items:center;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.1);color:#fff;cursor:pointer;backdrop-filter:blur(10px);}
.project-gallery-close{width:2.5rem;height:2.5rem;}
.project-gallery-stage{position:relative;display:grid;min-height:280px;place-items:center;overflow:hidden;background:#020b0b;}
.project-gallery-stage>img{display:block;width:100%;height:100%;max-height:65vh;object-fit:contain;}
.project-gallery-arrow{position:absolute;top:50%;z-index:2;width:3rem;height:3rem;transform:translateY(-50%);}
.project-gallery-arrow:disabled{opacity:.25;cursor:default;}
.project-gallery-arrow-prev{left:1rem;}.project-gallery-arrow-next{right:1rem;}
.project-gallery-close:focus-visible,.project-gallery-arrow:focus-visible,.project-gallery-thumbnails button:focus-visible{outline:3px solid #7ee17e;outline-offset:2px;}
.project-gallery-footer{display:flex;align-items:center;gap:1rem;padding:.8rem 1.15rem;border-top:1px solid rgba(255,255,255,.1);}
.project-gallery-footer>span{flex:0 0 auto;color:rgba(255,255,255,.72);font-size:.78rem;font-weight:650;}
.project-gallery-thumbnails{display:flex;min-width:0;gap:.55rem;overflow-x:auto;scrollbar-width:thin;}
.project-gallery-thumbnails button{flex:0 0 auto;width:58px;height:44px;padding:0;overflow:hidden;border:2px solid transparent;border-radius:8px;background:transparent;cursor:pointer;opacity:.56;}
.project-gallery-thumbnails button.is-active{border-color:#7ee17e;opacity:1;}
.project-gallery-thumbnails img{display:block;width:100%;height:100%;object-fit:cover;}
.project-gallery-open{overflow:hidden;}
.project-cta-label{color:#32cd32;}
.project-cta-actions{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;width:100%;}

@media(max-width:900px){.projects-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:620px){
    .projects-grid{grid-template-columns:1fr;}
    .project-gallery-modal{padding:0;}
    .project-gallery-dialog{width:100%;height:100vh;height:100dvh;max-height:none;border-radius:0;}
    .project-gallery-header{padding:.85rem;}
    .project-gallery-header p{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2;font-size:.76rem;}
    .project-gallery-stage{min-height:0;}
    .project-gallery-stage>img{max-height:none;}
    .project-gallery-arrow{width:2.65rem;height:2.65rem;}
    .project-gallery-arrow-prev{left:.55rem;}.project-gallery-arrow-next{right:.55rem;}
    .project-gallery-footer{padding:.7rem .85rem;}
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 64rem) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-7);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 128, 0, 0.08);
  border: 1px solid rgba(0, 128, 0, 0.25);
  border-radius: var(--radius-sm);
  color: #006b00;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-secondary);
  box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.4);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 128, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 128, 0, 0);
  }
}

.hero-title {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero-title .text-secondary {
  color: var(--color-secondary);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--color-on-surface-variant);
  max-width: 36rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-certifications {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.85;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.hero-media {
  position: relative;
  width: 100%;
  height: 24rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 64rem) {
  .hero-media {
    height: 34rem;
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 19, 85, 0.35) 0%, transparent 60%);
}

/* Common Section Header */
.section-header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: var(--space-7);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-header.text-left {
  text-align: left;
  margin-inline: 0;
}

/* About Section */
.about-section {
  padding-block: var(--space-8);
  background-color: var(--color-surface-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}

.about-grid > * {
  min-width: 0;
}

@media (min-width: 64rem) {
  .about-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.about-media {
  position: relative;
  width: 100%;
  height: 26rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge-floating {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--color-secondary) 12%, transparent);
  color: var(--color-secondary);
  font-size: 1.2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-secondary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-on-surface-variant);
  line-height: 1.3;
}

@media (max-width: 30rem) {
  .about-stats {
    gap: 0.65rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}

/* Services Section */
.services-section {
  padding-block: var(--space-8);
  background-color: var(--color-background);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Card CTA Variant */
.service-card-cta {
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-tertiary-container) 100%);
  color: #ffffff;
  border-color: transparent;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
}

.service-card-cta .service-card-title {
  color: #ffffff;
  margin-top: 1rem;
}

.service-card-cta .service-card-text {
  color: rgba(255, 255, 255, 0.85);
}

.service-card-cta .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-cta .button-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Why Choose Us Section - Redesigned */
.value-props-section {
  padding-block: var(--space-8);
  background-color: var(--color-surface-muted);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 36rem) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .why-choose-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 19, 85, 0.25);
  box-shadow: var(--shadow-md);
}

.why-card-icon-wrapper {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.06) 0%, rgba(0, 109, 51, 0.08) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.why-card-icon-wrapper .material-symbols-outlined {
  font-size: 1.85rem;
}

.why-card:hover .why-card-icon-wrapper {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.9rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.why-card-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
  background: rgba(0, 109, 51, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.why-banner-card {
  position: relative;
  background: linear-gradient(135deg, #001355 0%, #00227b 50%, #001b40 100%);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 4.25rem) clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: 0 16px 40px rgba(0, 19, 85, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.why-banner-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.18) 0%, rgba(0, 128, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-banner-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 20%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(8, 38, 128, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (min-width: 52rem) {
  .why-banner-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.why-banner-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.why-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #32CD32;
  background: rgba(50, 205, 50, 0.12);
  border: 1px solid rgba(50, 205, 50, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.why-banner-content h3 {
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}

.why-banner-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  max-width: 42rem;
  margin: 0;
  line-height: 1.6;
}

.why-banner-actions {
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.why-banner-actions .button {
  padding: 0.9rem 1.85rem;
  font-size: 1.025rem;
}

/* Testimonials Section */
.testimonials-section {
  padding-block: var(--space-8);
  background-color: var(--color-background);
}

.testimonials-carousel { position: relative; }

.testimonials-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonials-viewport::-webkit-scrollbar { display: none; }

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}

.testimonials-section .section-header p,
.blog-section .section-header p {
  max-width: 46rem;
  margin-inline: auto;
  color: var(--color-on-surface-variant);
  font-size: 1.05rem;
}

.managed-content-empty {
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 2rem;
  text-align: center;
  color: var(--color-on-surface-variant);
  background: var(--color-surface-muted);
  border: 1px dashed var(--color-border-subtle);
  border-radius: var(--radius-md);
}

.managed-content-empty .material-symbols-outlined {
  font-size: 2.25rem;
  color: var(--color-primary);
}

.managed-content-empty p {
  margin: 0;
}

.managed-content-action {
  margin-top: 3rem;
  text-align: center;
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 48rem) {
  .testimonial-card { flex-basis: calc((100% - 1.25rem) / 2); }
}

@media (min-width: 64rem) {
  .testimonial-card { flex-basis: calc((100% - 2.5rem) / 3); }
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  font-style: italic;
}

.testimonial-source {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.4rem;
}

.testimonial-control,
.testimonial-dot {
  display: grid;
  padding: 0;
  place-items: center;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  color: var(--color-primary);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.testimonial-control {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.testimonial-control .material-symbols-outlined { font-size: 1.2rem; }
.testimonial-control:hover { border-color: var(--color-primary); transform: translateY(-1px); }
.testimonial-control:disabled { opacity: .4; cursor: default; transform: none; }
.testimonial-autoplay { margin-inline-start: .2rem; }

.testimonials-dots { display: flex; align-items: center; justify-content: center; gap: .4rem; }
.testimonial-dot { width: .58rem; height: .58rem; border-radius: 999px; background: #d9deed; }
.testimonial-dot[aria-current="true"] { width: 1.65rem; border-color: var(--color-primary); background: var(--color-primary); }

.author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--color-primary-fixed);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.author-details h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.author-details span { color: var(--color-on-surface-variant); font-size: .8rem; }

@media (max-width: 35.99rem) {
  .testimonial-card { padding: 1.35rem; gap: 1rem; }
  .testimonial-quote { margin: 0; }
  .testimonials-controls { gap: .45rem; }
}

.author-details span {
  font-size: 0.8rem;
  color: var(--color-on-surface-variant);
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.blog-detail-author {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.blog-detail-author-photo {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
}

.blog-detail-author-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
}

.blog-detail-author strong,
.blog-detail-author small {
  display: block;
}

.blog-detail-author strong {
  color: #ffffff;
  line-height: 1.2;
}

.blog-detail-author small {
  margin-top: 0.12rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
}

.blog-detail-author-website {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 600;
}

.blog-detail-author-website:hover {
  color: #ffffff;
}

/* Quick Action CTA Banner */
.cta-banner-section {
  padding-block: var(--space-8);
  background: linear-gradient(135deg, #001355 0%, #001b40 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(circle, rgba(0, 128, 0, 0.22) 0%, rgba(0, 19, 85, 0) 70%);
  pointer-events: none;
}

.cta-banner-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.15) 0%, rgba(0, 19, 85, 0) 70%);
  pointer-events: none;
}

.cta-banner-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 5vw, 4rem);
  text-align: center;
  max-width: 56rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  box-shadow: 0 20px 50px rgba(0, 9, 48, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-banner-card .label-caps {
  color: #32CD32 !important;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(50, 205, 50, 0.12);
  border: 1px solid rgba(50, 205, 50, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.cta-banner-card h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.cta-banner-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.075rem;
  line-height: 1.65;
  max-width: 42rem;
  margin: 0;
}

.cta-banner-card .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.cta-banner-card .button-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Blog Cards Section */
.blog-section {
  padding-block: var(--space-8);
  background-color: var(--color-surface-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-media {
  position: relative;
  height: 12rem;
  width: 100%;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--color-on-surface-variant);
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
}

.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
}

.blog-card-link:hover {
  gap: 0.6rem;
}

/* FAQ Section */
.faq-section {
  padding-block: var(--space-8);
  background-color: var(--color-background);
}

/* Contact Page Main Layout Styles */

.contact-main-section {
  padding-block: 4rem 5rem;
  background-color: var(--color-surface-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 64rem) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-column,
.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-header-block {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-section-heading {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.25;
}

.contact-section-sub {
  font-size: 0.95rem;
  color: var(--color-on-surface-variant);
  margin: 0;
  line-height: 1.55;
}

.contact-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.contact-info-card:hover,
.brand-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.3);
  box-shadow: var(--shadow-md);
}

.brand-contact-card:hover .info-card-icon {
  background: var(--color-primary) !important;
  color: #ffffff !important;
  transform: scale(1.06);
}

.info-card-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 128, 0, 0.08) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-card-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.info-card-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
}

.info-card-title {
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--color-primary);
}

.info-card-sub {
  font-size: 0.825rem;
  color: var(--color-on-surface-variant);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 19, 85, 0.15);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 19, 85, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-form-title-bar {
  position: relative;
  padding: 1.5rem 1.75rem;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #001355 0%, #00227b 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-form-title-bar::after {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  content: '';
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 205, 50, .25), transparent 70%);
  pointer-events: none;
}

.contact-form-title-bar h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-form-kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: .25rem;
  color: #32cd32;
  font-family: var(--font-mono);
  font-size: .725rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

select.custom-scrollable-select {
  height: 11.5rem;
  box-shadow: inset 0 1px 3px rgba(0, 19, 85, 0.05);
}

select.custom-scrollable-select::-webkit-scrollbar {
  width: 6px;
}

select.custom-scrollable-select::-webkit-scrollbar-track {
  background: #f4f6fa;
  border-radius: 4px;
}

select.custom-scrollable-select option {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  color: var(--color-primary);
  background: #ffffff;
  border-radius: 4px;
  margin-bottom: 2px;
}

select.custom-scrollable-select option:hover,
select.custom-scrollable-select option:focus,
select.custom-scrollable-select option:checked {
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%) !important;
  color: var(--color-primary) !important;
  font-weight: 600;
}

html {
  scroll-behavior: smooth;
}

.legal-article {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-content-card {
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.legal-content-card .policy-nav-card {
  display: none !important;
}

.legal-content-card .policy-grid-nav {
  grid-template-columns: 1fr !important;
  gap: 0.45rem !important;
}

.legal-content-card .policy-toc-chip {
  min-width: 0;
  padding: 0.52rem 0.65rem !important;
  box-shadow: none;
}

.legal-content-card .policy-toc-chip > span:last-child {
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  line-height: 1.35;
}

.legal-content-card .legal-article {
  padding-block: 1.35rem;
}

.legal-document-body {
  width: min(100%, 58rem);
  min-width: 0;
  margin-inline: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.legal-document-body > .legal-article:first-child {
  padding-top: 0;
}

.legal-document-body > .legal-article:last-child {
  padding-bottom: 0;
}

.legal-document-body > hr {
  opacity: 0.75;
}

.legal-content-card .legal-article h2 {
  margin: 0 0 0.7rem !important;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem) !important;
  line-height: 1.35;
  text-align: left;
}

.legal-content-card .legal-article h3 {
  margin-bottom: 0.35rem !important;
  font-size: clamp(1rem, 1.25vw, 1.1rem) !important;
  line-height: 1.4;
  text-align: left;
}

.legal-content-card .legal-article p,
.legal-content-card .legal-article li {
  overflow-wrap: anywhere;
  text-align: left;
}

.legal-content-card .legal-article > p,
.legal-content-card .legal-article > ul,
.legal-content-card .legal-article > ol {
  max-width: 50rem;
}

.legal-content-card .legal-article li + li {
  margin-top: 0.35rem;
}

@media (max-width: 40rem) {
  .privacy-content-section {
    padding-block: var(--space-6) !important;
  }

  .legal-content-card {
    display: block !important;
  }

  .legal-content-card .policy-nav-card {
    display: none !important;
  }

  .legal-content-card .policy-grid-nav {
    display: flex !important;
    gap: 0.5rem !important;
    margin-inline: -1rem;
    padding: 0 1rem 0.35rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .legal-content-card .policy-grid-nav::-webkit-scrollbar {
    display: none;
  }

  .legal-content-card .policy-toc-chip {
    flex: 0 0 12.5rem;
    scroll-snap-align: start;
  }

  .legal-document-body {
    padding: 1.15rem;
    border-radius: var(--radius-md);
  }

  .legal-content-card .legal-article {
    padding-block: 1.35rem;
  }

  .legal-content-card .legal-article h2 {
    font-size: 1.15rem !important;
  }

  .legal-content-card .legal-article h3 {
    font-size: 0.975rem !important;
  }

  .legal-content-card .legal-article > div {
    max-width: 100%;
  }
}

.policy-toc-chip:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 12px rgba(0, 19, 85, 0.12) !important;
  transform: translateY(-2px) !important;
  color: var(--color-primary) !important;
}

.page-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  flex-grow: 1;
  padding: 1.6rem 1.75rem;
  background: #ffffff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.page-contact-form .form-group label {
  margin-top: 0 !important;
}

.submit-contact-btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: .25rem !important;
}

@media (max-width: 35.99rem) {
  .contact-form-title-bar,
  .page-contact-form {
    padding-inline: 1.25rem;
  }
}

.contact-map-section {
  padding-block: 0 4rem;
  background-color: var(--color-surface-muted);
}

.map-embed-wrapper {
  margin-top: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-md);
}

/* About Us Page Styles */
/* Shared Inner Page Hero Section (About, Services, Products, Projects, Blog, Contact, & Service Detail Pages) */
.contact-hero-section,
.about-hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-7));
  padding-bottom: var(--space-8);
  background: linear-gradient(135deg, #001355 0%, #001b40 100%);
  color: #ffffff;
  overflow: hidden;
}

.contact-hero-bg-glow,
.about-hero-bg-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 128, 0, 0.25) 0%, rgba(0, 19, 85, 0) 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.contact-hero-shape,
.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-hero-shape.shape-1,
.about-hero-shape.shape-1 {
  width: 18rem;
  height: 18rem;
  right: 5%;
  top: -20%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: floatSlow 12s ease-in-out infinite alternate;
}

.contact-hero-shape.shape-2,
.about-hero-shape.shape-2 {
  width: 12rem;
  height: 12rem;
  right: 20%;
  bottom: -30%;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.15) 0%, rgba(0, 128, 0, 0) 70%);
  animation: floatSlow 9s ease-in-out infinite alternate-reverse;
}

.contact-hero-badge,
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #32CD32;
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero-title,
.about-hero-title {
  margin-top: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  color: #ffffff;
  text-align: left;
}

.contact-hero-title .text-secondary,
.about-hero-title .text-secondary {
  color: #32CD32;
}

.contact-hero-lead,
.about-hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 44rem;
  margin-inline: 0;
  line-height: 1.6;
  text-align: left;
}

/* Inner Page Hero Dark Context Button Adjustments */
.contact-hero-section .button-secondary,
.about-hero-section .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.contact-hero-section .button-secondary:hover,
.about-hero-section .button-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* About Overview Section */
.about-overview-section {
  padding-block: var(--space-8);
  background-color: var(--color-surface-muted);
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 64rem) {
  .about-overview-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.about-overview-media {
  position: relative;
  width: 100%;
  height: 28rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
}

.about-overview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #00227b 100%);
  color: #ffffff;
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-text-p {
  color: var(--color-on-surface-variant);
  font-size: 0.975rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.highlight-icon {
  color: #008000;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.highlight-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--color-on-surface-variant);
}

/* About Values Section */
.about-values-section {
  padding-block: var(--space-8);
  background-color: var(--color-background);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 19, 85, 0.25);
  box-shadow: var(--shadow-md);
}

.value-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.value-icon-box .material-symbols-outlined {
  font-size: 2rem;
}

.value-card:hover .value-icon-box {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.08);
}

.value-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.value-card-text {
  font-size: 0.925rem;
  color: var(--color-on-surface-variant);
  line-height: 1.6;
  margin: 0;
}

/* About Stats Section */
.about-stats-section {
  padding-block: 3.5rem;
  background: linear-gradient(135deg, #001355 0%, #00227b 100%);
  color: #ffffff;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 64rem) {
  .stats-banner-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  align-items: center;
}

.stat-icon-wrapper {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-sm);
  background: rgba(50, 205, 50, 0.15);
  border: 1px solid rgba(50, 205, 50, 0.3);
  color: #32CD32;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.stat-icon-wrapper .material-symbols-outlined {
  font-size: 2rem;
}

.about-stat-box .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #32CD32;
  line-height: 1;
}

.about-stat-box .stat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.about-stat-box .stat-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* About Certifications Section */
.about-certifications-section {
  padding-block: var(--space-8);
  background-color: var(--color-surface-muted);
}

.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 36rem) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .certifications-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cert-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 128, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.cert-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cert-icon-wrapper .material-symbols-outlined {
  font-size: 1.75rem;
}

.cert-card:hover .cert-icon-wrapper {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.cert-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.cert-subtitle {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-secondary);
}

.cert-text {
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
}

/* Priority Services 8-Card Grid */
.priority-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.priority-service-card {
  height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.priority-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.3);
  box-shadow: var(--shadow-md);
}

.service-card-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-card-icon-wrapper .material-symbols-outlined {
  font-size: 1.75rem;
}

.priority-service-card:hover .service-card-icon-wrapper {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.service-card-text {
  font-size: 0.885rem;
  color: var(--color-on-surface-variant);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 64rem) {
  .priority-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .priority-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Who We Serve Equal-Height Card Grid */
.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.who-we-serve-card {
  height: 100%;
  min-height: 12.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.who-we-serve-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 19, 85, 0.25);
  box-shadow: var(--shadow-md);
}

.who-card-icon-wrapper {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.who-card-icon-wrapper .material-symbols-outlined {
  font-size: 1.5rem;
}

.who-we-serve-card:hover .who-card-icon-wrapper {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.who-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.who-card-text {
  font-size: 0.85rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 64rem) {
  .who-we-serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .who-we-serve-grid {
    grid-template-columns: 1fr;
  }
}

/* Products 3-Card Grid Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.product-card {
  height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.3);
  box-shadow: var(--shadow-md);
}

.product-card-media {
  height: 12rem;
  width: 100%;
  background: var(--color-surface-container-low);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border-subtle);
}

.product-placeholder-box {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 19, 85, 0.15);
}

.product-card-body {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--color-on-surface-variant);
  line-height: 1.55;
  margin: 0;
}

.product-applications-box {
  background: var(--color-surface-muted);
  border-left: 3px solid #008000;
  padding: 0.65rem 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 0.25rem;
}

.product-applications-box .app-label {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  color: #008000;
  margin-bottom: 0.15rem;
}

.product-applications-box .app-text {
  font-size: 0.825rem;
  color: var(--color-on-surface-variant);
  line-height: 1.45;
  margin: 0;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-subtle);
}

@media (max-width: 64rem) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Detail Page Styles */
.breadcrumb-nav {
  padding-block: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-on-surface-variant);
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  color: var(--color-on-surface-variant);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #008000;
}

.breadcrumb-item.active {
  color: var(--color-primary);
  font-weight: 600;
}

.breadcrumb-separator {
  font-size: 0.9rem;
  color: var(--color-border);
}

.quick-answer-box {
  background: var(--color-surface-container-low);
  border-left: 4px solid #008000;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.75rem 2rem;
  margin-block: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.quick-answer-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #008000;
  background: rgba(0, 128, 0, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.quick-answer-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
}

.quick-answer-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-on-surface);
  font-weight: 500;
  margin: 0 0 0.75rem 0;
}

.quick-answer-support {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--color-on-surface-variant);
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.step-card {
  height: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 128, 0, 0.3);
}

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background: #008000;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
}

.step-text {
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 64rem) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Related Services Infinite Slider Component Styles */
.related-services-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding-block: 0.5rem;
}

.related-services-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: relatedServicesSlide 35s linear infinite;
}

.related-services-track:hover {
  animation-play-state: paused;
}

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

.related-service-card-slide {
  width: 320px;
  min-width: 320px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.related-service-card-slide:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 128, 0, 0.35);
  box-shadow: var(--shadow-md);
}

@media (max-width: 40rem) {
  .related-service-card-slide {
    width: 280px;
    min-width: 280px;
    padding: 1.25rem;
  }
}

.related-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.related-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.related-card-icon .material-symbols-outlined {
  font-size: 1.5rem;
}

.related-service-card-slide:hover .related-card-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.related-card-arrow {
  color: var(--color-border);
  font-size: 1.25rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.related-service-card:hover .related-card-arrow {
  color: var(--color-primary);
  transform: translateX(3px);
}

.related-card-body {
  flex-grow: 1;
}

.related-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
}

.related-card-desc {
  font-size: 0.85rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
}

.related-card-footer {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (max-width: 64rem) {
  .related-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .related-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us Split Layout Styles */
.why-choose-split-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
}

.why-choose-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-choose-feature-item:hover {
  transform: translateX(4px);
  border-color: rgba(0, 128, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.why-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.1) 0%, rgba(0, 19, 85, 0.05) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.why-feature-icon .material-symbols-outlined {
  font-size: 1.35rem;
}

.why-feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.25rem 0;
}

.why-feature-text {
  font-size: 0.865rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 64rem) {
  .why-choose-split-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Process Timeline Section Styles */
.process-timeline-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  position: relative;
  align-items: stretch;
}

.process-step-node {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step-node:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.3);
  box-shadow: var(--shadow-md);
}

.process-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.process-step-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(0, 19, 85, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.process-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon .material-symbols-outlined {
  font-size: 1.35rem;
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.process-step-text {
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 64rem) {
  .process-timeline-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .process-timeline-container {
    grid-template-columns: 1fr;
  }
}

/* Service Includes Checklist Layout Styles */
.includes-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.includes-check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.includes-check-item:hover {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-color: rgba(0, 19, 85, 0.25);
  box-shadow: 0 8px 24px -4px rgba(0, 19, 85, 0.12),
              0 2px 6px -1px rgba(0, 0, 0, 0.04),
              inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.includes-check-badge {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: var(--radius-full);
  background: rgba(0, 19, 85, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.includes-check-badge .material-symbols-outlined {
  font-size: 1.25rem;
  font-weight: 700;
}

.includes-check-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.25rem 0;
}

.includes-check-text {
  font-size: 0.865rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 52rem) {
  .includes-checklist-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1rem;
  }
}

/* Why It Matters Feature Banner Styles */
.importance-banner-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.importance-highlight-box {
  background: linear-gradient(135deg, var(--color-surface-container-low) 0%, var(--color-surface) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.importance-highlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem 0;
}

.importance-highlight-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-on-surface);
  margin: 0;
}

.importance-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.importance-pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.importance-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.35);
  box-shadow: var(--shadow-md);
}

.importance-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.importance-pillar-icon .material-symbols-outlined {
  font-size: 1.6rem;
}

.importance-pillar-card:hover .importance-pillar-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.importance-pillar-title {
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
}

.importance-pillar-desc {
  font-size: 0.825rem;
  color: var(--color-on-surface-variant);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 64rem) {
  .importance-pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .importance-pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .importance-highlight-box {
    padding: 1.5rem;
  }
}

/* Key Benefits Feature Grid Styles */
.benefits-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.benefit-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 19, 85, 0.35);
  box-shadow: var(--shadow-md);
}

.benefit-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.benefit-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0, 19, 85, 0.08) 0%, rgba(0, 19, 85, 0.04) 100%);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.benefit-card-icon .material-symbols-outlined {
  font-size: 1.45rem;
}

.benefit-feature-card:hover .benefit-card-icon {
  background: var(--color-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.benefit-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.3;
}

.benefit-card-text {
  font-size: 0.875rem;
  color: var(--color-on-surface-variant);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 64rem) {
  .benefits-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .benefits-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Overview Split Layout with Right Image */
.service-overview-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.service-overview-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
}

.service-overview-image-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-overview-image-wrapper:hover img {
  transform: scale(1.03);
}

.service-overview-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(18, 30, 49, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-overview-image-badge .material-symbols-outlined {
  color: #32CD32;
  font-size: 1.2rem;
}

@media (max-width: 64rem) {
  .service-overview-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-overview-image-wrapper img {
    height: 320px;
  }
}

/* Dedicated Product Page 4-Column Card Grid */
.product-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

/* Blog listing and rich article content */
.blog-listing-grid {
  margin-top: var(--space-6);
}

/* Blog detail editorial layout */
.blog-detail-hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + var(--space-7));
  padding-bottom: var(--space-8);
  background:
    radial-gradient(circle at 88% 18%, rgba(50, 205, 50, .14), transparent 25rem),
    linear-gradient(135deg, #001355 0%, #001b6d 58%, #00267d 100%);
  color: #fff;
}

.blog-detail-hero-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: -8rem;
  bottom: -15rem;
  border-radius: 50%;
  background: rgba(50, 205, 50, .13);
  filter: blur(1px);
}

.blog-detail-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-detail-category {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .38rem .72rem;
  border: 1px solid rgba(50, 205, 50, .34);
  border-radius: 999px;
  background: rgba(50, 205, 50, .12);
  color: #8df58d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.blog-detail-hero h1 {
  max-width: 62rem;
  margin: .75rem 0 .65rem;
  color: #fff;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  color: rgba(255, 255, 255, .76);
  font-size: .85rem;
}

.blog-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.blog-detail-meta-item .material-symbols-outlined { font-size: 1.05rem; }

.blog-detail-section {
  padding-block: var(--space-8);
  background: #f6f8fc;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 19.5rem);
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}

.blog-detail-main { min-width: 0; }

.blog-article-card {
  overflow: hidden;
  border: 1px solid rgba(0, 19, 85, .09);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.blog-detail-featured-image {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #e9edf5;
}

.blog-detail-featured-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-article-inner { padding: clamp(1.5rem, 3vw, 2.5rem); }

.blog-detail-excerpt {
  position: relative;
  margin: 0 0 2.25rem;
  padding: 1.25rem 1.35rem 1.25rem 1.5rem;
  border: 1px solid rgba(0, 19, 85, .09);
  border-left: 4px solid #32cd32;
  border-radius: .2rem .8rem .8rem .2rem;
  background: #f7f9fd;
  color: var(--color-primary);
  font-size: clamp(1.04rem, 1.6vw, 1.16rem);
  font-weight: 500;
  line-height: 1.65;
}

.blog-detail-sidebar-sticky {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1.25rem;
}

.blog-service-ad {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.25rem;
  background: linear-gradient(155deg, #001355 0%, #05247b 100%);
  box-shadow: 0 20px 42px rgba(0, 19, 85, .22);
  color: #fff;
}

.blog-service-ad-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(50, 205, 50, .15);
}

.blog-service-ad-orb-one { width: 10rem; height: 10rem; top: -5rem; right: -4rem; }
.blog-service-ad-orb-two { width: 7rem; height: 7rem; bottom: -4rem; left: -3rem; }

.blog-service-ad-content {
  position: relative;
  z-index: 1;
  padding: 1.7rem;
}

.blog-service-ad-label {
  display: inline-flex;
  margin-bottom: .9rem;
  color: #8df58d;
  font-size: .69rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.blog-service-ad h2 {
  margin: 0 0 .8rem;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.22;
}

.blog-service-ad p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: .86rem;
  line-height: 1.6;
}

.blog-service-ad-points {
  display: grid;
  gap: .6rem;
  margin: 1.25rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.blog-service-ad-points li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .9);
  font-size: .79rem;
}

.blog-service-ad-points .material-symbols-outlined { color: #62df62; font-size: 1.05rem; }

.blog-service-ad-primary {
  width: 100%;
}

.blog-service-ad-primary {
  border-radius: var(--radius-full);
}

.blog-service-ad-primary .material-symbols-outlined { font-size: 1rem; }

.blog-service-ad-whatsapp {
  width: 100%;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: .65rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .7rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-service-ad-whatsapp .material-symbols-outlined { font-size: 1.05rem; }

.blog-related-card {
  overflow: hidden;
  border: 1px solid rgba(0, 19, 85, .09);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
}

.blog-related-heading { padding: 1.25rem 1.25rem .8rem; }
.blog-related-heading span { color: #64748b; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-related-heading h2 { margin: .2rem 0 0; color: var(--color-primary); font-size: 1.05rem; }
.blog-related-list { padding: 0 .75rem; }

.blog-related-item {
  display: grid;
  gap: .3rem;
  padding: .9rem .5rem;
  border-top: 1px solid rgba(15, 23, 42, .07);
  color: inherit;
  text-decoration: none;
}

.blog-related-item-category { color: #198d19; font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.blog-related-item strong { color: #1e293b; font-size: .84rem; line-height: 1.4; transition: color .2s ease; }
.blog-related-item time { color: #94a3b8; font-size: .7rem; }
.blog-related-item:hover strong { color: var(--color-primary); }

.blog-related-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, .07);
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-related-all .material-symbols-outlined { font-size: 1rem; }

@media (max-width: 64rem) {
  .blog-detail-layout { grid-template-columns: 1fr; }
  .blog-detail-sidebar-sticky {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-width: 40rem) {
  .blog-detail-hero {
    padding-top: calc(var(--header-height) + var(--space-6));
    padding-bottom: var(--space-7);
  }
  .blog-detail-meta { gap: .9rem 1.1rem; }
  .blog-detail-meta-item { width: auto; }
  .blog-article-card { border-radius: 1rem; }
  .blog-article-inner { padding: var(--space-5); }
  .blog-detail-excerpt { padding: 1rem 1rem 1rem 1.15rem; }
  .blog-detail-sidebar-sticky { grid-template-columns: 1fr; }
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-category-static {
  position: static;
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: .75rem;
}

.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.article-body-content {
  overflow-wrap: anywhere;
}

.article-body-content h2,
.article-body-content h3,
.article-body-content h4,
.article-body-content h5,
.article-body-content h6 {
  color: var(--color-primary);
  line-height: 1.3;
  margin: 2rem 0 .75rem;
  font-weight: 700;
}

.article-body-content h2 { font-size: clamp(1.55rem, 2.5vw, 1.85rem); }
.article-body-content h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
.article-body-content h4 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
.article-body-content h5 { font-size: clamp(1.15rem, 1.7vw, 1.3rem); }
.article-body-content h6 { font-size: 1.05rem; }

.article-body-content p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.article-body-content a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.article-body-content strong,
.article-body-content b {
  font-weight: 700;
}

.article-content-section {
  margin: 0 0 1.65rem;
}

.article-content-section:last-child {
  margin-bottom: 0;
}

.article-content-section > h2:first-child {
  margin-top: 0;
  margin-bottom: .65rem;
}

.article-content-section h3,
.article-content-section h4,
.article-content-section h5,
.article-content-section h6 {
  margin-top: 1.2rem;
  margin-bottom: .5rem;
}

.article-content-section > p,
.article-content-section > ul,
.article-content-section > ol,
.article-content-section > blockquote,
.article-content-section > pre,
.article-content-section > table,
.article-content-section > figure {
  margin-bottom: .85rem;
}

.article-content-section > :last-child {
  margin-bottom: 0;
}

.article-body-content p,
.article-body-content ul,
.article-body-content ol,
.article-body-content blockquote,
.article-body-content pre,
.article-body-content table,
.article-body-content figure {
  margin: 0 0 1.25rem;
}

.article-body-content ul,
.article-body-content ol {
  padding-left: 1.5rem;
}

.article-body-content blockquote {
  padding: .9rem 1.25rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-surface-muted);
}

.article-body-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-body-content th,
.article-body-content td {
  min-width: 8rem;
  padding: .7rem .85rem;
  border: 1px solid var(--color-border-subtle);
  text-align: left;
  vertical-align: top;
}

.article-body-content th {
  color: var(--color-primary);
  background: var(--color-surface-muted);
}

.article-body-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.article-body-content pre {
  max-width: 100%;
  padding: 1rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #e2e8f0;
}

@media (max-width: 64rem) {
  .product-4col-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 40rem) {
  .product-4col-grid {
    grid-template-columns: 1fr;
  }
}
/* Careers */
.career-opportunities-section,.career-detail-section{padding-block:var(--space-8)}
.career-hero-content{position:relative;z-index:2}
.career-hero-section .about-hero-title,.career-detail-hero .about-hero-title{color:#fff}
.career-hero-section .about-hero-lead{margin-bottom:1.35rem}
.career-hero-action{display:inline-flex;gap:.55rem}
.career-hero-action .material-symbols-outlined{font-size:1.1rem}
.career-retention-note{display:flex;gap:1rem;margin-bottom:var(--space-6);padding:1.15rem 1.25rem;border:1px solid rgba(0,19,85,.12);border-radius:var(--radius-lg);background:linear-gradient(135deg,rgba(0,19,85,.05),rgba(0,128,0,.04));color:var(--color-primary)}
.career-retention-note>span{color:var(--color-secondary)}
.career-retention-note p{margin:.3rem 0 0;color:var(--color-on-surface-variant);font-size:.9rem}
.career-job-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-5)}
.career-opening-count{display:inline-flex;margin-top:.8rem;padding:.38rem .72rem;border-radius:999px;background:var(--color-primary-fixed);color:var(--color-primary);font-size:.8rem;font-weight:750}
.career-job-card{position:relative;display:flex;overflow:hidden;flex-direction:column;padding:1.5rem;border:1px solid var(--color-border-subtle);border-radius:var(--radius-lg);background:var(--color-surface);box-shadow:var(--shadow-sm);transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}
.career-job-card::before{position:absolute;inset:0 auto 0 0;width:4px;background:linear-gradient(var(--color-primary),var(--color-secondary));content:""}
.career-job-card:hover{transform:translateY(-3px);border-color:rgba(0,19,85,.22);box-shadow:var(--shadow-md)}
.career-job-card h3{margin:.8rem 0 .5rem;color:var(--color-primary)}
.career-job-card>p{flex:1;color:var(--color-on-surface-variant)}
.career-job-meta,.career-detail-meta{display:flex;flex-wrap:wrap;gap:.75rem 1.1rem}
.career-job-meta span,.career-detail-meta span{display:inline-flex;align-items:center;gap:.3rem;font-size:.82rem}
.career-job-meta .material-symbols-outlined,.career-detail-meta .material-symbols-outlined{font-size:1.05rem}
.career-job-footer{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:1rem}
.career-job-closing{display:grid;gap:.45rem;color:var(--color-on-surface-variant);font-size:.76rem}
.career-type-chip{padding:.35rem .65rem;border-radius:999px;background:rgba(0,128,0,.08);color:#08753b;font-size:.78rem;font-weight:700}
.career-empty-state{text-align:center;padding:3rem;border:1px dashed var(--color-border-subtle);border-radius:var(--radius-lg);background:var(--color-surface)}
.career-detail-hero{padding-top:calc(var(--header-height) + var(--space-7));padding-bottom:var(--space-8)}
.career-detail-meta{color:rgba(255,255,255,.82)}
.career-detail-grid{display:grid;grid-template-columns:minmax(0,1fr);gap:clamp(2.5rem,6vw,4.5rem)}
.career-description-card,.career-application-card{padding:1.6rem;border:1px solid var(--color-border-subtle);border-radius:var(--radius-lg);background:var(--color-surface);box-shadow:var(--shadow-sm)}
.career-description-card,.career-application-card{width:100%}
.career-description-card>h2,.career-application-main>h2{margin:0 0 1.1rem;color:var(--color-primary)}
.career-description-body{display:flow-root;clear:both;color:var(--color-on-surface-variant);font-size:1rem;line-height:1.75;overflow-wrap:anywhere}
.career-description-body>:first-child{margin-top:0}
.career-description-body p,.career-description-body ul,.career-description-body ol,.career-description-body blockquote,.career-description-body table,.career-description-body pre{margin:0 0 1rem}
.career-description-body h2,.career-description-body h3,.career-description-body h4,.career-description-body h5,.career-description-body h6{margin:1.55rem 0 .65rem;color:var(--color-primary);font-weight:750;line-height:1.3}
.career-description-body h2{font-size:clamp(1.45rem,2.3vw,1.75rem)}
.career-description-body h3{font-size:clamp(1.25rem,2vw,1.5rem)}
.career-description-body h4{font-size:1.2rem}.career-description-body h5{font-size:1.1rem}.career-description-body h6{font-size:1rem}
.career-description-body ul,.career-description-body ol{padding-left:1.4rem}.career-description-body li+li{margin-top:.4rem}
.career-description-body a{color:var(--color-primary);font-weight:650;text-decoration:underline;text-underline-offset:2px}
.career-description-body blockquote{padding:.85rem 1rem;border-left:4px solid var(--color-secondary);background:var(--color-surface-muted)}
.career-description-body table{display:block;width:100%;overflow-x:auto;border-collapse:collapse}.career-description-body th,.career-description-body td{padding:.7rem;border:1px solid var(--color-border-subtle);text-align:left}.career-description-body th{background:var(--color-surface-muted);color:var(--color-primary)}
.career-description-body pre{overflow-x:auto;padding:1rem;border-radius:var(--radius-sm);background:#07112d;color:#fff}
.career-application-intro{max-width:46rem;margin:0;color:var(--color-on-surface-variant)}
.career-application-layout{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(18rem,.62fr);gap:clamp(2rem,5vw,4rem);align-items:start}
.career-application-main{min-width:0}
.career-application-form{display:grid;gap:1rem;max-width:46rem;margin-top:1.5rem}
.career-application-form label{display:grid;gap:.38rem;color:var(--color-primary);font-size:.86rem;font-weight:700}
.career-application-form label span{font-weight:400;color:var(--color-on-surface-variant)}
.career-application-form input,.career-application-form select,.career-application-form textarea{width:100%;padding:.72rem .82rem;border:1.5px solid rgba(0,19,85,.2);border-radius:var(--radius-sm);background:#fff;color:var(--color-primary);font:inherit}
.career-application-form input:focus,.career-application-form select:focus,.career-application-form textarea:focus{outline:3px solid rgba(0,128,0,.14);border-color:#008000}
.career-terms-consent{display:flex!important;grid-template-columns:none!important;gap:.7rem!important;align-items:flex-start;margin-top:.15rem;padding:.85rem;border:1px solid rgba(0,19,85,.12);border-radius:var(--radius-sm);background:var(--color-surface-muted);color:var(--color-on-surface-variant)!important;font-size:.78rem!important;font-weight:400!important;line-height:1.5;cursor:pointer}
.career-terms-consent input{flex:0 0 auto;width:1.15rem!important;height:1.15rem;margin:.1rem 0 0;padding:0!important;accent-color:var(--color-primary);cursor:pointer}
.career-terms-consent span{color:inherit!important;font-weight:400!important}.career-terms-consent a{color:var(--color-primary);font-weight:700;text-decoration:underline;text-underline-offset:2px}
.career-submit-button{justify-self:start;width:auto!important;min-width:12rem}
.career-growth-panel{overflow:hidden;min-width:0;border:1px solid rgba(0,19,85,.13);border-radius:1.1rem;background:#fff;box-shadow:0 18px 46px rgba(0,19,85,.09)}
.career-growth-visual{position:relative;display:grid;place-items:center;height:11rem;overflow:hidden;background:radial-gradient(circle at 50% 50%,rgba(50,205,50,.19),transparent 29%),linear-gradient(145deg,#001b6e,#001355 58%,#000b37);color:#fff}
.career-growth-visual::before{position:absolute;inset:0;opacity:.16;background-image:linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);background-size:2.25rem 2.25rem;content:""}
.career-growth-icon{position:relative;z-index:2;display:grid;place-items:center;width:4.8rem;height:4.8rem;border:1px solid rgba(255,255,255,.25);border-radius:1.4rem;background:rgba(255,255,255,.14);font-size:2.35rem;box-shadow:0 16px 34px rgba(0,0,0,.2);backdrop-filter:blur(10px)}
.career-growth-orbit{position:absolute;border:1px solid rgba(255,255,255,.17);border-radius:50%}.career-growth-orbit-large{width:9rem;height:9rem}.career-growth-orbit-small{width:6rem;height:6rem;border-color:rgba(50,205,50,.32)}
.career-growth-content{padding:1.3rem}.career-growth-content>h2{margin:.35rem 0 .45rem;color:var(--color-primary);font-size:1.35rem;line-height:1.25}.career-growth-content>p{margin:0;color:var(--color-on-surface-variant);font-size:.8rem;line-height:1.68}.career-growth-content>p strong{color:var(--color-primary)}
.career-growth-lead{margin-bottom:.9rem!important;color:var(--color-primary)!important;font-size:.9rem!important;font-weight:700;line-height:1.5!important}
.career-growth-step{display:grid;grid-template-columns:2.2rem minmax(0,1fr);gap:.7rem;margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(0,19,85,.09)}
.career-growth-step-number{display:grid;place-items:center;width:2.2rem;height:2.2rem;border-radius:.65rem;background:rgba(0,128,0,.08);color:var(--color-secondary);font-size:.7rem;font-weight:800}
.career-growth-step h3{margin:0 0 .3rem;color:var(--color-primary);font-size:.96rem;line-height:1.3}.career-growth-step p{margin:0;color:var(--color-on-surface-variant);font-size:.76rem;line-height:1.58}
.career-application-error{padding:.85rem 1rem;border:1px solid #fecaca;border-radius:var(--radius-sm);background:#fef2f2;color:#991b1b}
.career-application-success{display:flex;gap:.8rem;padding:1rem;border:1px solid #bbf7d0;border-radius:var(--radius-md);background:#f0fdf4;color:#166534}
.career-application-success p{margin:.25rem 0 0}
@media(max-width:900px){.career-job-grid{grid-template-columns:1fr}.career-application-layout{grid-template-columns:1fr}.career-application-form{max-width:100%}.career-growth-panel{max-width:46rem}}
@media(max-width:560px){.career-opportunities-section,.career-detail-section{padding-block:2.5rem}.career-detail-grid{gap:2rem}.career-hero-action{width:100%;justify-content:center}.career-retention-note{padding:1rem}.career-job-card{padding:1.2rem}.career-job-footer{align-items:stretch;flex-direction:column}.career-job-footer .button{width:100%}.career-description-card,.career-application-card{padding:1.2rem}.career-description-card>h2{margin-bottom:.85rem}.career-detail-meta{display:grid;gap:.55rem}.career-application-layout{gap:1.75rem}.career-submit-button{width:auto!important;min-width:11rem}.career-terms-consent{padding:.75rem}.career-growth-visual{height:8.5rem}.career-growth-icon{width:4rem;height:4rem;border-radius:1.15rem;font-size:2rem}.career-growth-orbit-large{width:7rem;height:7rem}.career-growth-orbit-small{width:4.75rem;height:4.75rem}.career-growth-content{padding:1rem}.career-growth-content>h2{font-size:1.2rem}.career-growth-content>p{font-size:.78rem}.career-growth-step{grid-template-columns:2rem minmax(0,1fr);gap:.6rem}.career-growth-step-number{width:2rem;height:2rem}}

/* Public error states */
.error-hero{position:relative;isolation:isolate;display:grid;min-height:calc(100svh - var(--header-height));padding-block:clamp(2.5rem,7vw,6.5rem);overflow:hidden;background:linear-gradient(145deg,rgba(249,249,255,.98),rgba(239,243,255,.94)),radial-gradient(circle at 80% 20%,rgba(0,128,0,.09),transparent 34%)}
.error-hero-glow{position:absolute;z-index:-1;border-radius:50%;filter:blur(4px);pointer-events:none}
.error-hero-glow-one{top:-13rem;right:-8rem;width:32rem;height:32rem;background:radial-gradient(circle,rgba(0,19,85,.14),transparent 68%)}
.error-hero-glow-two{bottom:-12rem;left:-10rem;width:30rem;height:30rem;background:radial-gradient(circle,rgba(0,128,0,.12),transparent 68%)}
.error-hero-container{display:grid;align-items:center}
.error-hero-card{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(21rem,.88fr);gap:clamp(2rem,6vw,5.5rem);align-items:center;padding:clamp(1.5rem,4vw,3.5rem);border:1px solid rgba(0,19,85,.11);border-radius:clamp(1.4rem,3vw,2.25rem);background:rgba(255,255,255,.82);box-shadow:0 28px 80px rgba(0,19,85,.1),inset 0 1px 0 rgba(255,255,255,.96);backdrop-filter:blur(18px) saturate(145%);-webkit-backdrop-filter:blur(18px) saturate(145%)}
.error-hero-content{position:relative;z-index:2}
.error-status-pill{display:inline-flex;align-items:center;gap:.45rem;min-height:2.1rem;padding:.38rem .78rem;border:1px solid rgba(0,19,85,.12);border-radius:var(--radius-full);background:rgba(221,225,255,.62);color:var(--color-primary);font-size:.78rem;font-weight:700;letter-spacing:.02em}
.error-status-pill .material-symbols-outlined{font-size:1rem}
.error-kicker{margin:1.5rem 0 .5rem;color:var(--color-secondary);font-size:.82rem;font-weight:750;letter-spacing:.09em;text-transform:uppercase}
.error-hero h1{max-width:14ch;margin:0;color:var(--color-primary);font-size:clamp(2.25rem,5vw,4.35rem);font-weight:780;letter-spacing:-.045em;line-height:1.04}
.error-lead{max-width:41rem;margin:1.25rem 0 0;color:var(--color-on-surface-variant);font-size:clamp(1rem,1.6vw,1.1rem);line-height:1.72}
.error-actions{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.7rem}
.error-actions .button{min-height:2.85rem}
.error-actions .material-symbols-outlined{font-size:1.1rem}
.error-quick-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem;margin-top:2rem}
.error-quick-links>a{display:grid;grid-template-columns:2rem minmax(0,1fr) 1.25rem;gap:.65rem;align-items:center;min-height:4.65rem;padding:.8rem .9rem;border:1px solid rgba(0,19,85,.1);border-radius:1rem;background:rgba(248,249,255,.82);transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.error-quick-links>a:hover,.error-quick-links>a:focus-visible{transform:translateY(-2px);border-color:rgba(0,128,0,.3);box-shadow:var(--shadow-sm);outline:none}
.error-quick-links>a>.material-symbols-outlined:first-child{color:var(--color-secondary);font-size:1.45rem}
.error-quick-links strong,.error-quick-links small{display:block}
.error-quick-links strong{color:var(--color-primary);font-size:.86rem;line-height:1.25}
.error-quick-links small{margin-top:.18rem;color:var(--color-on-surface-variant);font-size:.72rem;line-height:1.3}
.error-link-arrow{color:var(--color-primary);font-size:1rem;transition:transform .2s ease}
.error-quick-links>a:hover .error-link-arrow{transform:translateX(3px)}
.error-hero-visual{position:relative;display:grid;place-items:center;min-height:27rem;border:1px solid rgba(255,255,255,.2);border-radius:2rem;overflow:hidden;background:radial-gradient(circle at 50% 42%,rgba(50,205,50,.17),transparent 28%),linear-gradient(145deg,#001b6e,#001355 54%,#000b37);box-shadow:0 28px 60px rgba(0,19,85,.22),inset 0 1px 0 rgba(255,255,255,.16)}
.error-hero-visual::before{position:absolute;inset:0;opacity:.2;background-image:linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px);background-size:2.5rem 2.5rem;content:""}
.error-code{position:absolute;inset:auto auto .3rem .8rem;color:rgba(255,255,255,.07);font-size:clamp(7rem,14vw,12rem);font-weight:900;letter-spacing:-.09em;line-height:1}
.error-visual-orbit{position:absolute;border:1px solid rgba(255,255,255,.16);border-radius:50%}
.error-visual-orbit-large{width:17rem;height:17rem}
.error-visual-orbit-small{width:11.5rem;height:11.5rem;border-color:rgba(50,205,50,.28)}
.error-visual-icon{position:relative;z-index:2;display:grid;place-items:center;width:7rem;height:7rem;border:1px solid rgba(255,255,255,.24);border-radius:2rem;background:linear-gradient(145deg,rgba(255,255,255,.2),rgba(255,255,255,.08));color:#fff;box-shadow:0 22px 45px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.3);backdrop-filter:blur(14px)}
.error-visual-icon .material-symbols-outlined{font-size:3.15rem}
.error-visual-icon-server{color:#b8ffb8}
.error-visual-chip{position:absolute;z-index:3;padding:.48rem .72rem;border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-full);background:rgba(255,255,255,.13);color:rgba(255,255,255,.9);font-size:.72rem;font-weight:650;box-shadow:0 12px 30px rgba(0,0,0,.14);backdrop-filter:blur(12px)}
.error-visual-chip-top{top:18%;right:8%}
.error-visual-chip-bottom{bottom:16%;left:8%}
.error-support-panel{display:grid;grid-template-columns:2.6rem minmax(0,1fr);gap:.8rem;align-items:center;margin-top:2rem;padding:1rem;border:1px solid rgba(0,128,0,.18);border-radius:1rem;background:rgba(0,128,0,.045)}
.error-support-icon{display:grid;place-items:center;width:2.6rem;height:2.6rem;border-radius:.8rem;background:rgba(0,128,0,.1);color:var(--color-secondary)}
.error-support-panel strong{color:var(--color-primary);font-size:.9rem}
.error-support-panel p{margin:.15rem 0 0;color:var(--color-on-surface-variant);font-size:.78rem;line-height:1.4}
.error-support-actions{grid-column:2;display:flex;flex-wrap:wrap;gap:.45rem .8rem}
.error-support-actions a{display:inline-flex;align-items:center;gap:.3rem;color:var(--color-primary);font-size:.78rem;font-weight:650}
.error-support-actions a:hover{color:var(--color-secondary)}
.error-support-actions .material-symbols-outlined{font-size:.95rem}
.error-debug{margin-top:1rem;padding:.8rem 1rem;border:1px solid #fed7aa;border-radius:.8rem;background:#fff7ed;color:#9a3412;font-size:.78rem}
.error-debug summary{cursor:pointer;font-weight:700}
.error-debug pre{max-width:100%;margin:.7rem 0 0;overflow-x:auto;white-space:pre-wrap;overflow-wrap:anywhere}
@media(max-width:62rem){.error-hero-card{grid-template-columns:1fr}.error-hero-content{max-width:46rem}.error-hero-visual{min-height:20rem}.error-code{font-size:9rem}}
@media(max-width:40rem){.error-hero{min-height:auto;padding-block:1rem 2.5rem}.error-hero-card{gap:1.5rem;padding:1.15rem;border-radius:1.4rem}.error-status-pill{font-size:.7rem}.error-kicker{margin-top:1.2rem}.error-hero h1{max-width:none;font-size:clamp(2rem,10vw,2.85rem)}.error-lead{margin-top:1rem;font-size:.96rem}.error-actions{display:grid;grid-template-columns:1fr;margin-top:1.35rem}.error-actions .button{width:100%}.error-quick-links{grid-template-columns:1fr;margin-top:1.35rem}.error-hero-visual{order:-1;min-height:13.5rem;border-radius:1.25rem}.error-code{inset:auto auto -.1rem .5rem;font-size:6.5rem}.error-visual-orbit-large{width:11rem;height:11rem}.error-visual-orbit-small{width:7.5rem;height:7.5rem}.error-visual-icon{width:5rem;height:5rem;border-radius:1.35rem}.error-visual-icon .material-symbols-outlined{font-size:2.35rem}.error-visual-chip{font-size:.62rem;padding:.38rem .55rem}.error-support-panel{grid-template-columns:2.4rem minmax(0,1fr);padding:.85rem}.error-support-actions{grid-column:1/-1}}

/* Locations directory */
.locations-hero-content{position:relative;z-index:2}
.locations-hero-whatsapp{display:inline-flex;margin-top:1.45rem}.locations-hero-whatsapp .material-symbols-outlined{font-size:1.1rem}
.locations-directory-section{padding-block:var(--space-8);background:linear-gradient(180deg,#f8f9ff 0%,#fff 32%,#fff 100%)}
.locations-directory-heading{margin-bottom:2rem}
.locations-directory-heading .section-header{margin:0}.locations-directory-heading .section-header p{max-width:42rem}
.locations-area-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;align-items:start}
.location-area-card{position:relative;overflow:hidden;border:1px solid rgba(0,19,85,.1);border-radius:1.25rem;background:#fff;box-shadow:0 12px 36px rgba(0,19,85,.065);transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}
.location-area-card::before{position:absolute;inset:0 auto 0 0;width:4px;background:linear-gradient(180deg,var(--color-secondary),var(--color-primary));content:""}
.location-area-card:hover{transform:translateY(-2px);border-color:rgba(0,19,85,.2);box-shadow:0 18px 45px rgba(0,19,85,.1)}
.location-area-header{display:grid;grid-template-columns:2.75rem minmax(0,1fr);gap:.7rem;align-items:center;padding:1rem}
.location-area-marker{display:grid;place-items:center;width:3rem;height:3rem;border:1px solid rgba(0,19,85,.12);border-radius:.9rem;background:linear-gradient(145deg,#edf0ff,#fff);color:var(--color-primary);font-size:1.05rem;font-weight:800;box-shadow:inset 0 1px 0 #fff}
.location-area-header h2{margin:0;color:var(--color-primary);font-size:1.15rem;line-height:1.2}
.location-area-count{grid-column:2;justify-self:start;margin-top:-.35rem;padding:.25rem .5rem;border-radius:var(--radius-full);background:rgba(0,128,0,.07);color:#08753b;font-size:.66rem;font-weight:700;white-space:nowrap}
.location-area-details{border-top:1px solid rgba(0,19,85,.08);background:#fbfcff}
.location-area-details>summary{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:3.25rem;padding:.75rem 1.25rem;color:var(--color-primary);font-size:.82rem;font-weight:700;cursor:pointer;list-style:none}
.location-area-details>summary::-webkit-details-marker{display:none}.location-area-details>summary:focus-visible{outline:2px solid var(--color-primary);outline-offset:-3px}
.location-area-details>summary .material-symbols-outlined{font-size:1.2rem;transition:transform .2s ease}.location-area-details[open]>summary .material-symbols-outlined{transform:rotate(180deg)}
.location-area-links{display:grid;grid-template-columns:1fr;gap:.4rem;padding:0 .7rem .7rem}
.location-area-links a{display:grid;grid-template-columns:1.8rem minmax(0,1fr) 1rem;gap:.5rem;align-items:center;min-height:3rem;padding:.55rem .65rem;border:1px solid rgba(0,19,85,.075);border-radius:.7rem;background:#fff;color:var(--color-on-surface-variant);font-size:.78rem;font-weight:600;line-height:1.3;transition:color .2s ease,border-color .2s ease,transform .2s ease,box-shadow .2s ease}
.location-area-links a:hover,.location-area-links a:focus-visible{transform:translateY(-1px);border-color:rgba(0,128,0,.25);color:var(--color-primary);box-shadow:var(--shadow-sm);outline:none}
.location-service-icon{display:grid;place-items:center;width:1.8rem;height:1.8rem;border-radius:.5rem;background:rgba(0,128,0,.07);color:var(--color-secondary);font-size:1rem}.location-service-go{color:var(--color-primary);font-size:.9rem}
.locations-contact-cta{display:grid;grid-template-columns:3.5rem minmax(0,1fr) auto;gap:1.15rem;align-items:center;margin-top:2rem;padding:1.35rem;border:1px solid rgba(0,19,85,.12);border-radius:1.25rem;background:linear-gradient(135deg,rgba(0,19,85,.055),rgba(0,128,0,.045));box-shadow:0 16px 40px rgba(0,19,85,.06)}
.locations-contact-icon{display:grid;place-items:center;width:3.5rem;height:3.5rem;border-radius:1rem;background:var(--color-primary);color:#fff}.locations-contact-icon .material-symbols-outlined{font-size:1.65rem}
.locations-contact-cta h2{margin:.25rem 0 .2rem;color:var(--color-primary);font-size:1.25rem}.locations-contact-cta p{margin:0;color:var(--color-on-surface-variant);font-size:.86rem}

@media(max-width:70rem){.locations-area-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:48rem){.locations-area-grid{grid-template-columns:1fr}.locations-contact-cta{grid-template-columns:3.5rem minmax(0,1fr)}.locations-contact-cta .button{grid-column:1/-1;width:100%}}
@media(max-width:40rem){
  .locations-hero-section{padding-bottom:2.5rem}.locations-hero-whatsapp{width:100%;justify-content:center;margin-top:1.15rem}
  .locations-directory-section{padding-block:2.5rem}.locations-directory-heading{margin-bottom:1.25rem}
  .locations-area-grid{gap:.75rem}.location-area-card{border-radius:1rem}.location-area-card:hover{transform:none}.location-area-header{grid-template-columns:2.6rem minmax(0,1fr);padding:.9rem}.location-area-marker{width:2.6rem;height:2.6rem}.location-area-details>summary{padding:.7rem .9rem;font-size:.8rem}.location-area-links{padding:0 .6rem .6rem}.location-area-links a{min-height:2.85rem;font-size:.8rem}
  .locations-contact-cta{grid-template-columns:2.8rem minmax(0,1fr);gap:.8rem;padding:1rem}.locations-contact-icon{width:2.8rem;height:2.8rem;border-radius:.8rem}.locations-contact-cta h2{font-size:1.1rem}.locations-contact-cta p{font-size:.8rem}
}

/* Compact public error pages on phones */
@media(max-width:40rem){
  .error-hero{display:block;padding:calc(var(--header-height) + .75rem) 0 2.25rem;background:linear-gradient(180deg,#f4f6ff 0%,#fff 100%)}
  .error-hero-glow{display:none}.error-hero-container{display:block}
  .error-hero-card{display:block;padding:1.2rem;border-radius:1.15rem;background:rgba(255,255,255,.96);box-shadow:0 12px 34px rgba(0,19,85,.08)}
  .error-hero-visual{display:none}
  .error-status-pill{min-height:1.9rem;padding:.3rem .62rem;font-size:.66rem}.error-status-pill .material-symbols-outlined{font-size:.9rem}
  .error-kicker{margin:1rem 0 .4rem;font-size:.68rem;letter-spacing:.075em}
  .error-hero h1{font-size:clamp(1.85rem,8.6vw,2.3rem);letter-spacing:-.035em;line-height:1.08}
  .error-lead{margin-top:.8rem;font-size:.88rem;line-height:1.6}
  .error-actions{gap:.55rem;margin-top:1.1rem}.error-actions .button{min-height:2.75rem;font-size:.82rem}
  .error-quick-links{gap:.5rem;margin-top:1rem}.error-quick-links>a{grid-template-columns:1.7rem minmax(0,1fr) 1rem;min-height:3.7rem;padding:.65rem .7rem;border-radius:.8rem}.error-quick-links>a>.material-symbols-outlined:first-child{font-size:1.2rem}.error-quick-links strong{font-size:.78rem}.error-quick-links small{font-size:.68rem}
  .error-support-panel{grid-template-columns:2.2rem minmax(0,1fr);gap:.65rem;margin-top:1rem;padding:.75rem;border-radius:.8rem}.error-support-icon{width:2.2rem;height:2.2rem;border-radius:.65rem;font-size:1.15rem}.error-support-panel strong{font-size:.8rem}.error-support-panel p{font-size:.7rem}.error-support-actions{gap:.4rem 1rem;margin-top:.15rem}.error-support-actions a{font-size:.72rem}
}
