/* ── ROOT ── */
:root {
  --clr-primary: #1A3C5E;
  --clr-primary-light: #2563A8;
  --clr-accent: #E8A020;
  --clr-accent-light: #F5C842;
  --clr-dark: #0D1F2D;
  --clr-surface: #F7F9FC;
  --clr-white: #FFFFFF;
  --clr-text: #1C2D3A;
  --clr-text-muted: #5A7184;
  --clr-border: #D8E4EF;
  --clr-success: #1E8B5A;
  --clr-error: #C0392B;
  --grad-hero: linear-gradient(135deg, #0D1F2D 0%, #1A3C5E 55%, #2563A8 100%);
  --grad-accent: linear-gradient(135deg, #E8A020, #F5C842);
  --ff-display: 'Playfair Display', serif;
  --ff-heading: 'Raleway', sans-serif;
  --ff-body: 'Source Sans 3', sans-serif;
  --shadow-sm: 0 2px 8px rgba(26, 60, 94, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 60, 94, 0.14);
  --shadow-lg: 0 16px 48px rgba(26, 60, 94, 0.2);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-dark)
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: .75rem
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--clr-dark);
  margin-bottom: .75rem
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 60ch;
  line-height: 1.8
}

/* ── LAYOUT ── */
.container {
  width: 90%;
  max-width: 1180px;
  margin-inline: auto
}

.section {
  padding: 5rem 0
}

.section--alt {
  background: var(--clr-surface)
}

.text-center {
  text-align: center
}

.text-center .section-subtitle {
  margin-inline: auto
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center
}

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

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--ff-heading);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 50px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease)
}

.btn--primary {
  background: var(--grad-accent);
  color: var(--clr-dark);
  box-shadow: 0 4px 16px rgba(232, 160, 32, .35)
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 160, 32, .5)
}

.btn--outline {
  border: 2px solid var(--clr-white);
  color: var(--clr-white)
}

.btn--outline:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px)
}

.btn--dark {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-md)
}

.btn--dark:hover {
  background: var(--clr-primary-light);
  transform: translateY(-2px)
}

.btn--sm {
  padding: .6rem 1.4rem;
  font-size: .85rem
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease)
}

.navbar.scrolled {
  background: rgba(13, 31, 45, .97);
  backdrop-filter: blur(16px);
  padding: .75rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25)
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .75rem
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-dark);
  flex-shrink: 0
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.logo-text span:first-child {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-white);
  letter-spacing: .04em
}

.logo-text span:last-child {
  font-size: .68rem;
  color: var(--clr-accent);
  letter-spacing: .12em;
  text-transform: uppercase
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.nav-link {
  font-family: var(--ff-heading);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .04em;
  padding: .3rem 0;
  position: relative;
  transition: color .2s;
  cursor: pointer
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: width .4s var(--ease)
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-accent-light)
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform .2s, opacity .2s
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 45, .98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem
}

.mobile-menu.open {
  display: flex
}

.mobile-nav-link {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
  cursor: pointer
}

.mobile-nav-link:hover {
  color: var(--clr-accent-light)
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: color .2s
}

.mobile-close:hover {
  color: var(--clr-accent)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(37, 99, 168, .3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(232, 160, 32, .15) 0%, transparent 50%);
  pointer-events: none
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 4rem
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232, 160, 32, .15);
  border: 1px solid rgba(232, 160, 32, .4);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-accent-light);
  margin-bottom: 1rem
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.3)
  }
}

.hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 1.25rem
}

.hero__heading .accent-word {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 50ch
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.hero__stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent-light);
  line-height: 1
}

.hero__stat-label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
  letter-spacing: .06em
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero__img-frame {
  position: relative;
  width: 100%;
  max-width: 480px
}

.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem
}

.hero__float-card.card--tl {
  top: 2rem;
  left: -2rem;
  animation: floatY 4s ease-in-out infinite
}

.hero__float-card.card--br {
  bottom: 3rem;
  right: -2rem;
  animation: floatY 4s ease-in-out 2s infinite
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.float-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

.float-icon--gold {
  background: rgba(232, 160, 32, .15)
}

.float-icon--blue {
  background: rgba(37, 99, 168, .12)
}

.float-card-title {
  font-weight: 700;
  font-size: .85rem;
  color: var(--clr-dark)
}

.float-card-sub {
  font-size: .72rem;
  color: var(--clr-text-muted)
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 3
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px
}

.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, .6);
  border-radius: 2px;
  animation: scrollDot 2s infinite
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0)
  }

  100% {
    opacity: 0;
    transform: translateY(12px)
  }
}

/* ── HERO ANIMATIONS ── */
.hero__content>* {
  opacity: 0;
  animation: heroReveal .8s var(--ease) forwards
}

.hero__content>*:nth-child(1) {
  animation-delay: .2s
}

.hero__content>*:nth-child(2) {
  animation-delay: .4s
}

.hero__content>*:nth-child(3) {
  animation-delay: .6s
}

.hero__content>*:nth-child(4) {
  animation-delay: .8s
}

.hero__content>*:nth-child(5) {
  animation-delay: 1s
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero__visual {
  opacity: 0;
  animation: heroReveal 1s var(--ease) .5s forwards
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.feature-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  box-shadow: 0 4px 20px rgba(26, 60, 94, .08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease)
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.feature-card:hover::before {
  transform: scaleX(1)
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26, 60, 94, .08), rgba(37, 99, 168, .12));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem
}

.feature-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: .5rem
}

.feature-desc {
  font-size: .92rem;
  color: var(--clr-text-muted);
  line-height: 1.7
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--grad-hero);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--clr-white);
  margin-bottom: .75rem;
  position: relative;
  z-index: 1
}

.page-hero p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-inline: auto;
  position: relative;
  z-index: 1
}

.page-hero .section-tag {
  position: relative;
  z-index: 1
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 4rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 160, 32, .12) 0%, transparent 60%);
  pointer-events: none
}

.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--clr-white);
  margin-bottom: .75rem;
  font-style: italic
}

.cta-banner p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 2rem;
  max-width: 55ch;
  margin-inline: auto
}

/* ── ABOUT ── */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

.mv-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 5px solid;
  box-shadow: 0 4px 20px rgba(26, 60, 94, .08)
}

.mv-card--mission {
  border-color: var(--clr-accent)
}

.mv-card--vision {
  border-color: var(--clr-primary-light)
}

.mv-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem
}

.mv-card__title {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: .5rem
}

.mv-card__text {
  color: var(--clr-text-muted);
  font-size: .95rem;
  line-height: 1.8
}

.values-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md)
}

.values-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-white);
  font-size: .95rem
}

.values-table th {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--ff-heading);
  font-weight: 700;
  letter-spacing: .04em
}

.values-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top
}

.values-table tr:last-child td {
  border-bottom: none
}

.values-table tr:nth-child(even) td {
  background: var(--clr-surface)
}

.val-name {
  font-weight: 700;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: .5rem
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

.culture-card {
  text-align: center;
  padding: 2rem;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(26, 60, 94, .08);
  transition: transform .4s var(--ease)
}

.culture-card:hover {
  transform: translateY(-6px)
}

.culture-card__icon {
  font-size: 2.5rem;
  margin-bottom: .75rem
}

.culture-card__title {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-dark);
  margin-bottom: .4rem
}

.culture-card__desc {
  font-size: .88rem;
  color: var(--clr-text-muted)
}

/* ── CAREERS ── */
.job-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 2.5rem
}

.job-card__header {
  background: var(--grad-hero);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem
}

.job-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--clr-white);
  margin-bottom: .5rem
}

.job-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap
}

.job-badge {
  background: rgba(255, 255, 255, .15);
  color: var(--clr-white);
  padding: .35rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem
}

.job-badge--accent {
  background: var(--clr-accent);
  color: var(--clr-dark)
}

.job-card__body {
  padding: 2.5rem
}

.job-section {
  margin-bottom: 2rem
}

.job-section-title {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--clr-border)
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.job-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--clr-text)
}

.job-list li::before {
  content: '▸';
  color: var(--clr-accent);
  font-size: .8rem;
  margin-top: 4px;
  flex-shrink: 0
}

.domain-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.domain-tag {
  background: rgba(26, 60, 94, .07);
  color: var(--clr-primary);
  border: 1px solid rgba(26, 60, 94, .15);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600
}

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--clr-surface);
  padding: 1rem;
  border-radius: var(--radius-md)
}

.why-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0
}

.why-item-text {
  font-size: .9rem;
  color: var(--clr-text-muted)
}

.why-item-text strong {
  display: block;
  color: var(--clr-dark);
  font-weight: 700;
  margin-bottom: .2rem
}

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

.comp-item {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border-left: 4px solid var(--clr-accent)
}

.comp-item strong {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: .25rem
}

.comp-item span {
  font-size: .9rem;
  color: var(--clr-text-muted)
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.contact-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(26, 60, 94, .08);
  border-top: 4px solid var(--clr-accent)
}

.contact-card__icon {
  font-size: 1.8rem;
  margin-bottom: .75rem
}

.contact-card__label {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: .25rem
}

.contact-card__value {
  font-size: 1rem;
  color: var(--clr-dark);
  font-weight: 600
}

.contact-card__sub {
  font-size: .85rem;
  color: var(--clr-text-muted);
  margin-top: .2rem
}

.form-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md)
}

.form-group {
  margin-bottom: 1.25rem
}

.form-label {
  display: block;
  font-family: var(--ff-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: .4rem;
  letter-spacing: .03em
}

.form-label .req {
  color: var(--clr-accent)
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  transition: border-color .2s, box-shadow .2s;
  outline: none
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--clr-primary-light);
  box-shadow: 0 0 0 4px rgba(37, 99, 168, .1);
  background: #fff
}

.form-input.err,
.form-textarea.err {
  border-color: var(--clr-error)
}

.form-textarea {
  resize: vertical;
  min-height: 130px
}

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

.form-msg {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  margin-top: .75rem;
  align-items: center;
  gap: .5rem
}

.form-msg.success {
  display: flex;
  background: rgba(30, 139, 90, .1);
  color: var(--clr-success);
  border: 1px solid rgba(30, 139, 90, .3)
}

.form-msg.error {
  display: flex;
  background: rgba(192, 57, 43, .1);
  color: var(--clr-error);
  border: 1px solid rgba(192, 57, 43, .3)
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: var(--grad-hero);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--ff-heading);
  font-weight: 700;
  letter-spacing: .05em;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: var(--shadow-md)
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-inline: auto
}

.btn-submit.loading .btn-text {
  display: none
}

.btn-submit.loading .spinner {
  display: block
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(26, 60, 94, .07);
  color: var(--clr-primary);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600
}

/* ── PLACEHOLDER IMAGES ── */
.img-ph {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl)
}

.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 20px 20px
}

.ph-icon {
  font-size: 3rem;
  opacity: .5;
  position: relative;
  z-index: 1
}

.img-ph span {
  position: relative;
  z-index: 1
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 10rem 0 5rem
}

.legal-page h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-dark);
  margin-bottom: .5rem
}

.legal-meta {
  color: var(--clr-text-muted);
  font-size: .9rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--clr-border)
}

.legal-section {
  margin-bottom: 2.5rem
}

.legal-section h2 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--clr-border)
}

.legal-section p {
  color: var(--clr-text-muted);
  line-height: 1.9;
  margin-bottom: .75rem
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-top: .5rem
}

.legal-section ul li {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: .4rem;
  list-style: disc
}

/* ── FOOTER ── */
.footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, .75);
  padding-top: 5rem
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer__brand {
  max-width: 320px
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem
}

.footer__tagline {
  font-family: var(--ff-heading);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: .75rem
}

.footer__desc {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 1.25rem
}

.footer__social {
  display: flex;
  gap: .65rem
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: background .2s, color .2s, transform .2s;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: .85rem
}

.social-btn:hover {
  background: var(--clr-accent);
  color: var(--clr-dark);
  transform: translateY(-2px)
}

.footer__col-title {
  font-family: var(--ff-heading);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-white);
  margin-bottom: 1.25rem
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.footer__links a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s, padding-left .2s;
  cursor: pointer
}

.footer__links a:hover {
  color: var(--clr-accent-light);
  padding-left: 6px
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55)
}

.ci-icon {
  flex-shrink: 0;
  color: var(--clr-accent);
  margin-top: 1px
}

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35)
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: color .2s;
  cursor: pointer
}

.footer__bottom-links a:hover {
  color: var(--clr-accent)
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

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

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

/* ── PAGE TRANSITION ── */
#page-content {
  transition: opacity .3s var(--ease), transform .3s var(--ease)
}

/* ── COMING SOON ── */
.coming-soon {
  text-align: center;
  padding: 5rem 1.5rem
}

.coming-soon__icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  opacity: .7
}

.coming-soon h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--clr-dark);
  margin-bottom: .75rem
}

.coming-soon p {
  color: var(--clr-text-muted);
  max-width: 50ch;
  margin-inline: auto
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }
}

@media(max-width:768px) {

  .navbar__nav,
  .navbar__cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 7rem 0 4rem
  }

  .hero__visual {
    order: -1
  }

  .hero__sub {
    margin-inline: auto
  }

  .hero__actions {
    justify-content: center
  }

  .hero__stats {
    justify-content: center
  }

  .hero__float-card {
    display: none
  }

  .hero__img-frame {
    max-width: 300px;
    margin-inline: auto
  }

  .features-grid,
  .grid-3,
  .culture-grid,
  .comp-grid {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr
  }

  .mission-vision {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .footer__brand {
    max-width: 100%
  }

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

  .footer__bottom-links {
    justify-content: center
  }

  .why-join-grid {
    grid-template-columns: 1fr
  }

  .job-card__header {
    flex-direction: column
  }

  .cta-banner {
    padding: 2.5rem 1.5rem
  }

  .section {
    padding: 3.5rem 0
  }

  .page-hero {
    padding: 8rem 0 4rem
  }
}

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

  .hero__stats {
    flex-direction: column;
    gap: 1rem
  }

  .form-card,
  .job-card__body {
    padding: 1.5rem
  }
}