/* =================================================================
   WATSONS GROUP: Clinical Sanctuary: Premium Edition
================================================================= */

/* -- Tokens ------------------------------------------------------ */
:root {
  --primary:             #005b93;
  --primary-container:   #0c74b8;
  --secondary:           #8e4f00;
  --secondary-container: #ff930e;
  --surface:             #f7f9ff;
  --surface-low:         #f0f4fb;
  --surface-mid:         #e8eef7;
  --surface-high:        #dde5f2;
  --surface-highest:     #d1daec;
  --surface-lowest:      #ffffff;
  --on-primary:          #ffffff;
  --on-surface:          #111d35;
  --on-surface-var:      #2d4065;
  --outline-var:         rgba(45, 64, 101, 0.12);

  --shadow-sm:  0 8px 24px rgba(17,29,53,0.06), 0 2px 6px rgba(17,29,53,0.04);
  --shadow-md:  0 24px 48px rgba(17,29,53,0.09), 0 6px 14px rgba(17,29,53,0.06);
  --shadow-lg:  0 40px 72px rgba(17,29,53,0.12), 0 12px 24px rgba(17,29,53,0.08);
  --shadow-xl:  0 64px 96px rgba(17,29,53,0.16), 0 20px 40px rgba(17,29,53,0.1);

  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;
  --radius-full: 999px;

  --nav-h:  5rem;
  --max-w:  1280px;
  --pad:    clamp(1.5rem, 5vw, 3.5rem);
}

/* -- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* -- Base -------------------------------------------------------- */
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-surface);
  background: var(--surface);
  overflow-x: hidden;
}

/* -- Layout ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section       { padding: 8rem 0; }
.section--md   { padding: 6rem 0; }
.section--sm   { padding: 4rem 0; }

/* -- Navigation -------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 249, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.nav.is-scrolled { box-shadow: 0 1px 0 rgba(17,29,53,0.08), var(--shadow-sm); }

.nav--hero-top {
  background: rgba(10, 20, 45, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav--hero-top.is-scrolled { box-shadow: none; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: filter 0.4s ease;
}
.nav--hero-top .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--on-surface-var);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.22s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width 0.28s ease;
}
.nav__link:hover,
.nav__link.is-active { color: var(--primary); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }

.nav--hero-top .nav__link       { color: rgba(255,255,255,0.78); }
.nav--hero-top .nav__link::after { background: #fff; }
.nav--hero-top .nav__link:hover,
.nav--hero-top .nav__link.is-active { color: #fff; }

.nav__cta { margin-left: 2rem; }

.nav--hero-top .btn-primary {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  box-shadow: none;
}
.nav--hero-top .btn-primary:hover {
  background: rgba(255,255,255,0.22);
  box-shadow: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav--hero-top .nav__hamburger span { background: #fff; }
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* -- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary-container);
  color: #fff;
  box-shadow: 0 6px 20px rgba(12,116,184,0.35);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(12,116,184,0.48); }

.btn-accent {
  background: var(--secondary-container);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,147,14,0.32);
}
.btn-accent:hover { box-shadow: 0 10px 28px rgba(255,147,14,0.46); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  box-shadow: inset 0 0 0 1.5px var(--outline-var);
}
.btn-ghost:hover { background: var(--surface-low); }

.btn-light {
  background: #fff;
  color: var(--on-surface);
  box-shadow: 0 6px 20px rgba(17,29,53,0.14);
}
.btn-light:hover { box-shadow: 0 10px 28px rgba(17,29,53,0.22); }

.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.88);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.8125rem;
}

/* -- Eyebrow ----------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-container);
  margin-bottom: 1rem;
}

/* -- HERO (full-bleed photo) ------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(8, 22, 50, 0.91) 0%,
    rgba(8, 22, 50, 0.78) 38%,
    rgba(8, 22, 50, 0.28) 100%
  );
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(8,22,50,0.55) 0%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  animation: fadeUp 0.65s ease 0.2s both;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2.25rem;
  height: 1.5px;
  background: var(--secondary-container);
  border-radius: 99px;
  flex-shrink: 0;
}

.hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.5rem, 7.5vw, 6.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 2rem;
  max-width: 13ch;
  animation: fadeUp 0.75s ease 0.35s both;
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  max-width: 46ch;
  margin-bottom: 3rem;
  animation: fadeUp 0.75s ease 0.5s both;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.75s ease 0.65s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 1s ease 1.2s both;
}
.hero__scroll-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1.5px;
  height: 3.5rem;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 99px;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollDot 2s ease-in-out 1.5s infinite;
}

@keyframes scrollDot {
  from { transform: translateY(0); }
  to   { transform: translateY(200%); }
}

/* -- Stats Dark -------------------------------------------------- */
.stats-dark {
  background: var(--on-surface);
  padding: 6rem 0;
}

.stats-dark__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stats-dark__numbers {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-dark {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.stat-dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 30%;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.stat-dark:last-child::after { display: none; }
.stat-dark:first-child { padding-top: 0; }

.stat-dark__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-dark__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-dark__map {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stats-dark__map img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  border-radius: var(--radius-xl);
}

/* -- Brand Marquee ----------------------------------------------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-section {
  background: var(--surface-lowest);
  padding: 4rem 0;
  overflow: hidden;
}

.marquee-section__label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-surface-var);
  opacity: 0.38;
  margin-bottom: 2.5rem;
}

.marquee__track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }

.marquee__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.marquee__logo:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

/* -- Split Dramatic (home community section) --------------------- */
.split-drama {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 88vh;
}

.split-drama__visual {
  position: relative;
  overflow: hidden;
  background: var(--surface-mid);
}
.split-drama__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 9s ease;
}
.split-drama:hover .split-drama__visual img {
  transform: scale(1.04);
}

.split-drama__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem max(var(--pad), calc((100vw - var(--max-w)) / 2 + var(--pad))) 6rem 5rem;
  background: var(--surface-lowest);
}
.split-drama__text .eyebrow { margin-bottom: 1.25rem; }

.split-drama__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--on-surface);
  margin-bottom: 1.75rem;
}

.split-drama__quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.55;
  padding-left: 1.5rem;
  border-left: 3px solid var(--secondary-container);
  margin-bottom: 2rem;
}

.split-drama__body {
  font-size: 1rem;
  color: var(--on-surface-var);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

.split-drama__cta {
  margin-top: 0.75rem;
}

/* -- Values Grid (premium cards) --------------------------------- */
.values-section { background: var(--surface-low); }

.section-header {
  text-align: center;
  max-width: 58ch;
  margin-inline: auto;
  margin-bottom: 4rem;
}
.section-header .eyebrow { display: block; margin-bottom: 1rem; }
.section-header__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-header__body {
  font-size: 1rem;
  color: var(--on-surface-var);
  line-height: 1.78;
}

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

.value-card {
  background: var(--surface-lowest);
  border-radius: var(--radius-xl);
  padding: 3rem 3rem 2.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-container), var(--secondary-container));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card:hover::before { transform: scaleX(1); }

.value-card__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--secondary-container);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(12,116,184,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-container);
  font-size: 1.375rem;
  margin-bottom: 1.75rem;
}

.value-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
}

.value-card__body {
  font-size: 0.9375rem;
  color: var(--on-surface-var);
  line-height: 1.75;
}

/* -- CTA Dark (navy, no image) ----------------------------------- */
.cta-dark {
  background: var(--on-surface);
  position: relative;
  overflow: hidden;
}
.cta-dark__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-dark__orb--1 {
  width: 700px; height: 700px;
  top: -60%; right: -10%;
  background: radial-gradient(circle, rgba(12,116,184,0.12) 0%, transparent 70%);
}
.cta-dark__orb--2 {
  width: 450px; height: 450px;
  bottom: -60%; left: 5%;
  background: radial-gradient(circle, rgba(255,147,14,0.08) 0%, transparent 70%);
}
.cta-dark__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-dark__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}
.cta-dark__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.78;
  max-width: 52ch;
  margin: 0 auto 3rem;
}
.cta-dark__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -- Page Hero (inner pages with photo) -------------------------- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: 5.5rem;
  overflow: hidden;
}
.page-hero--tall { min-height: 72vh; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(8, 22, 50, 0.88) 0%,
    rgba(8, 22, 50, 0.72) 45%,
    rgba(8, 22, 50, 0.38) 100%
  );
}
.page-hero__overlay::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(8,22,50,0.5) 0%, transparent 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-hero__watermark {
  position: absolute;
  right: 2%;
  bottom: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: min(18rem, 24vw);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.06em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 2;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.15s both;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1.5px;
  background: var(--secondary-container);
  border-radius: 99px;
}
.page-hero__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  max-width: 18ch;
  animation: fadeUp 0.7s ease 0.28s both;
}
.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  max-width: 52ch;
  animation: fadeUp 0.7s ease 0.42s both;
}

/* -- Standard split (about/partner page sections) --------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.split--reverse .split__visual { order: 2; }
.split--reverse .split__text   { order: 1; }

.split__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--surface-mid);
}
.split__visual--portrait  { aspect-ratio: 3/4; }
.split__visual--landscape { aspect-ratio: 16/10; }
.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__text { }

.split__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.split__quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.55;
  padding-left: 1.5rem;
  border-left: 3px solid var(--secondary-container);
  margin-bottom: 2rem;
}

.split__body {
  font-size: 1rem;
  color: var(--on-surface-var);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 52ch;
}

.split__cta { margin-top: 1rem; }

/* -- Opening Statement ------------------------------------------- */
.opening-statement {
  background: var(--surface-lowest);
  padding: 6rem 0;
}
.opening-statement__inner {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}
.opening-statement__quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--on-surface);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.opening-statement__quote span { color: var(--primary-container); }
.opening-statement__attr {
  font-size: 0.875rem;
  color: var(--on-surface-var);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* -- Benefits (Careers) ------------------------------------------ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--surface-lowest);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-container), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255,147,14,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-container);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.benefit-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 0.625rem;
}

.benefit-card__body {
  font-size: 0.9rem;
  color: var(--on-surface-var);
  line-height: 1.7;
}

/* -- Role Tiles (Careers) ---------------------------------------- */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.role-tile {
  background: var(--surface-low);
  border-radius: var(--radius-lg);
  padding: 1.625rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: background 0.22s, transform 0.22s;
  cursor: default;
}
.role-tile:hover {
  background: var(--surface-mid);
  transform: translateX(5px);
}
.role-tile__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(12,116,184,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.0625rem;
}
.role-tile__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.2rem;
}
.role-tile__tag {
  font-size: 0.8rem;
  color: var(--on-surface-var);
}

/* -- Partnership Items ------------------------------------------- */
.partnership-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.partnership-item {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  background: var(--surface-low);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  transition: background 0.22s;
}
.partnership-item:hover { background: var(--surface-mid); }

.partnership-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(12,116,184,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 0.9375rem;
  margin-top: 1px;
}

.partnership-item__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--on-surface);
  margin-bottom: 0.3rem;
}
.partnership-item__desc {
  font-size: 0.875rem;
  color: var(--on-surface-var);
  line-height: 1.6;
}

/* -- Contact ----------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 6rem;
  align-items: start;
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-container);
  margin-bottom: 1rem;
}
.contact-info__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--on-surface);
  margin-bottom: 1rem;
}
.contact-info__body {
  font-size: 1rem;
  color: var(--on-surface-var);
  line-height: 1.78;
  margin-bottom: 2.5rem;
}

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-chip {
  padding: 0.4rem 0.875rem;
  background: var(--surface-low);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--on-surface-var);
}

/* -- Form -------------------------------------------------------- */
.form-card {
  background: var(--surface-lowest);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-xl);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--on-surface-var);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  background: var(--surface-high);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--on-surface);
  outline: none;
  transition: background 0.22s, box-shadow 0.22s;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232d4065'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 22px;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--surface-lowest);
  box-shadow: 0 0 0 2.5px rgba(12,116,184,0.3);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-group input[type="file"] {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; padding-block: 1rem; }

/* -- Footer ------------------------------------------------------ */
.footer {
  background: var(--on-surface);
  padding: 5.5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 5rem;
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.72;
  max-width: 26ch;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
}
.footer__social-link:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav-col strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer__nav-col li { margin-bottom: 0.625rem; }
.footer__nav-col li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer__nav-col li a:hover { color: rgba(255,255,255,0.82); }

.footer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.footer__brand-chip {
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  transition: background 0.2s, color 0.2s;
}
.footer__brand-chip:hover {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy    { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.22); font-style: italic; }

/* -- Animations -------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__cta, .hero__scroll,
  .page-hero__eyebrow, .page-hero__title, .page-hero__sub {
    animation: none;
  }
  .split-drama__visual img { transition: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line::after { animation: none; }
}

/* -- Responsive: Tablet ------------------------------------------ */
@media (max-width: 1080px) {
  .split-drama { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-dark__inner { gap: 3rem; }
}

/* -- Responsive: Mobile ------------------------------------------ */
@media (max-width: 768px) {
  :root { --pad: 1.5rem; --nav-h: 4.25rem; }

  .section     { padding: 5rem 0; }
  .section--md { padding: 4rem 0; }
  .section--sm { padding: 3rem 0; }

  /* Nav */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(247, 249, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem var(--pad) 2rem;
  }
  .nav__links.is-open { display: flex; }
  .nav--hero-top .nav__links { background: rgba(10, 22, 50, 0.97); }
  .nav__link {
    width: 100%;
    padding: 0.875rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(45,64,101,0.07);
  }
  .nav--hero-top .nav__links .nav__link { border-color: rgba(255,255,255,0.08); }
  .nav__cta { margin-left: 0; margin-top: 1.25rem; width: 100%; }
  .nav__cta .btn { width: 100%; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; padding-bottom: 5rem; }
  .hero__scroll { display: none; }

  /* Stats dark */
  .stats-dark__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-dark__map { display: none; }
  .stats-dark__numbers { gap: 0; }

  /* Split drama */
  .split-drama { grid-template-columns: 1fr; min-height: auto; }
  .split-drama__visual { aspect-ratio: 4/3; }
  .split-drama__text {
    padding: 4rem var(--pad);
  }

  /* Standard split */
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse .split__visual { order: unset; }
  .split--reverse .split__text   { order: unset; }
  .split__visual--portrait { aspect-ratio: 4/3; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 2.5rem 2rem; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Roles */
  .roles-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 3.5rem; }

  /* Form */
  .form-card { padding: 2rem 1.5rem; }
  .form-row  { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav-grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Page hero */
  .page-hero { min-height: 55vh; padding-bottom: 4rem; }
  .page-hero__watermark { display: none; }
}
