@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --bg: #f6f7fb;
  --bg-muted: #eef2f8;
  --text: #0c1425;
  --text-muted: #5a6a85;
  --primary: #0a1a33;
  --accent: #e01937;
  --accent-2: #19c3b3;
  --border: #e2e8f3;
  --primary-2: #132b52;
  --accent-soft: rgba(224, 25, 55, 0.08);
  --glow: 0 18px 40px rgba(9, 30, 66, 0.18);
  --shadow-1: 0 1px 3px rgba(16, 23, 40, 0.1), 0 1px 2px rgba(16, 23, 40, 0.06);
  --shadow-2: 0 10px 28px rgba(16, 23, 40, 0.14), 0 4px 12px rgba(16, 23, 40, 0.08);
  --radius-8: 8px;
  --radius-12: 12px;
}
* {
  box-sizing: border-box;
}
html, body {
  padding: 0;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-family: Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
header.nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: #0a162d;
  border-bottom: none;
  z-index: 100;
  backdrop-filter: saturate(160%) blur(8px);
}
.mini-header {
  background: linear-gradient(120deg, #0a1a33, #142a52);
  color: #fff;
  font-size: 12px;
}
.mini-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.mini-items {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.mini-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}
.mini-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.mini-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.mini-link {
  color: #fff;
  opacity: 0.9;
  font-weight: 500;
}
.mini-link:hover {
  opacity: 1;
}
.mini-btn {
  background: var(--accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
}
.topbar {
  background: var(--primary-2);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.top-items {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}
.top-item .icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta.small {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-1);
}
.brand-logo {
  height: 72px;
  width: auto;
}
.nav .brand-logo,
footer .brand-logo {
  filter: brightness(0) invert(1);
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-text strong {
  font-size: 18px;
}
.brand-text span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px;
  border-radius: 14px;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
.nav-links a.active {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 6px 10px;
}
.dropdown {
  position: relative;
}
.dropdown .trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
}
.dropdown .trigger:hover,
.dropdown .trigger:focus {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
}
.dropdown .menu {
  position: absolute;
  top: 52px;
  left: 0;
  min-width: 260px;
  background: #0f2446;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 12px;
  
  /* Transition Styles */
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.25s;
  pointer-events: none;
  z-index: 1000;
  
  /* Scroll if too long */
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

/* Grouped Menu Styles */
.menu-group {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.menu-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.group-header {
  font-weight: 700;
  color: var(--accent);
  font-size: 11px;
  padding: 8px 12px 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.menu-group a {
  padding-left: 20px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.8) !important;
}
.menu-group a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}

.dropdown.open .menu,
.dropdown:hover .menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
  pointer-events: auto;
}
.dropdown .menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
}
.dropdown .menu a:hover {
  background: rgba(255,255,255,0.12);
}

/* Mega Menu Styles */
.mega-dropdown {
  position: static !important;
}

.dropdown .menu.mega-menu {
  width: 100%;
  max-width: 1100px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 100%;
  transform: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 16px 16px;
  background: #0f2446;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.dropdown.open .menu.mega-menu,
.dropdown:hover .menu.mega-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.mega-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-header {
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
  padding: 0 0 12px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 12px;
}

.mega-column a {
  padding: 8px 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mega-column a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding-left: 16px;
}

/* Mobile Adjustments for Mega Menu */
@media (max-width: 1024px) {
  .mega-dropdown {
    position: relative !important;
  }

  .dropdown .menu.mega-menu {
    width: 100%;
    max-width: none;
    position: relative;
    top: 0;
    margin: 0;
    transform: translateY(10px);
    display: flex;
    flex-direction: column;
    gap: 24px; /* Increased gap between groups */
    padding: 10px 16px 24px 16px;
    box-shadow: none;
    border: none;
    background: transparent;
    border-radius: 0;
  }
  
  .dropdown.open .menu.mega-menu,
  .dropdown:hover .menu.mega-menu {
    transform: translateY(0);
  }
  
  .mega-column {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .mega-header {
    color: #fff; /* Brighter for mobile */
    margin-top: 0;
    font-size: 14px; /* Larger for mobile */
    padding-left: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  
  .mega-column:first-child .mega-header {
    margin-top: 0;
  }

  .mega-column a {
    padding: 10px 12px; /* Larger touch target */
    font-size: 15px; /* More readable on mobile */
    background: transparent;
  }
  
  .mega-column a:active {
    background: rgba(255,255,255,0.1);
  }
}

/* Grouped Menu Styles */
.menu-group {
  margin-bottom: 8px;
}
.group-header {
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  padding: 8px 12px 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.menu-group a {
  padding-left: 20px !important;
  font-size: 13px !important;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(255,255,255,0.14);
  opacity: 1;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-8);
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-links.open {
  display: flex;
}
.focus-ring:focus {
  outline: 3px solid rgba(15,94,126,0.3);
  outline-offset: 2px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-1);
}
.cta.secondary {
  background: var(--accent-2);
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.form-success {
  margin-top: 8px;
  font-size: 13px;
  color: var(--accent-2);
  min-height: 18px;
}
.form-success.error {
  color: #b42318;
}
.admin-title {
  font-weight: 700;
  color: var(--primary);
}
.admin-section .admin-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-1);
  margin-bottom: 20px;
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.admin-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.kpi-card {
  background: #f5f7fc;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}
.kpi-label {
  font-size: 12px;
  color: var(--text-muted);
}
.kpi-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.crm-form {
  margin-top: 8px;
}
.crm-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.nav-form {
  margin-bottom: 16px;
}
.nav-form input,
.nav-form select {
  font-size: 14px;
}
.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 13px;
}
.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.admin-table th {
  background: var(--bg-muted);
  color: var(--text);
  font-weight: 600;
}
.admin-empty {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hero {
  background: radial-gradient(1200px 600px at 80% -100%, #d7f1f4 0%, rgba(215,241,244,0) 60%), var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.hero-ref {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0a1a33 0%, #1b3356 45%, #6b5a6b 100%);
  color: #fff;
  border-bottom: none;
}
.hero-ref::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-bg, url("WEB 1.jpeg")) center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  transition: opacity .4s ease;
}
.hero-ref.bg-fade::before {
  opacity: 0.06;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.18), transparent 60%), radial-gradient(circle at 20% 70%, rgba(255,255,255,0.08), transparent 50%);
  opacity: 0.6;
  z-index: 1;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 2;
}
.hero-copy h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.hero-ref h1,
.hero-ref .hero-copy h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-rotator {
  transition: opacity .35s ease, transform .35s ease;
}
.hero-rotator.is-changing {
  opacity: 0;
  transform: translateY(6px);
}
.hero-copy p {
  font-size: 18px;
  margin: 0 0 24px;
  color: rgba(255,255,255,0.8);
}
.inquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 30, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 300;
}
.inquiry-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 310;
}
.inquiry-overlay.open,
.inquiry-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.inquiry-card {
  position: relative;
  width: 100%;
  max-width: 820px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}
.inquiry-card.compact {
  max-width: 440px;
  grid-template-columns: 1fr;
  padding: 18px;
  gap: 14px;
}
.inquiry-header {
  text-align: center;
  display: grid;
  gap: 6px;
}
.inquiry-header img {
  height: 40px;
  width: auto;
  margin: 0 auto;
}
.inquiry-header h2 {
  margin: 0;
  font-size: 18px;
  color: var(--primary);
}
.inquiry-header p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.inquiry-card.compact form {
  gap: 10px;
}
.inquiry-card.compact label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.inquiry-card.compact input {
  font-size: 14px;
  padding: 10px 12px;
}
.phone-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.phone-row .flag {
  background: #f5f7fc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
}
.phone-row input {
  flex: 1;
}
.phone-row .cta.small {
  padding: 10px 14px;
}
.inquiry-left {
  padding: 22px;
  background: #f5f7fc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.inquiry-left h2 {
  margin: 0;
  color: var(--primary);
  font-size: 20px;
}
.inquiry-left p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}
.inquiry-logo img {
  height: 46px;
  width: auto;
}
.inquiry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inquiry-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 26, 51, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
}
.inquiry-right {
  padding: 22px;
}
.inquiry-close {
  position: absolute;
  right: 16px;
  top: 14px;
  border: none;
  background: rgba(0,0,0,0.06);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}
.inquiry-card form {
  gap: 10px;
}
.inquiry-card input,
.inquiry-card textarea,
.inquiry-card select {
  padding: 10px;
  font-size: 14px;
}
.inquiry-card textarea {
  min-height: 90px;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #0a162d;
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 420px;
  box-shadow: var(--shadow-2);
  z-index: 320;
}
.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}
.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.cookie-accept {
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}
.modal-open {
  overflow: hidden;
}
.hero-brand {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 12px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.pill.dark {
  background: rgba(255,255,255,0.16);
  border-color: transparent;
  color: #fff;
}
.hero-card {
  background-image: linear-gradient(to bottom, rgba(10, 18, 36, 0.8), rgba(10, 18, 36, 0.9)), url('axon.png?v=1');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(9, 30, 66, 0.25);
  backdrop-filter: blur(16px);
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.hero-card-body h3 {
  margin: 16px 0 10px;
  font-size: 20px;
}
.hero-card-body p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.75);
}
.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-card-grid strong {
  display: block;
  font-size: 20px;
}
.hero-card-grid span {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}
.page-hero {
  position: relative;
  background: linear-gradient(120deg, #0a1a33 0%, #1a3156 55%, #5c4a5f 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0.8;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.page-eyebrow {
  letter-spacing: 1.6px;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.page-hero h1 {
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  overflow-wrap: break-word;
}
.page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.page-hero-card {
  background: rgba(9, 16, 30, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(9, 30, 66, 0.3);
}
.page-hero-card h3 {
  color: #fff;
  margin-top: 0;
}
.page-hero-card p {
  color: rgba(255,255,255,0.75);
}
.cz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cz-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cz-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.cz-card h3 {
  margin-top: 0;
}
.cz-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-1);
}
.cz-list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cz-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 12px;
}
.section.dark {
  background: #0c1b33;
  color: #fff;
}
.section.dark h2,
.section.dark .sub {
  color: #fff;
}
.section.dark .cz-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.section.dark .cz-card p {
  color: rgba(255,255,255,0.7);
}
.steps-section {
  position: relative;
  background: linear-gradient(120deg, rgba(14, 26, 44, 0.9), rgba(18, 40, 70, 0.85)), var(--bg);
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
.steps-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12), transparent 55%);
}
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  z-index: 1;
}
.steps-list h2 {
  margin: 0 0 10px;
  font-size: 28px;
}
.steps-list p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.75);
}
.step-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.step-item span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.step-item strong {
  display: block;
  margin-bottom: 6px;
}
.step-item p {
  margin: 0;
  color: rgba(255,255,255,0.7);
}
.steps-card {
  background-image: linear-gradient(to bottom, rgba(4, 9, 18, 0.8), rgba(4, 9, 18, 0.9)), url('team.png?v=1');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(9, 30, 66, 0.25);
}
.steps-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 12px;
  margin-bottom: 12px;
}
.steps-card h3 {
  margin: 0 0 10px;
}
.steps-card p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.75);
}
.setup-section {
  background: #101b33;
  color: #fff;
}
.setup-section h2,
.setup-section .sub {
  color: #fff;
}
.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.setup-card {
  position: relative;
  border-radius: 18px;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.setup-card:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(10,20,38,0.3), rgba(10,20,38,0.8)), url('acc-book.png?v=1');
  background-size: cover;
  background-position: center;
}
.setup-card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(15,35,65,0.3), rgba(15,35,65,0.8)), url('vat-tax.png?v=1');
  background-size: cover;
  background-position: center;
}
.setup-card:nth-child(3) {
  background-image: linear-gradient(to bottom, rgba(10,18,36,0.3), rgba(10,18,36,0.8)), url('audit.png?v=1');
  background-size: cover;
  background-position: center;
}
.setup-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.25), transparent 60%);
}
.setup-content {
  position: relative;
  z-index: 1;
}
.setup-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.setup-content p {
  margin: 0;
  color: rgba(255,255,255,0.75);
}
.calc-section {
  background: #f6f7fb;
}
.calc-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.calc-steps h2 {
  margin-top: 0;
}
.calc-step {
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: #0c1b33;
  color: #fff;
  font-size: 13px;
}
.calc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-1);
  display: grid;
  gap: 14px;
}
.calc-card label {
  font-size: 13px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}
.ecosystem-section {
  background: #f9fafc;
}
.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.eco-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.eco-card {
  background: #0c1b33;
  color: #fff;
  border-radius: 18px;
  padding: 20px;
  position: relative; /* Ensure relative positioning for potential future absolute children */
  overflow: hidden; /* Ensure background doesn't bleed */
}
.eco-card:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(12, 27, 51, 0.6), rgba(12, 27, 51, 0.9)), url('report.png?v=1');
  background-size: cover;
  background-position: center;
}
.eco-card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(12, 27, 51, 0.6), rgba(12, 27, 51, 0.9)), url('advise.png?v=1');
  background-size: cover;
  background-position: center;
}
.eco-card a {
  display: inline-block;
  margin-top: 10px;
  color: #9be370;
  font-weight: 600;
}
.jurisdiction-section {
  background: #0c1b33;
  color: #fff;
}
.jurisdiction-section h2,
.jurisdiction-section .sub {
  color: #fff;
}
.jurisdiction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.jurisdiction-card {
  position: relative;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.jurisdiction-card:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(10,26,51,0.3), rgba(10,26,51,0.8)), url('dubai.png?v=1');
  background-size: cover;
  background-position: center;
}
.jurisdiction-card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(10,26,51,0.3), rgba(10,26,51,0.8)), url('fz.png?v=1');
  background-size: cover;
  background-position: center;
}
.jurisdiction-card:nth-child(3) {
  background-image: linear-gradient(to bottom, rgba(10,26,51,0.3), rgba(10,26,51,0.8)), url('off.png?v=1');
  background-size: cover;
  background-position: center;
}
.jurisdiction-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), transparent 60%);
}
.jurisdiction-content {
  position: relative;
  z-index: 1;
}
.jurisdiction-content h3 {
  margin: 0 0 6px;
}
.jurisdiction-content p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-image: url('images-benefits.png?v=1');
  background-size: 300% 200%; /* Assumes 3 cols x 2 rows grid */
  background-repeat: no-repeat;
  margin-bottom: 16px;
  border-radius: 8px;
}

/* Row 1 */
.benefit-card:nth-child(1) .benefit-icon { background-position: 0% 0%; }
.benefit-card:nth-child(2) .benefit-icon { background-position: 50% 0%; }
.benefit-card:nth-child(3) .benefit-icon { background-position: 100% 0%; }

/* Row 2 */
.benefit-card:nth-child(4) .benefit-icon { background-position: 0% 100%; }
.benefit-card:nth-child(5) .benefit-icon { background-position: 50% 100%; }
.benefit-card:nth-child(6) .benefit-icon { background-position: 100% 100%; }

.benefit-card h3 {
  margin: 0 0 8px;
}
.benefit-card p {
  margin: 0;
  color: var(--text-muted);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-1);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: #0a1a33;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.team-card p {
  margin: 0;
  color: var(--text-muted);
}
.faq-section .accordion {
  background: #fff;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.pill {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  background: #fff;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--text-muted);
}
.card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
  border-color: #d8dee9;
}
.glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
}
.hero-visual {
  height: 360px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(13,31,60,0.08), rgba(11,122,143,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow);
}
.hero-visual svg {
  width: 100%;
  height: 100%;
}
.floating {
  animation: float 6s ease-in-out infinite;
}
.pulse {
  animation: pulse 5s ease-in-out infinite;
}
.fade-up {
  animation: fadeUp .9s ease both;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.soft-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(11,122,143,0.25), rgba(11,122,143,0) 70%);
  top: -40px;
  right: -40px;
}
.soft-ring.small {
  width: 140px;
  height: 140px;
  bottom: -30px;
  left: -30px;
  top: auto;
  right: auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.section.alt {
  background: var(--bg-muted);
}
.section h2 {
  margin: 0 0 16px;
  font-size: 28px;
  color: var(--primary);
}
.section p.sub {
  margin: 0 0 24px;
  color: var(--text-muted);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.logo-chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: #d8dee9;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.service-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.service-tag {
  padding: 6px 10px;
  font-size: 11px;
  border-radius: 999px;
  background: rgba(11,122,143,0.08);
  color: var(--accent);
  font-weight: 600;
}
.service-media {
  height: 90px;
  border-radius: 14px;
  background: rgba(13,31,60,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11,122,143,0.35);
}
.service-media svg {
  width: 110px;
  height: 70px;
}
.service-media svg rect,
.service-media svg circle {
  fill: currentColor;
}
.service-media svg path {
  fill: none;
  stroke: currentColor;
}
.process-showcase .section-head {
  margin-bottom: 24px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: #d8dee9;
}
.process-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(13,31,60,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}
.process-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
.process-body p {
  margin: 0;
  color: var(--text-muted);
}
.process-media {
  height: 86px;
  border-radius: 14px;
  background: rgba(13,31,60,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11,122,143,0.35);
}
.process-media svg {
  width: 110px;
  height: 70px;
}
.process-media svg rect,
.process-media svg circle {
  fill: currentColor;
}
.process-media svg path {
  fill: none;
  stroke: currentColor;
}
.float-slow {
  animation: float 8s ease-in-out infinite;
}
.list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.list.single {
  grid-template-columns: 1fr;
}
.list .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.step .num {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.band {
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: #fff;
  padding: 24px 0;
}
.band .cta {
  background: #fff;
  color: var(--primary);
}
.cta.whatsapp {
  background: #25D366;
  color: #fff;
}
.cta.whatsapp .icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.cta.whatsapp .wa-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.cta.whatsapp .wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
footer {
  padding: 56px 0 24px;
  background: #0a162d;
  border-top: none;
  color: rgba(255,255,255,0.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}
.footer-note {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0 0 12px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.footer-links a {
  color: rgba(255,255,255,0.8);
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
}
.topbar .badge {
  color: #fff;
}
.quote {
  font-size: 18px;
  color: var(--text);
}
.accordion {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.accordion .item {
  border-top: 1px solid var(--border);
}
.accordion .header {
  padding: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.accordion .content {
  padding: 16px;
  background: var(--bg-muted);
  display: none;
}
.accordion .item.active .content {
  display: block;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
form .full {
  grid-column: 1 / -1;
}
input, textarea, select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 4px rgba(15, 94, 126, 0.15);
  outline: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
button {
  border: none;
  cursor: pointer;
}
.callback-tab {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--accent), var(--primary-2));
  color: #fff;
  padding: 12px 10px;
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  letter-spacing: 0.4px;
  z-index: 200;
  box-shadow: var(--shadow-2);
}
.callback-panel {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 360px;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 220;
  display: flex;
  flex-direction: column;
}
.callback-panel.open {
  transform: translateX(0);
}
.callback-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.callback-body {
  padding: 20px;
  overflow: auto;
}
.callback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 210;
}
.callback-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.download-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-2);
  z-index: 190;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.download-fab .icon {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-2);
  z-index: 191;
}
.whatsapp-fab .icon {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.whatsapp-fab .wa-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}
.whatsapp-fab .wa-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}
@media (max-width: 992px) {
  .mini-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .mini-items,
  .mini-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .top-inner {
    height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .top-items {
    gap: 12px;
  }
  .top-actions {
    width: 100%;
    justify-content: space-between;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .page-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .setup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .eco-grid {
    grid-template-columns: 1fr;
  }
  .jurisdiction-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-strip {
    justify-content: flex-start;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  form {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    right: 24px;
    background: #0f2446;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-12);
    box-shadow: var(--shadow-2);
    padding: 12px;
    flex-direction: column;
    gap: 12px;
    width: min(320px, 90vw);
  }
  .dropdown .menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    
    /* Reset Desktop Transitions for Mobile */
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .dropdown.open .menu {
    display: block;
  }
  .dropdown .menu.mega-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
    border: none;
  }
  .dropdown.open .menu.mega-menu {
    display: flex;
  }
  .mega-column {
    min-width: 100%;
    margin-bottom: 20px;
  }
  .admin-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-kpis {
    grid-template-columns: 1fr;
  }
  .list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .mini-items {
    display: none;
  }
  .mini-actions {
    justify-content: space-between;
    gap: 10px;
  }
  .mini-btn {
    padding: 6px 8px;
    font-size: 10px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .callback-tab {
    top: auto;
    bottom: 100px;
  }
  .callback-panel {
    width: 100%;
  }
  .hero-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p.lead {
    font-size: 15px;
  }
  .hero-visual {
    height: 280px;
  }
  .hero-grid {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero-card-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 {
    font-size: 30px;
  }
  .hero-copy p {
    font-size: 15px;
  }
  .page-hero-inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .steps-section {
    padding: 50px 0;
  }
  .setup-grid {
    grid-template-columns: 1fr;
  }
  .calc-steps {
    order: 2;
  }
  .calc-card {
    order: 1;
  }
  .eco-cards {
    grid-template-columns: 1fr;
  }
  .cz-grid {
    grid-template-columns: 1fr;
  }
  .jurisdiction-grid,
  .benefits-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-card {
    grid-template-columns: 1fr;
  }
  .brand-logo {
    height: 64px;
  }
  .footer-logo {
    height: 56px;
  }
  .nav-links {
    display: none;
  }
}
