/* ─────────────────────────────────────────────────────────────
   INFRADESK UI COMPONENTS & BENTO GRIDS
   Primary Accent: #27BA36 (Infradesk Green)
   ───────────────────────────────────────────────────────────── */

/* ── Sticky Navigation Bar ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(7, 9, 14, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition-smooth), border-color var(--transition-smooth);
}

.site-header--scrolled {
  background: rgba(7, 9, 14, 0.95);
  border-bottom-color: rgba(39, 186, 54, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

/* Brand Logo using Official SVG */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.brand__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(39, 186, 54, 0.12);
  color: var(--brand-green);
  border: 1px solid rgba(39, 186, 54, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.90625rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--brand-green);
  background: rgba(39, 186, 54, 0.1);
  font-weight: 600;
}

/* Nav Right / Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-status-chip {
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-status-chip:hover {
  background: rgba(39, 186, 54, 0.22);
  border-color: rgba(39, 186, 54, 0.6);
  transform: translateY(-1px);
}

/* Language Selector Pill & Dropdown */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(39, 186, 54, 0.35);
}

.lang-btn__flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-btn__chevron {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.lang-selector.is-open .lang-btn__chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #0d131f;
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-inner);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s var(--ease-out-apple);
  z-index: 1100;
}

.lang-selector.is-open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.lang-item:hover, .lang-item.is-active {
  background: rgba(39, 186, 54, 0.12);
  color: #ffffff;
}

.lang-item__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-item__check {
  color: var(--brand-green);
  font-size: 0.8125rem;
  opacity: 0;
}

.lang-item.is-active .lang-item__check {
  opacity: 1;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
}

/* ── Bento Grid System ──────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-card);
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 50px -10px rgba(39, 186, 54, 0.2);
}

.bento-card--featured {
  grid-column: span 8;
  background: linear-gradient(135deg, rgba(16, 24, 39, 0.9) 0%, rgba(26, 36, 56, 0.8) 100%);
}

.bento-card--tall {
  grid-column: span 4;
}

.bento-card--half {
  grid-column: span 6;
}

.bento-card--third {
  grid-column: span 4;
}

.bento-card--full {
  grid-column: span 12;
}

.bento-stack {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bento-stack .bento-card {
  flex: 1;
  padding: 28px;
}

.bento-card__head {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(39, 186, 54, 0.12);
  border: 1px solid rgba(39, 186, 54, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.bento-card__icon--orange {
  background: rgba(255, 107, 44, 0.1);
  border-color: rgba(255, 107, 44, 0.25);
  color: var(--accent-orange);
}

.bento-card__icon--green {
  background: rgba(39, 186, 54, 0.12);
  border-color: rgba(39, 186, 54, 0.3);
  color: var(--brand-green);
}

.bento-card__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 10px;
}

.bento-card__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.bento-card__visual {
  position: relative;
  margin-top: 24px;
  border-radius: var(--radius-inner);
  overflow: hidden;
  background: rgba(5, 7, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Architecture Grid */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Light Card Alternates */
.card-light {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-smooth);
}

.card-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--brand-green);
}

.card-light__title {
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--text-dark-headline);
  margin-bottom: 10px;
}

.card-light__desc {
  font-size: 0.9375rem;
  color: var(--text-dark-body);
  line-height: 1.6;
}

/* ── Metrics / KPI Stats Grid ───────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 186, 54, 0.45);
}

.stat-card__number {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}

.stat-card__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.stat-card__sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── VMware vs. Infradesk Comparison Matrix ─────────────────── */
.comparison-container {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table th.col-highlight {
  background: rgba(39, 186, 54, 0.1);
  color: var(--brand-green);
  border-top: 2px solid var(--brand-green);
}

.comparison-table td.col-highlight {
  background: rgba(39, 186, 54, 0.04);
  font-weight: 600;
  color: #ffffff;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.comparison-badge--good {
  background: rgba(39, 186, 54, 0.18);
  color: #4ade80;
}

.comparison-badge--bad {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* ── Interactive TCO Savings Calculator ─────────────────────── */
.calc-card {
  background: linear-gradient(135deg, rgba(14, 20, 32, 0.95) 0%, rgba(22, 32, 50, 0.95) 100%);
  border: 1px solid rgba(39, 186, 54, 0.35);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.calc-group {
  width: 100%;
  min-width: 0;
}

.calc-group label {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-white);
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.calc-range-markers {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  padding: 0 2px;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 12px var(--brand-green);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider:disabled,
.calc-slider.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.calc-slider:disabled::-webkit-slider-thumb,
.calc-slider.is-disabled::-webkit-slider-thumb {
  cursor: not-allowed;
  transform: none;
}

/* Toggle Switch Component */
.calc-switch-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-inner);
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.calc-switch-card > div {
  min-width: 0;
  flex: 1 1 auto;
}

.calc-switch-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(39, 186, 54, 0.3);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
  box-shadow: 0 0 14px rgba(39, 186, 54, 0.4);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

/* Subgroup for 24/7 Support Slider */
.calc-subgroup {
  padding-left: 18px;
  border-left: 3px solid var(--brand-green);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: -6px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.calc-subgroup.hidden {
  display: none !important;
}

.calc-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78125rem;
  line-height: 1.45;
  color: #fef08a;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.calc-warning-box.hidden {
  display: none !important;
}

/* Results Side Structure & Components */
.calc-results {
  background: rgba(5, 7, 12, 0.85);
  border: 1px solid rgba(39, 186, 54, 0.3);
  border-radius: var(--radius-inner);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.calc-results-body {
  width: 100%;
  min-width: 0;
}

.calc-summary-card {
  background: rgba(39, 186, 54, 0.08);
  border: 1px solid rgba(39, 186, 54, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
  text-align: left;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 4px 8px;
  min-width: 0;
}

.calc-summary-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 0;
}

.calc-formula-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  font-family: monospace;
  word-break: break-word;
  overflow-wrap: break-word;
}

.calc-summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  min-width: 0;
}

.calc-infra-total {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-green);
  line-height: 1.2;
}

.calc-savings-box {
  text-align: left;
  margin-bottom: 16px;
  min-width: 0;
}

.calc-savings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  flex-wrap: wrap;
  gap: 4px;
}

.calc-savings-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calc-savings-percent {
  color: var(--brand-green);
  font-size: 1.05rem;
  font-weight: 800;
}

.calc-savings-amount {
  font-size: clamp(1.8rem, 3.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-green);
  line-height: 1.15;
  margin: 4px 0 0;
  text-align: left;
  text-shadow: 0 0 24px rgba(39, 186, 54, 0.4);
  word-break: break-word;
  overflow-wrap: break-word;
  transition: color var(--transition-fast);
}

.calc-breakdown-card {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8125rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  text-align: left;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 4px 12px;
  min-width: 0;
}

.calc-breakdown-row strong,
.calc-breakdown-row span:last-child {
  word-break: break-word;
  overflow-wrap: break-word;
}

.calc-breakdown-row--vmware {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-breakdown-row--vmware span:last-child {
  text-decoration: line-through;
}

/* Legal Disclaimer Box */
.calc-disclaimer {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-inner);
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-dim);
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.calc-disclaimer strong {
  color: var(--text-white);
}

/* ── Trust / Tech Stack Marquee ─────────────────────────────── */
.tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.tech-stack-row:hover {
  opacity: 1;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
}

.tech-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-inner);
  overflow: hidden;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(39, 186, 54, 0.3);
}

.faq-item.is-open {
  border-color: var(--brand-green);
  background: rgba(18, 26, 42, 0.9);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform var(--transition-smooth), background var(--transition-fast), color var(--transition-fast);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-green);
  color: #05070c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out-apple), padding 0.35s var(--ease-out-apple);
  padding: 0 26px;
}

.faq-item.is-open .faq-answer {
  padding-bottom: 22px;
}

.faq-answer p {
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ── Modern Apple-Pro / Enterprise Footer ───────────────────── */
.site-footer {
  background: #040609;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 40px;
  font-size: 0.875rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 48px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(39, 186, 54, 0.1);
  border: 1px solid rgba(39, 186, 54, 0.3);
  color: #4ade80;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.footer-status-pill:hover {
  background: rgba(39, 186, 54, 0.22);
  border-color: rgba(39, 186, 54, 0.6);
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col p {
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 340px;
  margin-top: 14px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-dim);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* ── Official Services & Contact Grid ────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

