:root {
  --navy: #050f2b;
  --navy-2: #0a1f55;
  --navy-3: #15357f;
  --gold: #c8960c;
  --gold-2: #e5b23a;
  --gold-3: #f2cf76;
  --surface: #f5f7fc;
  --surface-2: #edf2fb;
  --surface-3: #e2eaf8;
  --white: #ffffff;
  --ink: #0f1d40;
  --ink-2: #33456f;
  --muted: #617196;
  --muted-2: #8d99b3;
  --line: rgba(10, 31, 85, 0.1);
  --line-strong: rgba(200, 150, 12, 0.18);
  --shadow-sm: 0 16px 34px rgba(5, 15, 43, 0.08);
  --shadow: 0 24px 64px rgba(5, 15, 43, 0.12);
  --shadow-lg: 0 34px 88px rgba(5, 15, 43, 0.18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(21, 53, 127, 0.1), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(229, 178, 58, 0.08), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(21, 53, 127, 0.07), transparent 24%),
    linear-gradient(180deg, #fcfdff 0%, #f7f9fe 36%, #f2f6fd 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 420px;
  height: 420px;
  top: 110px;
  right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 53, 127, 0.08) 0%, rgba(21, 53, 127, 0.03) 42%, transparent 74%);
  filter: blur(8px);
}

body::after {
  width: 360px;
  height: 360px;
  left: -90px;
  bottom: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 178, 58, 0.09) 0%, rgba(229, 178, 58, 0.03) 46%, transparent 76%);
  filter: blur(10px);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.viewer-canvas {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: grab;
  touch-action: none;
}

.viewer-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.viewer-canvas.is-dragging {
  cursor: grabbing;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 15, 43, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 178, 58, 0.14);
  box-shadow: 0 14px 36px rgba(5, 15, 43, 0.16);
}

.site-header .container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.footer-brand-inline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 14px 34px rgba(200, 150, 12, 0.22);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.brand-text,
.footer-brand-text {
  display: grid;
  gap: 2px;
}

.brand-title,
.footer-brand-text strong {
  color: var(--white);
  font-family: "Amiri", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle,
.footer-brand-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

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

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.2s ease;
}

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

.site-nav .cta-link {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  box-shadow: 0 14px 30px rgba(200, 150, 12, 0.24);
}

.site-nav .cta-link:hover,
.site-nav .cta-link.is-active {
  color: var(--navy);
  background: linear-gradient(135deg, #f8d88b, var(--gold-2));
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  margin: 5px auto;
  transition: 0.2s ease;
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 62px 0 42px;
  background:
    radial-gradient(circle at 78% 24%, rgba(229, 178, 58, 0.16), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(21, 53, 127, 0.28), transparent 20%),
    linear-gradient(135deg, #061230 0%, #0a1f55 54%, #15357f 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.03) 79px, rgba(255, 255, 255, 0.03) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, 0.03) 79px, rgba(255, 255, 255, 0.03) 80px);
  pointer-events: none;
}

.page-hero {
  padding: 54px 0 34px;
  background:
    radial-gradient(circle at 84% 22%, rgba(229, 178, 58, 0.11), transparent 20%),
    linear-gradient(135deg, #071431 0%, #0d235e 58%, #14316e 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.hero-copy,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-copy {
  color: var(--white);
}

.eyebrow,
.page-kicker {
  display: none;
}

.hero-title,
.page-title,
.section-title,
.cta-panel h2,
.card h3,
.journey-step h3,
.story-panel h3,
.feature-panel h3,
.fact-panel h3,
.policy-card h3,
.timeline-card h3,
.team-card h3,
.contact-card h3,
.download-card h3,
.leadership-item h3 {
  font-family: "Amiri", serif;
  letter-spacing: -0.02em;
}

.hero-title {
  margin: 18px 0 14px;
  color: var(--white);
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
}

.hero-title .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--gold-2);
}

.hero-lead,
.page-lead,
.section-lead,
.cta-panel p,
.card p,
.story-panel p,
.feature-panel p,
.fact-panel p,
.policy-card p,
.contact-card p,
.download-card p,
.journey-step p,
.gallery-card p {
  color: var(--muted);
  line-height: 1.95;
}

.hero-lead {
  margin: 0 0 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.page-title {
  margin: 18px 0 12px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
}

.page-lead,
.section-lead {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
}

.page-lead {
  color: rgba(255, 255, 255, 0.75);
}

.hero-actions,
.page-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-pills,
.pill-row,
.badge-row,
.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: 0.2s ease;
  cursor: pointer;
}

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

.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  box-shadow: 0 16px 30px rgba(200, 150, 12, 0.24);
}

.button-secondary,
.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-light {
  color: var(--navy-2);
  background: var(--white);
  border-color: rgba(10, 31, 85, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.hero-robot {
  position: relative;
  min-height: 620px;
}

.hero-robot-frame {
  position: absolute;
  inset: 18px 18px 0 18px;
  border-radius: 40px;
  background: transparent;
  overflow: hidden;
}

.hero-robot::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -48%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(229, 178, 58, 0.12) 26%, rgba(21, 53, 127, 0.24) 48%, rgba(21, 53, 127, 0.04) 66%, transparent 78%);
  pointer-events: none;
}

.hero-robot .viewer-canvas {
  position: absolute;
  inset: 24px 28px 18px 28px;
  z-index: 1;
}

.viewer-loader {
  position: absolute;
  width: 44px;
  height: 44px;
  top: 50%;
  left: 50%;
  margin: -22px 0 0 -22px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  pointer-events: none;
  animation: viewer-spin 0.9s linear infinite;
  transition: opacity 0.2s ease;
  z-index: 3;
}

.viewer-canvas.is-loading .viewer-loader {
  opacity: 1;
}

@keyframes viewer-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.metric-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(229, 178, 58, 0.12);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.metric-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.viewer-shell {
  position: relative;
  min-height: 520px;
}

.viewer-panel {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(180deg, #081741 0%, #0d245f 58%, #14316e 100%);
  border: 1px solid rgba(229, 178, 58, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.viewer-halo {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(229, 178, 58, 0.08) 36%, transparent 72%);
  pointer-events: none;
}

.viewer-panel .viewer-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.viewer-chip,
.floating-card,
.gallery-note {
  display: none;
}

.switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 0;
}

.switcher button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 31, 85, 0.12);
  background: var(--white);
  color: var(--navy-2);
  font-weight: 800;
  cursor: pointer;
}

.switcher button.is-active {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  border-color: transparent;
  color: var(--navy);
}

.section {
  padding: 76px 0;
}

.section.surface,
.section.dark {
  background:
    radial-gradient(circle at top left, rgba(21, 53, 127, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(237, 242, 251, 0.82), rgba(255, 255, 255, 0.98));
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.section-title.light {
  color: var(--white);
}

.section.dark .section-lead {
  color: var(--muted);
}

.title-divider {
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
}

.cards-grid,
.gallery-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.story-panel,
.cta-panel,
.download-card,
.contact-card,
.team-card,
.policy-card,
.fact-panel,
.gallery-card,
.feature-panel,
.timeline-card,
.contact-form {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.98));
  border: 1px solid rgba(10, 31, 85, 0.08);
  box-shadow: var(--shadow-sm);
}

.card,
.download-card,
.gallery-card,
.contact-form,
.story-panel,
.feature-panel,
.fact-panel,
.policy-card,
.timeline-card,
.team-card,
.contact-card {
  padding: 24px;
}

.card {
  transition: 0.2s ease;
}

.card:hover,
.gallery-card:hover,
.download-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-badge,
.journey-index {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.card h3,
.gallery-card h3,
.download-card h3,
.journey-step h3,
.story-panel h3,
.feature-panel h3,
.fact-panel h3,
.policy-card h3,
.team-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
}

.card p,
.gallery-card p {
  margin: 0;
  font-size: 15px;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.journey {
  display: grid;
  gap: 16px;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(10, 31, 85, 0.08);
  box-shadow: var(--shadow-sm);
}

.journey-step p {
  margin: 0;
}

.gallery-card {
  padding: 18px;
}

.gallery-stage {
  height: 280px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(229, 178, 58, 0.1), transparent 38%),
    linear-gradient(180deg, #081741 0%, #14316e 100%);
  border: 1px solid rgba(229, 178, 58, 0.12);
  overflow: hidden;
  position: relative;
}

.gallery-stage .viewer-canvas {
  position: absolute;
  inset: 0;
}

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

.download-meta {
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
}

.download-meta span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 14px;
}

.download-meta strong {
  color: var(--navy);
}

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

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

.team-hero-copy {
  position: relative;
  z-index: 1;
}

.team-hero-logo {
  display: flex;
  justify-content: center;
}

.team-hero-logo img {
  width: min(180px, 100%);
  height: auto;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(5, 15, 43, 0.18);
}

.leadership-item {
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f0f4fb);
  border: 1px solid rgba(200, 150, 12, 0.12);
  box-shadow: var(--shadow-sm);
}

.leadership-item p {
  margin: 0;
  color: var(--muted);
}

.team-card ul,
.footer-links-inline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-card ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.team-card li {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-weight: 700;
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-card a,
.contact-card span,
.contact-note {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(10, 31, 85, 0.12);
  background: #f9fbff;
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(200, 150, 12, 0.45);
  box-shadow: 0 0 0 4px rgba(200, 150, 12, 0.1);
}

.policy-layout {
  display: grid;
  gap: 18px;
}

.policy-card ul {
  margin: 14px 0 0;
  padding-right: 18px;
  color: var(--muted);
  line-height: 2;
}

.cta-panel {
  padding: 32px;
  background: linear-gradient(135deg, #061230, #0d245f);
  color: var(--white);
  border: 1px solid rgba(229, 178, 58, 0.14);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
}

.cta-panel p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  margin-top: 44px;
  background: linear-gradient(135deg, #07122f, #0a1f55);
  color: var(--white);
  border-top: 1px solid rgba(229, 178, 58, 0.14);
}

.footer-strip {
  min-height: 90px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer .brand-title,
.site-footer .footer-brand-text strong,
.site-footer .footer-links-inline a {
  color: var(--white);
}

.footer-meta-inline,
.site-footer .footer-brand-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  flex-wrap: wrap;
}

.footer-links-inline a {
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-hero-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .team-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-robot {
    min-height: 500px;
  }

  .hero-metrics,
  .cards-grid,
  .gallery-grid,
  .team-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header .container {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(5, 15, 43, 0.98);
    border: 1px solid rgba(229, 178, 58, 0.14);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav ul {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    text-align: center;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-robot {
    min-height: 420px;
  }

  .hero-metrics,
  .cards-grid,
  .gallery-grid,
  .team-grid,
  .download-grid,
  .leadership-strip {
    grid-template-columns: 1fr;
  }

  .journey-step {
    grid-template-columns: 1fr;
  }

  .footer-strip {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .brand-title {
    font-size: 25px;
  }

  .brand-subtitle,
  .footer-brand-text span,
  .footer-meta-inline {
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(38px, 13vw, 70px);
  }

  .hero-actions,
  .page-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-robot {
    min-height: 360px;
  }

  .gallery-stage {
    height: 240px;
  }

  .team-hero-layout {
    gap: 18px;
  }

  .team-hero-logo {
    order: -1;
    width: 100%;
  }

  .team-hero-logo img {
    width: 112px;
    padding: 10px;
    margin: 0 auto;
    border-radius: 20px;
  }
}
