/* ============================================================
   Orbit IT Solutions — Public Website Stylesheet
   ============================================================
   Uses CSS custom properties from the Orbit Design System
   (colors_and_type.css). All classes prefixed .orbit-pub-*.
   Light theme, navy primary, orange accent, teal informational.
   ============================================================ */


/* ============================================================
   0. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}


/* ============================================================
   1. LAYOUT
   ============================================================ */
.orbit-public {
  min-height: 100vh;
  background: var(--bg-page);
  color: var(--fg-1);
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.orbit-pub-container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-7);
}

.orbit-pub-main {
  flex: 1;
}


/* ============================================================
   2. HEADER / NAVBAR
   ============================================================ */
.orbit-pub-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--dur-normal) var(--ease-standard);
}

.orbit-pub-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.orbit-pub-nav {
  display: flex;
  align-items: center;
  height: 64px;
  gap: var(--sp-7);
}

.orbit-pub-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--fg-1);
  flex-shrink: 0;
}

.orbit-pub-logo img {
  height: 32px;
  width: auto;
}

.orbit-pub-logo span {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-xl);
  letter-spacing: var(--ls-tight);
}

.orbit-pub-links {
  display: flex;
  gap: var(--sp-6);
  margin-inline-start: var(--sp-5);
}

.orbit-pub-link {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--fg-2);
  text-decoration: none;
  padding: var(--sp-1) 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease-standard);
}

.orbit-pub-link:hover {
  color: var(--navy-600);
}

.orbit-pub-link.active {
  color: var(--navy-600);
  font-weight: var(--fw-semi);
}

.orbit-pub-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  background: var(--orange-500);
  border-radius: var(--r-pill);
}

.orbit-pub-nav-right {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* --- Buttons --- */
.orbit-pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-standard);
}

.orbit-pub-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* Primary: orange CTA */
.orbit-pub-btn--primary {
  background: var(--orange-500);
  color: #fff;
  border-color: var(--orange-500);
}

.orbit-pub-btn--primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: #fff;
}

/* Secondary: outlined */
.orbit-pub-btn--secondary {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--border-default);
}

.orbit-pub-btn--secondary:hover {
  border-color: var(--navy-600);
  color: var(--navy-600);
}

/* Ghost: text-only */
.orbit-pub-btn--ghost {
  background: transparent;
  color: var(--fg-1);
  border-color: transparent;
}

.orbit-pub-btn--ghost:hover {
  color: var(--navy-600);
}

/* On-dark variants */
.orbit-pub-btn--on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.orbit-pub-btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Large button variant */
.orbit-pub-btn--lg {
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-md);
}

/* --- Hamburger (mobile) --- */
.orbit-pub-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
}

.orbit-pub-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--fg-1);
  border-radius: var(--r-pill);
  transition: transform var(--dur-normal) var(--ease-standard),
              opacity var(--dur-fast) var(--ease-standard);
}

.orbit-pub-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.orbit-pub-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.orbit-pub-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   3. LANGUAGE TOGGLE
   ============================================================ */
.orbit-lang-toggle {
  display: flex;
  background: var(--slate-75);
  padding: 3px;
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
}

.orbit-lang-btn {
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--fg-2);
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: var(--fw-semi);
  font-size: var(--fs-xs);
  transition: all var(--dur-fast) var(--ease-standard);
}

.orbit-lang-btn.active {
  background: var(--bg-surface);
  color: var(--fg-1);
  box-shadow: var(--shadow-xs);
}


/* ============================================================
   4. HERO
   ============================================================ */
.orbit-pub-hero {
  background: var(--navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--sp-11) 0 var(--sp-12);
}

/* Orbit mark as background decoration at 8% opacity */
.orbit-pub-hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -120px;
  top: -60px;
  width: 520px;
  height: 520px;
  background: url("/orbit_portal/static/src/orbit-it-design-system/project/assets/orbit-mark.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.orbit-pub-hero::after {
  content: "";
  position: absolute;
  inset-inline-start: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: url("/orbit_portal/static/src/orbit-it-design-system/project/assets/orbit-mark.png") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.orbit-pub-hero .orbit-pub-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.orbit-pub-hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: var(--sp-5);
}

.orbit-pub-hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-7xl);
  font-weight: var(--fw-black);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 var(--sp-5);
  text-wrap: pretty;
  color: #fff;
}

.orbit-pub-hero__title .accent {
  color: var(--orange-400);
}

.orbit-pub-hero__lede {
  font-size: var(--fs-xl);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 0 var(--sp-7);
}

.orbit-pub-hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.orbit-pub-hero__actions .orbit-pub-btn--primary {
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--fs-md);
}

.orbit-pub-hero__stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-9);
  padding-top: var(--sp-7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.orbit-pub-hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.orbit-pub-hero__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semi);
  margin-top: 2px;
}


/* ============================================================
   5. SECTIONS
   ============================================================ */
.orbit-pub-section {
  padding: var(--sp-12) 0;
}

.orbit-pub-section--alt {
  background: var(--slate-50);
}

.orbit-pub-section__head {
  max-width: 680px;
  margin: 0 0 var(--sp-10);
}

.orbit-pub-section__head.centered {
  text-align: center;
  margin-inline: auto;
}

.orbit-pub-section__head .eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: var(--sp-4);
}

.orbit-pub-section__head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  margin: 0 0 var(--sp-4);
  text-wrap: pretty;
}

.orbit-pub-section__head p {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--fg-2);
  margin: 0;
  max-width: 580px;
}

.orbit-pub-section__head.centered p {
  margin-inline: auto;
}


/* ============================================================
   6. SERVICE CARDS
   ============================================================ */
.orbit-pub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.orbit-pub-service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  transition: border-color var(--dur-normal) var(--ease-standard),
              box-shadow var(--dur-normal) var(--ease-standard),
              transform var(--dur-normal) var(--ease-standard);
}

.orbit-pub-service-card:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.orbit-pub-service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: #fff;
  flex-shrink: 0;
}

.orbit-pub-service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
}

.orbit-pub-service-card__icon--navy { background: var(--navy-600); }
.orbit-pub-service-card__icon--orange { background: var(--orange-500); }
.orbit-pub-service-card__icon--teal { background: var(--teal-600); }

.orbit-pub-service-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-snug);
  margin: 0 0 var(--sp-2);
}

.orbit-pub-service-card p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--fg-2);
  margin: 0 0 var(--sp-4);
}

.orbit-pub-service-card__tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.orbit-pub-service-card__tag {
  padding: 2px var(--sp-2);
  background: var(--slate-75);
  color: var(--fg-2);
  font-size: 11px;
  border-radius: var(--r-xs);
  font-weight: var(--fw-medium);
  font-family: var(--font-mono);
}


/* ============================================================
   7. CLIENT LOGOS
   ============================================================ */
.orbit-pub-logos {
  padding: var(--sp-7) 0;
  background: var(--slate-50);
  border-bottom: 1px solid var(--border-subtle);
}

.orbit-pub-logos__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
}

.orbit-pub-logos__label {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-inline-end: var(--sp-5);
}

.orbit-pub-client-logo {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 17px;
  color: var(--fg-3);
  letter-spacing: var(--ls-snug);
  opacity: 0.75;
  transition: opacity var(--dur-normal) var(--ease-standard);
}

.orbit-pub-client-logo:hover {
  opacity: 1;
}

.orbit-pub-client-logo img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter var(--dur-normal) var(--ease-standard),
              opacity var(--dur-normal) var(--ease-standard);
}

.orbit-pub-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.orbit-pub-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.orbit-pub-testimonial {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  display: flex;
  flex-direction: column;
}

.orbit-pub-testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
}

.orbit-pub-testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--orange-500);
  stroke: none;
}

.orbit-pub-testimonial__quote {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--fg-1);
  margin: 0 0 var(--sp-6);
  flex: 1;
}

.orbit-pub-testimonial__quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--navy-200);
  line-height: 0;
  vertical-align: -0.3em;
  margin-inline-end: var(--sp-1);
}

.orbit-pub-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}

.orbit-pub-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--navy-600);
  flex-shrink: 0;
}

.orbit-pub-testimonial__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.orbit-pub-testimonial__name {
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  color: var(--fg-1);
}

.orbit-pub-testimonial__role {
  font-size: var(--fs-sm);
  color: var(--fg-2);
  margin-top: 1px;
}


/* ============================================================
   9. STATS COUNTERS
   ============================================================ */
.orbit-pub-stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
  padding: var(--sp-10) 0;
}

.orbit-pub-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.orbit-pub-stat__number {
  font-family: var(--font-display);
  font-size: var(--fs-6xl);
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-tight);
  color: var(--navy-600);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.orbit-pub-stat__label {
  font-size: var(--fs-base);
  color: var(--fg-2);
  margin-top: var(--sp-2);
  font-weight: var(--fw-medium);
}


/* ============================================================
   10. CTA BAND
   ============================================================ */
.orbit-pub-cta {
  background: var(--navy-800);
  color: #fff;
  padding: var(--sp-11) 0;
  position: relative;
  overflow: hidden;
}

.orbit-pub-cta::before {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: url("/orbit_portal/static/src/orbit-it-design-system/project/assets/orbit-mark.png") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.orbit-pub-cta .orbit-pub-container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--sp-7);
  align-items: center;
  flex-wrap: wrap;
}

.orbit-pub-cta h2 {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-tight);
  margin: 0;
  line-height: var(--lh-snug);
  flex: 1;
  color: #fff;
}

.orbit-pub-cta__actions {
  display: flex;
  gap: var(--sp-3);
}


/* ============================================================
   11. FOOTER
   ============================================================ */
.orbit-pub-footer {
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.65);
  padding: var(--sp-10) 0 var(--sp-7);
  font-size: 13.5px;
}

.orbit-pub-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}

.orbit-pub-footer a:hover {
  color: var(--orange-400);
}

.orbit-pub-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}

.orbit-pub-footer__col h5 {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 var(--sp-4);
}

.orbit-pub-footer__col a {
  display: block;
  padding: var(--sp-1) 0;
  font-size: 13.5px;
}

/* Footer about column */
.orbit-pub-footer__about-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-4);
}

.orbit-pub-footer__about p {
  margin: 0 0 var(--sp-4);
  line-height: var(--lh-relaxed);
  max-width: 300px;
  color: rgba(255, 255, 255, 0.55);
}

.orbit-pub-footer__locations {
  display: flex;
  gap: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* Footer bottom bar */
.orbit-pub-footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}


/* ============================================================
   12. CAREERS / JOB LISTINGS
   ============================================================ */
.orbit-pub-job-filters {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}

.orbit-pub-job-filters select,
.orbit-pub-job-filters input {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  color: var(--fg-1);
  transition: border-color var(--dur-fast) var(--ease-standard);
}

.orbit-pub-job-filters select:focus,
.orbit-pub-job-filters input:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: var(--shadow-focus);
}

.orbit-pub-job-card {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-3);
  transition: border-color var(--dur-normal) var(--ease-standard),
              box-shadow var(--dur-normal) var(--ease-standard);
}

.orbit-pub-job-card:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-sm);
}

.orbit-pub-job-card__info {
  flex: 1;
}

.orbit-pub-job-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--fg-1);
  margin: 0 0 var(--sp-1);
}

.orbit-pub-job-card__meta {
  display: flex;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--fg-2);
  flex-wrap: wrap;
}

.orbit-pub-job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}

.orbit-pub-job-card__meta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.orbit-pub-job-card__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.orbit-pub-job-card__badge--dept {
  background: var(--navy-50);
  color: var(--navy-600);
}

.orbit-pub-job-card__badge--type {
  background: var(--teal-50);
  color: var(--teal-700);
}


/* ============================================================
   13. CONTACT FORM
   ============================================================ */
.orbit-pub-contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.orbit-pub-contact-form label {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--fg-1);
}

.orbit-pub-contact-form input,
.orbit-pub-contact-form textarea,
.orbit-pub-contact-form select {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-default);
  border-radius: var(--r-md);
  background: var(--bg-surface);
  color: var(--fg-1);
  transition: border-color var(--dur-fast) var(--ease-standard),
              box-shadow var(--dur-fast) var(--ease-standard);
}

.orbit-pub-contact-form input::placeholder,
.orbit-pub-contact-form textarea::placeholder {
  color: var(--fg-3);
}

.orbit-pub-contact-form input:focus,
.orbit-pub-contact-form textarea:focus,
.orbit-pub-contact-form select:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: var(--shadow-focus);
}

.orbit-pub-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.orbit-pub-contact-form .orbit-pub-btn {
  align-self: flex-start;
}

/* Form row for side-by-side fields */
.orbit-pub-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}


/* ============================================================
   14. ABOUT PAGE
   ============================================================ */

/* --- Timeline --- */
.orbit-pub-timeline {
  position: relative;
  padding-inline-start: var(--sp-8);
}

.orbit-pub-timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-default);
}

.orbit-pub-timeline__item {
  position: relative;
  padding-bottom: var(--sp-8);
}

.orbit-pub-timeline__item:last-child {
  padding-bottom: 0;
}

.orbit-pub-timeline__item::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(-1 * var(--sp-8) + 6px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy-600);
  border: 2px solid var(--bg-surface);
  box-shadow: 0 0 0 2px var(--navy-600);
}

.orbit-pub-timeline__year {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--orange-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.orbit-pub-timeline__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--fg-1);
  margin: 0 0 var(--sp-2);
}

.orbit-pub-timeline__desc {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--fg-2);
  margin: 0;
  max-width: 520px;
}

/* --- Values Grid --- */
.orbit-pub-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.orbit-pub-value-card {
  padding: var(--sp-6);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  text-align: center;
}

.orbit-pub-value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  background: var(--navy-50);
  color: var(--navy-600);
}

.orbit-pub-value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.orbit-pub-value-card h4 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  margin: 0 0 var(--sp-2);
}

.orbit-pub-value-card p {
  font-size: var(--fs-base);
  color: var(--fg-2);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* --- Team Grid --- */
.orbit-pub-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.orbit-pub-team-member {
  text-align: center;
}

.orbit-pub-team-member__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  background: var(--slate-75);
  margin-bottom: var(--sp-4);
  overflow: hidden;
}

.orbit-pub-team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-pub-team-member__name {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-semi);
  color: var(--fg-1);
  margin: 0 0 2px;
}

.orbit-pub-team-member__role {
  font-size: var(--fs-sm);
  color: var(--fg-2);
}


/* ============================================================
   15. SCROLL REVEAL ANIMATIONS
   ============================================================ */
/* All content visible. Scroll-reveal disabled for reliability in Odoo's frontend. */
.orbit-reveal {
  opacity: 1;
  transform: none;
}

/* Stagger children when parent is revealed */
.orbit-reveal-group.visible .orbit-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms var(--ease-out),
              transform 600ms var(--ease-out);
}

.orbit-reveal-group.visible .orbit-reveal:nth-child(1) { transition-delay: 0ms; }
.orbit-reveal-group.visible .orbit-reveal:nth-child(2) { transition-delay: 80ms; }
.orbit-reveal-group.visible .orbit-reveal:nth-child(3) { transition-delay: 160ms; }
.orbit-reveal-group.visible .orbit-reveal:nth-child(4) { transition-delay: 240ms; }
.orbit-reveal-group.visible .orbit-reveal:nth-child(5) { transition-delay: 320ms; }
.orbit-reveal-group.visible .orbit-reveal:nth-child(6) { transition-delay: 400ms; }


/* ============================================================
   16. RTL SUPPORT
   ============================================================ */
[dir="rtl"] .orbit-pub-hero__title,
[dir="rtl"] .orbit-pub-section__head h2,
[dir="rtl"] .orbit-pub-cta h2 {
  letter-spacing: 0;
}

[dir="rtl"] .orbit-pub-timeline {
  padding-inline-start: var(--sp-8);
  padding-inline-end: 0;
}


/* ============================================================
   17. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .orbit-pub-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-pub-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-pub-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }

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

  .orbit-pub-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-pub-hero__title {
    font-size: var(--fs-6xl);
  }

  .orbit-pub-hero__stats {
    gap: var(--sp-6);
  }

  .orbit-pub-stat__number {
    font-size: var(--fs-5xl);
  }
}


/* ============================================================
   18. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .orbit-pub-container {
    padding-inline: var(--sp-5);
  }

  /* --- Nav mobile --- */
  .orbit-pub-links {
    display: none;
    position: absolute;
    top: 64px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-default);
    flex-direction: column;
    padding: var(--sp-4) var(--sp-5);
    gap: 0;
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .orbit-pub-links.open {
    display: flex;
  }

  .orbit-pub-link {
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: var(--fs-md);
  }

  .orbit-pub-link:last-child {
    border-bottom: none;
  }

  .orbit-pub-link.active::after {
    display: none;
  }

  .orbit-pub-hamburger {
    display: flex;
  }

  .orbit-pub-nav-right .orbit-pub-btn--ghost {
    display: none;
  }

  /* --- Hero mobile --- */
  .orbit-pub-hero {
    padding: var(--sp-10) 0 var(--sp-10);
  }

  .orbit-pub-hero__title {
    font-size: var(--fs-5xl);
  }

  .orbit-pub-hero__lede {
    font-size: var(--fs-lg);
  }

  .orbit-pub-hero__stats {
    gap: var(--sp-5);
  }

  .orbit-pub-hero__stat-value {
    font-size: var(--fs-2xl);
  }

  /* --- Sections mobile --- */
  .orbit-pub-section {
    padding: var(--sp-10) 0;
  }

  .orbit-pub-section__head h2 {
    font-size: var(--fs-4xl);
  }

  /* --- Grids mobile --- */
  .orbit-pub-services-grid {
    grid-template-columns: 1fr;
  }

  .orbit-pub-testimonials {
    grid-template-columns: 1fr;
  }

  .orbit-pub-stats {
    gap: var(--sp-7);
  }

  .orbit-pub-stat__number {
    font-size: var(--fs-4xl);
  }

  .orbit-pub-footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .orbit-pub-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .orbit-pub-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-pub-values-grid {
    grid-template-columns: 1fr;
  }

  /* --- CTA mobile --- */
  .orbit-pub-cta .orbit-pub-container {
    flex-direction: column;
    text-align: center;
  }

  .orbit-pub-cta h2 {
    font-size: var(--fs-3xl);
  }

  .orbit-pub-cta__actions {
    justify-content: center;
  }

  /* --- Careers mobile --- */
  .orbit-pub-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-3);
  }

  /* --- Contact form mobile --- */
  .orbit-pub-contact-form__row {
    grid-template-columns: 1fr;
  }

  /* --- Logos mobile --- */
  .orbit-pub-logos__inner {
    gap: var(--sp-5);
  }

  .orbit-pub-logos__label {
    width: 100%;
    text-align: center;
    margin-inline-end: 0;
  }
}


/* ============================================================
   19. ACCESSIBILITY
   ============================================================ */

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .orbit-reveal {
    opacity: 1;
    transform: none;
  }

  .orbit-reveal.visible {
    transition: none;
  }

  .orbit-reveal-group.visible .orbit-reveal {
    transition: none;
  }

  .orbit-pub-service-card:hover {
    transform: none;
  }
}

/* Skip link (should be placed as first child of .orbit-public) */
.orbit-pub-skip-link {
  position: absolute;
  inset-inline-start: -9999px;
  top: var(--sp-2);
  z-index: 200;
  padding: var(--sp-2) var(--sp-4);
  background: var(--navy-600);
  color: #fff;
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  text-decoration: none;
}

.orbit-pub-skip-link:focus {
  inset-inline-start: var(--sp-4);
}


/* ============================================================
   21. MOOD PULSE MODAL
   ============================================================ */
.orbit-mood-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 31, 56, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-mood-card {
  background: var(--bg-surface, #ffffff);
  max-width: 420px;
  width: 100%;
  padding: var(--sp-8, 24px);
  border-radius: var(--r-xl, 12px);
  box-shadow: var(--shadow-xl, 0 12px 40px rgba(0, 0, 0, 0.25));
  text-align: center;
  position: relative;
}

.orbit-mood-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #1F3A5F;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.6;
  transition: all 0.15s ease;
}
.orbit-mood-close:hover {
  opacity: 1;
  background: rgba(31, 58, 95, 0.08);
}

.orbit-mood-card h2 {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--navy-700);
  margin: 0 0 var(--sp-2);
}

.orbit-mood-card p {
  color: var(--fg-2);
  font-size: var(--fs-base);
  margin: 0 0 var(--sp-7);
}

.orbit-mood-faces {
  display: flex;
  gap: var(--sp-6);
  justify-content: center;
}

.orbit-mood-btn {
  width: 80px;
  height: 80px;
  border: 2px solid var(--border-default);
  border-radius: 50%;
  cursor: pointer;
  background: var(--bg-surface);
  transition: all var(--dur-normal) var(--ease-standard);
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  /* Body font (Tajawal etc.) carries no emoji glyphs — force the
     platform emoji stack so the smileys actually render. */
  font-family: "Apple Color Emoji", "Segoe UI Emoji",
               "Noto Color Emoji", "Twemoji Mozilla", "Android Emoji",
               "EmojiOne Color", sans-serif;
  font-variant-emoji: emoji;
}

.orbit-mood-btn span {
  font-family: inherit;
  line-height: 1;
}

.orbit-mood-btn:hover {
  border-color: var(--navy-600);
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.orbit-mood-btn:active {
  transform: scale(0.95);
}

.orbit-mood-btn--happy:hover {
  border-color: var(--orange-500);
}

.orbit-mood-btn--sad:hover {
  border-color: var(--teal-600);
}

.orbit-mood-card.submitted {
  animation: orbit-mood-fadeout 400ms ease-out forwards;
}

@keyframes orbit-mood-fadeout {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}


/* ============================================================
   22. MY SNAPSHOT STRIP
   ============================================================ */
.orbit-snapshot {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--sp-5) 0;
}

.orbit-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.orbit-snapshot__card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--bg-sunken);
}

.orbit-snapshot__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.orbit-snapshot__card-icon--leave {
  background: var(--navy-50);
  color: var(--navy-600);
}

.orbit-snapshot__card-icon--holiday {
  background: var(--orange-50);
  color: var(--orange-600);
}

.orbit-snapshot__card-icon--pending {
  background: var(--teal-50);
  color: var(--teal-600);
}

.orbit-snapshot__card-icon--attendance {
  background: #e6f6ee;
  color: var(--success);
}

.orbit-snapshot__card-value {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  color: var(--fg-1);
}

.orbit-snapshot__card-label {
  font-size: var(--fs-xs);
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
}

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

@media (max-width: 480px) {
  .orbit-snapshot__grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   23. PEOPLE & CULTURE SECTION
   ============================================================ */
.orbit-people {
  padding: var(--sp-9) 0;
  background: var(--bg-page);
}

.orbit-people__section {
  margin-bottom: var(--sp-7);
}

.orbit-people__section-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semi);
  color: var(--fg-1);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* --- Winner Cards (Employee/Manager of the Month) --- */
.orbit-winner-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-5);
  align-items: center;
}

.orbit-winner-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--orange-200);
}

.orbit-winner-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-winner-card__info h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin: 0;
}

.orbit-winner-card__info .role {
  font-size: var(--fs-sm);
  color: var(--fg-2);
}

.orbit-winner-card__info .story {
  font-size: var(--fs-base);
  color: var(--fg-1);
  margin-top: var(--sp-2);
}

.orbit-winner-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
  background: var(--orange-50);
  color: var(--orange-600);
}

.orbit-winners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

/* --- Birthday / New Hire Cards --- */
.orbit-people-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.orbit-people-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.orbit-people-card__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.orbit-people-card__name {
  font-weight: var(--fw-medium);
  font-size: var(--fs-base);
}

.orbit-people-card__detail {
  font-size: var(--fs-xs);
  color: var(--fg-2);
}

.orbit-people-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

/* Auto-scrolling horizontal strip (birthdays, new hires) */
.orbit-scroll-strip {
  overflow: hidden;
  position: relative;
}

.orbit-scroll-strip__track {
  display: flex;
  gap: var(--sp-4);
  animation: orbit-scroll-strip 25s linear infinite;
  width: max-content;
}

.orbit-scroll-strip:hover .orbit-scroll-strip__track {
  animation-play-state: paused;
}

.orbit-scroll-strip__card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  flex-shrink: 0;
  min-width: 220px;
}

@keyframes orbit-scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-scroll-strip__track {
    animation: none;
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

@media (max-width: 1024px) {
  .orbit-people-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .orbit-people-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-winners-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Kudos Wall --- */
.orbit-kudos-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
}

.orbit-kudos-card__header {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  margin-bottom: var(--sp-2);
}

.orbit-kudos-card__arrow {
  color: var(--fg-3);
  font-size: var(--fs-sm);
}

.orbit-kudos-card__message {
  font-size: var(--fs-sm);
  color: var(--fg-1);
  font-style: italic;
}

.orbit-kudos-card__category {
  display: inline-block;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  background: var(--teal-50);
  color: var(--teal-600);
}

.orbit-kudos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-3);
}


/* ============================================================
   24. COMPANY PULSE SECTION
   ============================================================ */
.orbit-pulse-section {
  padding: var(--sp-7) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* --- Announcement Ticker --- */
.orbit-ticker {
  overflow: hidden;
  white-space: nowrap;
  padding: var(--sp-3);
  background: var(--navy-800);
  color: #fff;
  font-size: var(--fs-sm);
}

.orbit-ticker__track {
  display: inline-flex;
  gap: var(--sp-8);
  width: max-content;
  animation: orbit-ticker-scroll 30s linear infinite;
}

.orbit-ticker:hover .orbit-ticker__track {
  animation-play-state: paused;
}

.orbit-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.orbit-ticker__badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

.orbit-ticker__badge--urgent {
  background: var(--orange-500);
  color: #fff;
}

.orbit-ticker__badge--high {
  background: var(--orange-200);
  color: var(--orange-700);
}

@keyframes orbit-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ticker__track {
    animation: none;
    overflow-x: auto;
  }
}

/* --- Holiday List --- */
.orbit-holidays-strip {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  padding: var(--sp-2) 0;
  scrollbar-width: thin;
}

.orbit-holiday-chip {
  flex-shrink: 0;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.orbit-holiday-chip__date {
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--navy-600);
}

.orbit-holiday-chip__name {
  font-size: var(--fs-xs);
  color: var(--fg-2);
}

/* --- Event Strip --- */
.orbit-events-strip {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  padding: var(--sp-2) 0;
  scrollbar-width: thin;
}

.orbit-event-chip {
  flex-shrink: 0;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.orbit-event-chip__date {
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--navy-600);
}

.orbit-event-chip__name {
  font-size: var(--fs-xs);
  color: var(--fg-2);
}

/* --- Gallery --- */
.orbit-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}

.orbit-gallery-thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}

.orbit-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-normal) var(--ease-standard);
}

.orbit-gallery-thumb:hover img {
  transform: scale(1.03);
}

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


/* ============================================================
   25. CEO MESSAGE
   ============================================================ */
.orbit-ceo {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.orbit-ceo__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.orbit-ceo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-ceo__content blockquote {
  font-size: var(--fs-lg);
  color: var(--fg-1);
  font-style: italic;
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--sp-3);
}

.orbit-ceo__author {
  font-weight: var(--fw-semi);
  color: var(--fg-1);
}

.orbit-ceo__title {
  font-size: var(--fs-sm);
  color: var(--fg-2);
}


/* ============================================================
   26. QUICK LINKS BAR
   ============================================================ */
.orbit-quick-links {
  padding: var(--sp-5) 0;
}

.orbit-quick-links__grid {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.orbit-quick-link-tile {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: var(--fg-1);
  transition: all var(--dur-fast) var(--ease-standard);
}

.orbit-quick-link-tile:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-sm);
  color: var(--navy-600);
}

.orbit-quick-link-tile__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-600);
  flex-shrink: 0;
}

.orbit-quick-link-tile__label {
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
}


/* ============================================================
   27. SELF SERVICE DROPDOWN
   ============================================================ */
.orbit-pub-dropdown {
  position: relative;
}

.orbit-pub-dropdown__menu {
  position: absolute;
  top: 100%;
  inset-inline-end: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--dur-normal) var(--ease-standard);
  z-index: 200;
}

.orbit-pub-dropdown:hover .orbit-pub-dropdown__menu,
.orbit-pub-dropdown__menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.orbit-pub-dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--fg-1);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard);
}

.orbit-pub-dropdown__item:hover {
  background: var(--bg-sunken);
}

[dir="rtl"] .orbit-pub-dropdown__menu {
  inset-inline-end: 0;
}


/* ============================================================
   20. PRINT STYLES
   ============================================================ */
@media print {
  .orbit-pub-header,
  .orbit-pub-footer,
  .orbit-pub-cta,
  .orbit-pub-hamburger,
  .orbit-lang-toggle {
    display: none;
  }

  .orbit-pub-hero {
    background: #fff;
    color: var(--fg-1);
    padding: var(--sp-5) 0;
  }

  .orbit-pub-hero__title {
    color: var(--fg-1);
    font-size: var(--fs-4xl);
  }

  .orbit-pub-section {
    padding: var(--sp-6) 0;
  }
}
