:root {
  --green-950: #07291f;
  --green-900: #0b3d2e;
  --green-700: #14614a;
  --gold-600: #c9a227;
  --gold-500: #d8b84a;
  --navy-900: #111827;
  --navy-700: #263244;
  --cream-100: #f7f3e8;
  --cream-50: #fbfaf6;
  --white: #ffffff;
  --muted: #667085;
  --border: #ded8ca;
  --soft-border: rgba(255, 255, 255, 0.18);
  --success: #19764a;
  --warning: #9a6b00;
  --danger: #b42318;
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
  --radius: 8px;
  --header-height: 78px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, Tahoma, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy-900);
  background: var(--cream-50);
  font-family: var(--font-sans);
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(7, 41, 31, 0.94);
  border-bottom: 1px solid rgba(216, 184, 74, 0.25);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-500), #fff2a8);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  font-weight: 900;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: var(--green-950);
  background: var(--gold-500);
}

.nav-toggle {
  display: none;
}

.icon-button {
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
}

.icon-button svg,
.button svg,
.text-link svg,
.site-nav svg,
.admin-nav svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero {
  position: relative;
  min-height: 86svh;
  padding: clamp(72px, 8vw, 118px) 0 36px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 41, 31, 0.95) 0%, rgba(7, 41, 31, 0.84) 46%, rgba(7, 41, 31, 0.55) 100%),
    url("../img/hero-dubai.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-600), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.64fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
  line-height: 0.96;
}

.hero-lede {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-support {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--green-950);
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.button-secondary {
  color: var(--white);
  background: var(--green-700);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-outline {
  color: var(--green-900);
  background: transparent;
  border-color: rgba(11, 61, 46, 0.28);
}

.button-outline:hover {
  border-color: var(--gold-600);
  background: rgba(216, 184, 74, 0.08);
}

.hero-panel {
  min-height: 420px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--soft-border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-topline {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.route-map {
  min-height: 136px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.route-map span {
  display: grid;
  place-items: center;
  width: 122px;
  aspect-ratio: 1;
  color: var(--white);
  border: 1px solid rgba(216, 184, 74, 0.56);
  border-radius: 50%;
  font-weight: 900;
  text-align: center;
}

.route-map svg {
  color: var(--gold-500);
}

.deal-list {
  display: grid;
  gap: 10px;
}

.deal-list div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.deal-list strong,
.deal-list span {
  display: block;
}

.deal-list span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(38px, 5vw, 72px);
}

.metric-grid div {
  min-height: 108px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.metric-grid strong {
  display: block;
  color: var(--gold-500);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.metric-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.section {
  padding: clamp(58px, 7vw, 96px) 0;
}

.muted-section {
  background: #efeadf;
}

.section-heading {
  max-width: 560px;
}

.section-heading h2,
.form-intro h2,
.cta-grid h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.section-heading p,
.form-intro p,
.cta-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.wide-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.path-grid,
.service-mini-grid,
.opportunity-grid,
.services-grid,
.sector-grid,
.membership-grid,
.trust-grid,
.two-column-cards {
  display: grid;
  gap: 16px;
}

.path-grid {
  grid-template-columns: repeat(4, 1fr);
}

.path-card,
.mini-card,
.opportunity-card,
.service-card,
.sector-card,
.pricing-card,
.feature-card,
.trust-item,
.admin-panel,
.admin-stat,
.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.path-card {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-card svg,
.mini-card svg,
.feature-card svg,
.service-card .icon-wrap,
.trust-item svg {
  color: var(--gold-600);
}

.path-card h3,
.mini-card h3,
.opportunity-card h3,
.sector-card h3 {
  margin: 18px 0 8px;
  color: var(--green-950);
  font-size: 1.2rem;
  line-height: 1.18;
}

.path-card p,
.mini-card p,
.opportunity-card p,
.service-card p,
.sector-card p,
.pricing-card p,
.feature-card p,
.prose p {
  margin: 0;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.service-mini-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mini-card {
  min-height: 220px;
  padding: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--green-900);
  font-weight: 900;
}

.opportunity-grid {
  grid-template-columns: repeat(3, 1fr);
}

.opportunity-card {
  min-height: 360px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--green-900);
  background: rgba(216, 184, 74, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.opportunity-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.opportunity-card dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.opportunity-card dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.opportunity-card dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 800;
}

.opportunity-card .text-link {
  margin-top: auto;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-grid h2,
.cta-grid p {
  color: var(--white);
}

.cta-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(7, 41, 31, 0.92), rgba(7, 41, 31, 0.7) 52%, rgba(7, 41, 31, 0.28)),
    url("../img/pro/megba-gcc-hero-tall.jpg");
  background-image:
    linear-gradient(90deg, rgba(7, 41, 31, 0.92), rgba(7, 41, 31, 0.7) 52%, rgba(7, 41, 31, 0.28)),
    image-set(
      url("../img/pro/megba-gcc-hero-tall.webp") type("image/webp"),
      url("../img/pro/megba-gcc-hero-tall.jpg") type("image/jpeg")
    );
  background-position: center, center 48%;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.compact-hero {
  min-height: 390px;
  display: grid;
  align-items: center;
  padding: 80px 0;
}

.compact-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.7rem);
}

.compact-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.prose {
  font-size: 1.08rem;
}

.prose p + p {
  margin-top: 16px;
}

.two-column-cards {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
}

.feature-card h2,
.service-card h2,
.pricing-card h2,
.admin-panel h2,
.message-box h2 {
  margin: 18px 0 10px;
  color: var(--green-950);
  font-size: 1.35rem;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 96px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-card .icon-wrap {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(216, 184, 74, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 8px;
}

.service-card .button {
  margin-top: auto;
}

.sector-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sector-card {
  min-height: 230px;
  padding: 20px;
}

.membership-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 560px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--gold-600);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.2);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-price {
  color: var(--green-900) !important;
  font-size: 1.18rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--navy-700);
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--success);
  margin-top: 3px;
}

.pricing-card .button {
  margin-top: auto;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.business-form,
.admin-form {
  display: grid;
  gap: 16px;
}

.business-form {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--navy-900);
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.16);
}

.full-span {
  grid-column: 1 / -1;
}

.file-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.flash {
  padding: 14px 0;
  color: var(--white);
  background: var(--green-700);
  font-weight: 800;
}

.flash-error {
  background: var(--danger);
}

.flash-success {
  background: var(--success);
}

.thank-you .reference {
  color: var(--gold-500) !important;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-950);
  border-top: 1px solid rgba(216, 184, 74, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 36px;
  padding: 50px 0 32px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1f9d5b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

.login-page {
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(7, 41, 31, 0.96), rgba(17, 24, 39, 0.86)),
    url("../img/admin-office.jpg") center / cover;
}

.login-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(440px, 100%);
  padding: 28px;
}

.login-card .brand strong {
  color: var(--green-950);
}

.login-card .brand small {
  color: var(--muted);
}

.login-card h1 {
  margin: 26px 0 18px;
  color: var(--green-950);
}

.login-card .flash {
  border-radius: 8px;
  padding: 12px;
}

.admin-page {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100svh;
  background: #f4f1ea;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 22px;
  color: var(--white);
  background: var(--green-950);
  border-right: 1px solid rgba(216, 184, 74, 0.22);
}

.admin-brand {
  align-items: flex-start;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-weight: 800;
}

.admin-nav a.active,
.admin-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.admin-account {
  margin-top: auto;
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-account span {
  font-weight: 900;
}

.admin-account a {
  color: var(--gold-500);
  font-weight: 900;
}

.admin-main {
  min-width: 0;
  padding: clamp(22px, 4vw, 42px);
}

.admin-flash {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-head h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat {
  min-height: 132px;
  padding: 20px;
}

.admin-stat strong {
  display: block;
  color: var(--green-950);
  font-size: 2.3rem;
  line-height: 1;
}

.admin-stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 900;
}

.admin-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-panel {
  padding: 20px;
  overflow: hidden;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.panel-heading h2 {
  margin: 0;
}

.panel-heading a {
  color: var(--green-900);
  font-weight: 900;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green-950);
  font-size: 0.78rem;
  text-transform: uppercase;
}

td {
  color: var(--navy-700);
}

td a {
  color: var(--green-900);
  font-weight: 900;
}

td small {
  display: block;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-new {
  color: var(--green-950);
  background: rgba(201, 162, 39, 0.2);
}

.status-reviewing,
.status-contacted {
  color: #6941c6;
  background: #eee9ff;
}

.status-qualified,
.status-converted {
  color: var(--success);
  background: #e7f6ee;
}

.status-closed {
  color: var(--muted);
  background: #eef0f3;
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.filter-bar label {
  width: min(260px, 100%);
}

.record-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-list div {
  min-height: 78px;
  padding: 14px;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.detail-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.message-box {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.message-box p {
  color: var(--navy-700);
}

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--green-950);
    border: 1px solid rgba(216, 184, 74, 0.28);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .hero-grid,
  .split-grid,
  .form-shell,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .metric-grid,
  .path-grid,
  .services-grid,
  .sector-grid,
  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .opportunity-grid,
  .membership-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-page {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-columns,
  .record-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .brand small {
    max-width: 180px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-actions,
  .footer-bottom,
  .admin-head {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .metric-grid,
  .path-grid,
  .service-mini-grid,
  .opportunity-grid,
  .services-grid,
  .sector-grid,
  .membership-grid,
  .trust-grid,
  .two-column-cards,
  .form-grid,
  .footer-grid,
  .admin-stat-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .route-map {
    min-height: 110px;
  }

  .route-map span {
    width: 96px;
    font-size: 0.88rem;
  }

  .compact-hero {
    min-height: 320px;
    padding: 58px 0;
  }

  .pricing-card,
  .service-card,
  .opportunity-card,
  .path-card {
    min-height: auto;
  }

  .business-form {
    padding: 18px;
  }

  .admin-main {
    padding: 18px 12px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}
