/* ============================================
   Exegesis Hire — Main Stylesheet
   Color: Deep Navy + Teal + Orange
   ============================================ */

/* ── Variables ── */
:root {
  --primary:       #0f172a;
  --primary-soft:  #1e293b;
  --teal:          #0d9488;
  --teal-light:    #14b8a6;
  --teal-50:       #f0fdfa;
  --teal-100:      #ccfbf1;
  --orange:        #ea580c;
  --orange-hover:  #c2410c;
  --text:          #334155;
  --text-muted:    #64748b;
  --text-light:    #94a3b8;
  --border:        #e2e8f0;
  --border-light:  #f1f5f9;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md:  0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.03);
  --radius:     12px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --transition: all .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 0.95rem; }
p  { line-height: 1.7; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5rem 0; }
.section--alt  { background: var(--off-white); }
.section--teal { background: var(--teal-50); }
.section--dark { background: var(--primary); color: var(--white); }

/* ── Section Header ── */
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-100);
  padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; transition: var(--transition); line-height: 1;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(234,88,12,.35); }
.btn--outline  { border: 2px solid rgba(255,255,255,.4); color: var(--white); }
.btn--outline:hover  { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--teal  { background: var(--teal); color: var(--white); }
.btn--teal:hover  { background: #0f766e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(13,148,136,.35); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,23,42,.97); backdrop-filter: blur(12px);
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; }
.nav__logo-img  { height: 32px; width: auto; display: block; }
.nav__logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; }
.nav__logo-text em { color: var(--teal-light); font-style: normal; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.7); transition: var(--transition); }
.nav__links a:hover { color: var(--white); }
.nav__cta { display: flex; gap: .75rem; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background:
    linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(19,78,74,.92) 100%),
    url('../img/hero.jpg') center / cover no-repeat;
  padding: 6rem 0 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(20,184,166,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(20,184,166,.15); border: 1px solid rgba(20,184,166,.3);
  color: #5eead4; font-size: .82rem; font-weight: 600;
  padding: .45rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #14b8a6; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -.03em;
}
.hero__title span { color: #5eead4; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-bottom: 2rem; line-height: 1.7; max-width: 480px; }

.hero__perks { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero__perk { display: flex; align-items: center; gap: .45rem; font-size: .875rem; color: rgba(255,255,255,.8); font-weight: 500; }
.hero__perk svg { color: #14b8a6; flex-shrink: 0; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right-side stat card */
.hero__card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem; backdrop-filter: blur(8px);
}
.hero__card-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 1.5rem; }
.hero__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero__stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 1.25rem;
}
.hero__stat-val { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: .3rem; }
.hero__stat-val em { color: #14b8a6; font-style: normal; }
.hero__stat-label { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust { background: var(--primary-soft); padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust__item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.65); font-size: .875rem; font-weight: 500; }
.trust__item svg { color: var(--teal-light); }

/* ══════════════════════════════════════
   OPEN POSITIONS
══════════════════════════════════════ */
.positions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.position-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; transition: var(--transition); position: relative; overflow: hidden;
}
.position-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transition: transform .3s ease;
}
.position-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--teal); }
.position-card:hover::before { transform: scaleX(1); }

.position-card__tags { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tag { font-size: .72rem; font-weight: 700; letter-spacing: .05em; padding: .25rem .65rem; border-radius: 999px; }
.tag--remote  { background: #dbeafe; color: #1d4ed8; }
.tag--green   { background: #dcfce7; color: #15803d; }
.tag--orange  { background: #ffedd5; color: #c2410c; }
.tag--purple  { background: #ede9fe; color: #6d28d9; }
.tag--teal    { background: var(--teal-100); color: #0f766e; }
.tag--blue    { background: #e0f2fe; color: #0369a1; }

.position-card__title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.position-card__desc  { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.position-card__pay   { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.position-card__rate  { font-size: .95rem; font-weight: 700; color: var(--teal); }
.position-card__apply { font-size: .82rem; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: .25rem; transition: var(--transition); }
.position-card__apply:hover { gap: .5rem; }

/* ══════════════════════════════════════
   ELIGIBILITY NOTICE
══════════════════════════════════════ */
.eligibility { background: #fffbeb; border-top: 3px solid #f59e0b; padding: 1.25rem 0; }
.eligibility__inner { display: flex; align-items: flex-start; gap: 1rem; }
.eligibility__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.eligibility p { font-size: .875rem; color: #92400e; line-height: 1.6; }
.eligibility strong { font-weight: 700; }

/* ══════════════════════════════════════
   APPLICATION FORM
══════════════════════════════════════ */
.apply { background: linear-gradient(135deg, var(--teal-50) 0%, #ecfdf5 100%); }
.apply__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; }
.apply__left h2 { margin-bottom: 1rem; }
.apply__left p  { color: var(--text-muted); margin-bottom: 2rem; }
.apply__checklist { display: flex; flex-direction: column; gap: .75rem; }
.apply__check {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; font-weight: 500; color: var(--text);
}
.apply__check-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}

.form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-card h3 { margin-bottom: .35rem; font-size: 1.3rem; }
.form-subtitle { color: var(--text-muted); font-size: .875rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--primary); margin-bottom: .4rem; letter-spacing: .02em;
}
.form-input, .form-select {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .9rem; font-family: inherit; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.1);
}
.form-input::placeholder { color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.phone-input {
  display: flex; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  transition: var(--transition);
}
.phone-input:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.1); }
.phone-prefix {
  display: flex; align-items: center; gap: .35rem;
  padding: .7rem .85rem; background: var(--off-white);
  border-right: 1.5px solid var(--border);
  font-size: .875rem; font-weight: 600; color: var(--text); white-space: nowrap; flex-shrink: 0;
}
.phone-input input { border: none; outline: none; padding: .7rem 1rem; font-size: .9rem; font-family: inherit; color: var(--text); width: 100%; background: transparent; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.form-submit {
  width: 100%; padding: .95rem;
  background: var(--teal); color: var(--white); border: none;
  border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); margin-top: .5rem; letter-spacing: .01em;
}
.form-submit:hover  { background: #0f766e; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(13,148,136,.3); }
.form-submit:active { transform: translateY(0); }
.form-note { text-align: center; font-size: .78rem; color: var(--text-light); margin-top: .75rem; }

.form-success { text-align: center; padding: 3rem 2rem; display: none; }
.form-success__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: #dcfce7; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.75rem;
}
.form-success h3 { margin-bottom: .5rem; color: var(--primary); }
.form-success p { color: var(--text-muted); font-size: .9rem; }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: start; }
.about__right  { display: flex; flex-direction: column; gap: 1.75rem; }
.about__text h2 { margin-bottom: 1rem; }
.about__text > p { color: var(--text-muted); margin-bottom: 2rem; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── About image box ── */
.about__img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--teal-50);
  border: 2px dashed rgba(13,148,136,.35);
}
.about__img-real {
  display: none; /* hidden until onload fires img-loaded class */
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg);
}
.about__img-box.img-loaded .about__img-real  { display: block; }
.about__img-box.img-loaded .about__img-ph    { display: none; }
.about__img-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; text-align: center; padding: 2rem; color: var(--teal);
}
.about__img-ph p    { font-size: .82rem; font-weight: 500; color: var(--text-muted); line-height: 1.5; }
.about__img-ph code {
  display: inline-block; margin-top: .25rem;
  background: var(--teal-100); color: var(--teal); border-radius: 5px;
  padding: .15rem .5rem; font-size: .75rem; font-family: 'Courier New', monospace;
}
.about__feature {
  padding: 1.25rem; background: var(--off-white);
  border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition);
}
.about__feature:hover { border-color: var(--teal); background: var(--teal-50); }
.about__feature-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--teal-100); display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: .75rem;
}
.about__feature h4 { margin-bottom: .3rem; }
.about__feature p  { font-size: .82rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats { background: var(--primary); padding: 3.5rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stats__val {
  font-size: 2.75rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: .5rem;
}
.stats__val em { color: var(--teal-light); font-style: normal; }
.stats__label { font-size: .875rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative;
}
.process__grid::before {
  content: ''; position: absolute;
  top: 2.5rem; left: calc(16.66% + 1.5rem); right: calc(16.66% + 1.5rem);
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--teal-light)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--teal);
  color: var(--white); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; box-shadow: 0 0 0 6px var(--teal-100);
}
.process-step h3 { margin-bottom: .5rem; }
.process-step p  { font-size: .9rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit-card {
  padding: 1.75rem; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--teal); }
.benefit-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 1.1rem;
}
.benefit-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.benefit-card p  { font-size: .875rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--border); transition: var(--transition); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: var(--teal-100); font-family: Georgia, serif;
  line-height: 1; pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-card__quote { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; color: white; flex-shrink: 0;
}
.testimonial-card__name { font-size: .875rem; font-weight: 700; color: var(--primary); }
.testimonial-card__role { font-size: .78rem; color: var(--text-muted); }
.avatar--teal   { background: var(--teal); }
.avatar--orange { background: var(--orange); }
.avatar--blue   { background: #3b82f6; }
.avatar--purple { background: #7c3aed; }
.avatar--green  { background: #16a34a; }
.avatar--pink   { background: #ec4899; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq__list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--teal); }
.faq-item.open  { border-color: var(--teal); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; cursor: pointer; font-size: .95rem; font-weight: 600; color: var(--primary); gap: 1rem;
}
.faq-chevron {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease; color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--teal-100); color: var(--teal); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.faq__footer { text-align: center; margin-top: 2.5rem; }
.faq__footer p { color: var(--text-muted); margin-bottom: 1rem; font-size: .9rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--primary); padding: 3rem 0 1.5rem; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .footer-logo { display: inline-flex; align-items: center; margin-bottom: .75rem; }
.footer-logo-img  { height: 28px; width: auto; display: block; }
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 280px; }
.footer__col h5 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer__col ul li a:hover { color: var(--white); }
.footer__disclaimer {
  background: rgba(255,255,255,.04); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin: 0 0 2rem;
  font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6;
  border: 1px solid rgba(255,255,255,.06);
}
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; font-size: .78rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: .5rem;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .positions__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card  { display: none; }
  .apply__inner { grid-template-columns: 1fr; }
  .apply__left  { text-align: center; }
  .apply__checklist { align-items: center; }
  .benefits__grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .section { padding: 3.5rem 0; }
  .positions__grid { grid-template-columns: 1fr; }
  .about__inner    { grid-template-columns: 1fr; }
  .about__img-box  { max-width: 480px; width: 100%; }
  .about__features { grid-template-columns: 1fr 1fr; }
  .process__grid   { grid-template-columns: 1fr; }
  .process__grid::before { display: none; }
  .benefits__grid    { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .stats__grid  { grid-template-columns: 1fr; gap: 1.25rem; }
  .form-row     { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .trust__inner { gap: 1.5rem; justify-content: flex-start; }
}
