/* Al Shayan — Human Consult inspired HR consultancy UI */

:root {
  --as-navy: #1a2b4a;
  --as-navy-soft: #2a3f66;
  --as-purple: #7b2d8e;
  --as-blue: #2e9fe0;
  --as-blue-dark: #1f87c4;
  --as-magenta: #e23a8a;
  --as-white: #ffffff;
  --as-bg: #f4f7fb;
  --as-muted: #617289;
  --as-text: #243247;
  --as-border: rgba(26, 43, 74, 0.1);
  --as-radius: 14px;
  --as-radius-sm: 10px;
  --as-shadow: 0 12px 36px rgba(26, 43, 74, 0.08);
  --as-shadow-lg: 0 22px 50px rgba(26, 43, 74, 0.14);
  --as-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --as-font-ar: "IBM Plex Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif;
  --as-max: 1160px;
  --as-header-h: 86px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--as-font);
  color: var(--as-text);
  background: var(--as-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.rtl { font-family: var(--as-font-ar); }

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

a {
  color: var(--as-blue);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a:hover { color: var(--as-blue-dark); }

h1, h2, h3, h4 {
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 0.55em;
  color: var(--as-navy);
}

p { margin: 0 0 1em; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--as-max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--as-border);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: var(--as-header-h);
}

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

.site-brand__logo {
  height: 58px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}

.nav-primary { justify-self: center; }

.nav-primary ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-primary a {
  display: inline-block;
  color: var(--as-navy-soft);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
}

.nav-primary .current-menu-item > a,
.nav-primary a:hover {
  color: var(--as-blue);
  background: rgba(46, 159, 224, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: var(--as-bg);
  border: 1px solid var(--as-border);
}

.lang-switch__link { color: var(--as-muted); }
.lang-switch__link.is-active,
.lang-switch__link:hover { color: var(--as-blue); }
.lang-switch__sep { color: #c5ceda; }

.menu-toggle {
  display: none;
  border: 1px solid var(--as-border);
  background: var(--as-white);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--as-navy);
  margin: 3px 0;
  border-radius: 2px;
}

/* Buttons — solid single color */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--as-blue);
  color: var(--as-white);
  box-shadow: 0 8px 20px rgba(46, 159, 224, 0.28);
}

.btn--primary:hover {
  background: var(--as-blue-dark);
  color: var(--as-white);
  transform: translateY(-1px);
}

.btn--header {
  padding: 0.7rem 1.1rem;
  font-size: 0.86rem;
}

.btn--light {
  background: var(--as-white);
  color: var(--as-navy);
}

.btn--light:hover {
  color: var(--as-blue);
  background: #f3f8fc;
}

.btn--outline {
  background: transparent;
  color: var(--as-blue);
  border-color: rgba(46, 159, 224, 0.45);
}

.btn--outline:hover {
  background: var(--as-blue);
  color: var(--as-white);
}

.btn--dark {
  background: var(--as-navy);
  color: var(--as-white);
}

.btn--dark:hover {
  background: var(--as-navy-soft);
  color: var(--as-white);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--as-blue);
}

.text-link:hover { color: var(--as-blue-dark); }

/* Hero photo */
.hero--photo {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--as-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 43, 74, 0.88) 8%, rgba(26, 43, 74, 0.62) 48%, rgba(46, 159, 224, 0.28) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--as-max));
  margin-inline: auto;
  padding: 5.5rem 0 6.5rem;
}

.hero__copy { max-width: 38rem; }

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dff2fb;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: as-rise 0.8s ease 0.05s forwards;
}

.hero__brand {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--as-white);
  margin: 0 0 0.9rem;
  opacity: 0;
  transform: translateY(16px);
  animation: as-rise 0.85s ease 0.12s forwards;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.6rem;
  max-width: 34rem;
  opacity: 0;
  transform: translateY(16px);
  animation: as-rise 0.85s ease 0.24s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(16px);
  animation: as-rise 0.85s ease 0.36s forwards;
}

@keyframes as-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--as-white); }
.section--soft { background: var(--as-bg); }

.section--overlap {
  padding: 0 0 2rem;
  margin-top: -3.25rem;
  position: relative;
  z-index: 2;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--as-blue);
  margin-bottom: 0.65rem;
}

.section__eyebrow--light { color: #cfefff; }

.section__title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  max-width: 18ch;
}

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

.section__head--center .section__title,
.section__head--center .section__lead {
  margin-inline: auto;
}

.section__lead {
  max-width: 40rem;
  color: var(--as-muted);
  font-size: 1.05rem;
}

.section__head { margin-bottom: 2.25rem; }

.section__cta {
  margin-top: 2rem;
  text-align: center;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.45rem 1.35rem;
  box-shadow: var(--as-shadow-lg);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--as-blue);
  margin-bottom: 0.25rem;
}

.stat-card span {
  color: var(--as-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Split about */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--as-shadow-lg);
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-inline-start: 1.7rem;
  font-weight: 600;
  color: var(--as-navy);
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--as-blue);
  box-shadow: 0 0 0 4px rgba(46, 159, 224, 0.15);
}

/* Feature cards */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.feature-card,
.media-card,
.card {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  overflow: hidden;
  box-shadow: var(--as-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.feature-card:hover,
.media-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--as-shadow-lg);
}

.feature-card__media,
.media-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-card__media img,
.media-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-card:hover .feature-card__media img,
.media-card:hover .media-card__media img {
  transform: scale(1.04);
}

.feature-card__body,
.media-card__body {
  padding: 1.4rem 1.35rem 1.5rem;
}

.card__label,
.service-item__tier {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--as-blue);
  margin-bottom: 0.45rem;
}

.feature-card h3,
.media-card h3,
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.feature-card p,
.media-card p,
.card p {
  color: var(--as-muted);
  margin: 0;
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.step-card {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.6rem 1.35rem;
  box-shadow: var(--as-shadow);
}

.step-card__num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--as-blue);
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  color: var(--as-muted);
}

/* Markets */
.markets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  max-width: 760px;
  margin-inline: auto;
}

.market-chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--as-radius);
  background: var(--as-white);
  border: 1px solid var(--as-border);
  box-shadow: var(--as-shadow);
  font-weight: 700;
  color: var(--as-navy);
}

.market-chip__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(46, 159, 224, 0.12);
  color: var(--as-blue);
  font-weight: 800;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* Photo band / GYC */
.band--photo {
  position: relative;
  padding: 4.5rem 0;
  color: var(--as-white);
  background:
    linear-gradient(105deg, rgba(26, 43, 74, 0.9), rgba(26, 43, 74, 0.72)),
    var(--band-image) center/cover no-repeat;
}

.band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.band--photo h2 {
  color: var(--as-white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 16ch;
}

.band--photo p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.25rem;
  background:
    linear-gradient(105deg, rgba(26, 43, 74, 0.88), rgba(26, 43, 74, 0.7)),
    url("../images/cta.jpg") center/cover no-repeat;
  color: var(--as-white);
}

.page-hero h1 {
  color: var(--as-white);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  max-width: 16ch;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  font-size: 1.08rem;
  margin: 0;
}

/* Content */
.prose { max-width: 42rem; }
.prose h2 { margin-top: 2rem; }
.prose ul {
  padding-inline-start: 1.2rem;
  color: var(--as-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.about-aside,
.contact-card,
.contact-form-wrap {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.5rem;
  box-shadow: var(--as-shadow);
}

.about-aside dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--as-muted);
  margin-top: 1rem;
}

.about-aside dt:first-child { margin-top: 0; }

.about-aside dd {
  margin: 0.25rem 0 0;
  font-weight: 700;
  color: var(--as-navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card { display: grid; gap: 1.1rem; }

.contact-row a {
  color: var(--as-navy);
  font-weight: 700;
}

.contact-row a:hover { color: var(--as-blue); }

.contact-row span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--as-muted);
  margin-bottom: 0.25rem;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--as-navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius-sm);
  font: inherit;
  background: var(--as-bg);
  color: var(--as-text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(46, 159, 224, 0.35);
  border-color: var(--as-blue);
  background: var(--as-white);
}

.contact-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-alert {
  padding: 0.9rem 1rem;
  border-radius: var(--as-radius-sm);
  font-size: 0.95rem;
}

.form-alert--success { background: #e8f6ee; color: #14532d; }
.form-alert--error { background: #fdecec; color: #7f1d1d; }

.map-link { display: inline-flex; margin-top: 0.35rem; }

.support-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.support-list li {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius-sm);
  padding: 0.95rem 1.1rem;
  color: var(--as-navy);
  font-weight: 600;
  box-shadow: var(--as-shadow);
}

/* Footer */
.site-footer {
  background: #111b2e;
  color: rgba(255, 255, 255, 0.72);
  padding: 3.25rem 0 1.75rem;
}

.site-footer a { color: rgba(255, 255, 255, 0.88); }
.site-footer a:hover { color: var(--as-blue); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-block;
  background: var(--as-white);
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.95rem;
}

.footer-logo img {
  height: 52px;
  width: auto;
}

.footer-col h3 {
  color: #9fd6f5;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.social-links__item:hover {
  color: #fff;
  background: var(--as-blue);
  border-color: var(--as-blue);
}

.social-links__item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-card .social-links__item,
.card .social-links__item {
  background: var(--as-bg);
  border-color: var(--as-border);
  color: var(--as-navy);
}

.contact-card .social-links__item:hover,
.card .social-links__item:hover {
  background: var(--as-blue);
  border-color: var(--as-blue);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* WhatsApp */
.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.wa-float:hover {
  color: #fff;
  transform: translateY(-2px);
  background: #1ebe57;
}

.wa-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* GYC card fallback (inner pages) */
.gyc-cta.card {
  display: grid;
  grid-template-columns: 1.35fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
}

.gyc-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--as-blue);
  color: var(--as-white);
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 0.85rem;
}

.section--gyc { padding-top: 1rem; }

/* Map */
.map-embed {
  border-radius: var(--as-radius);
  overflow: hidden;
  border: 1px solid var(--as-border);
  box-shadow: var(--as-shadow);
  background: var(--as-bg);
  aspect-ratio: 16 / 9;
  min-height: 320px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 320px;
}

/* Clients marquee */
.clients-strip-section { overflow: hidden; }

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin: 0.5rem 0 0.25rem;
}

.clients-marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: as-marquee 35s linear infinite;
}

.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}

@keyframes as-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

.clients-marquee__item {
  flex: 0 0 auto;
  width: 180px;
  height: 96px;
  display: grid;
  place-items: center;
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius-sm);
  padding: 0.85rem 1rem;
  box-shadow: var(--as-shadow);
  color: var(--as-navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.clients-marquee__item img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.client-card {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.35rem;
  box-shadow: var(--as-shadow);
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--as-shadow-lg);
  color: inherit;
}

.client-card__logo {
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: var(--as-bg);
  border-radius: var(--as-radius-sm);
  padding: 0.75rem;
}

.client-card__logo img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.client-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.client-card p {
  margin: 0;
  color: var(--as-muted);
  font-size: 0.92rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  margin: 0;
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--as-shadow);
}

.review-card__quote {
  color: var(--as-navy);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0.75rem 0 1rem;
}

.review-card footer {
  display: grid;
  gap: 0.15rem;
}

.review-card footer strong {
  color: var(--as-navy);
}

.review-card footer span {
  color: var(--as-muted);
  font-size: 0.88rem;
}

.stars { letter-spacing: 0.08em; font-size: 1rem; }
.stars__on { color: #f5b301; }
.stars__off { color: #d5dde8; }

/* Jobs archive — Human Consult style */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.88); }
.breadcrumbs a:hover { color: #fff; }

.section--jobs { background: var(--as-bg); }

.jobs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.jobs-sidebar {
  display: grid;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--as-header-h) + 1rem);
}

.jobs-widget,
.jobs-cta-box {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--as-shadow);
}

.jobs-widget__title,
.jobs-cta-box h3 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.jobs-widget__field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--as-navy);
}

.jobs-widget__field span { color: var(--as-muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; }

.jobs-widget select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--as-border);
  background: var(--as-bg);
  font: inherit;
  color: var(--as-text);
}

.jobs-widget__reset {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.jobs-cta-box p {
  color: var(--as-muted);
  font-size: 0.94rem;
  margin: 0 0 1rem;
}

.jobs-cta-box--soft {
  background: linear-gradient(180deg, #f7fbfe, #fff);
}

.jobs-count {
  margin: 0 0 1rem;
  color: var(--as-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.jobs-list {
  display: grid;
  gap: 1.15rem;
}

.job-list-item {
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  padding: 1.5rem 1.45rem 1.25rem;
  box-shadow: var(--as-shadow);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.job-list-item:hover,
.job-list-item.is-featured {
  border-color: rgba(46, 159, 224, 0.35);
  box-shadow: var(--as-shadow-lg);
}

.job-list-item__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.job-list-item__category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--as-blue);
  margin-bottom: 0.35rem;
}

.job-list-item__title {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.job-list-item__title a { color: var(--as-navy); }
.job-list-item__title a:hover { color: var(--as-blue); }

.job-list-item__company {
  margin: 0;
  color: var(--as-muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.job-list-item__apply {
  flex-shrink: 0;
  padding: 0.7rem 1.15rem;
}

.job-list-item__excerpt,
.job-list-item__full p {
  margin: 0 0 0.65rem;
  color: var(--as-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.job-list-item__toggle {
  border: 0;
  background: none;
  padding: 0;
  color: var(--as-blue);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: inherit;
}

.job-list-item__toggle:hover { color: var(--as-blue-dark); }

.job-features {
  margin: 1rem 0 0.5rem;
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius-sm);
  overflow: hidden;
  background: var(--as-bg);
}

.job-features h3 {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--as-border);
  background: var(--as-white);
}

.job-features table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.job-features th,
.job-features td {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--as-border);
  text-align: start;
}

.job-features th {
  width: 38%;
  color: var(--as-navy);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.65);
}

.job-features td { color: var(--as-muted); }

.job-list-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--as-border);
}

.job-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--as-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.job-meta svg {
  width: 16px;
  height: 16px;
  fill: var(--as-blue);
  flex-shrink: 0;
}

.empty-state {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: var(--as-white);
  border: 1px solid var(--as-border);
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow);
}

.empty-state h2 { margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 1024px) {
  .site-header__inner { grid-template-columns: auto auto; }

  .nav-primary {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--as-white);
    border-bottom: 1px solid var(--as-border);
    padding: 0.85rem 1rem 1.15rem;
    box-shadow: var(--as-shadow);
  }

  .nav-primary.is-open { display: block; }

  .nav-primary ul {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toggle { display: inline-block; }
  .site-header__inner { position: relative; }

  .btn--header {
    font-size: 0.78rem;
    padding: 0.62rem 0.85rem;
  }
}

@media (max-width: 900px) {
  .trust-strip,
  .split,
  .pillars,
  .service-grid,
  .steps,
  .markets,
  .about-grid,
  .contact-layout,
  .gyc-cta.card,
  .footer-grid,
  .band__inner,
  .clients-grid,
  .reviews-grid,
  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .jobs-sidebar { position: static; }

  .job-list-item__header {
    flex-direction: column;
  }

  .job-list-item__apply { align-self: flex-start; }

  .band__inner { display: grid; }

  .hero--photo { min-height: 70vh; }
  .hero__inner { padding: 4rem 0 5.5rem; }
  .section--overlap { margin-top: -2.5rem; }
  .split__media img { min-height: 260px; }
  .wa-float span { display: none; }
}

@media (max-width: 520px) {
  .site-brand__logo {
    height: 48px;
    max-width: 150px;
  }

  .btn--header {
    max-width: 9.5rem;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
    padding: 0.55rem 0.7rem;
  }
}
