/* ═══════════════════════════════════════════════════════════
   APEX OFFICE — Production CSS
   Typography:  Unbounded (headings) + Nunito (body)
   Palette:     #030207 bg · #F37200 accent · #FFFFFF text
   BEM Architecture — Mobile-first responsive
═══════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ────────────────────────────── */
:root {
  /* Colors */
  --c-bg:           #030207;
  --c-bg-2:         #07060e;
  --c-bg-surface:   #0d0b17;
  --c-bg-card:      rgba(255, 255, 255, 0.035);
  --c-border:       rgba(255, 255, 255, 0.07);
  --c-border-hover: rgba(243, 114, 0, 0.35);
  --c-white:        #ffffff;
  --c-white-80:     rgba(255, 255, 255, 0.80);
  --c-white-50:     rgba(255, 255, 255, 0.50);
  --c-white-25:     rgba(255, 255, 255, 0.25);
  --c-accent:       #F37200;
  --c-accent-dim:   rgba(243, 114, 0, 0.15);
  --c-accent-glow:  rgba(243, 114, 0, 0.25);

  /* Typography */
  --f-display:  'Unbounded', sans-serif;
  --f-body:     'Nunito', sans-serif;

  /* Spacing */
  --sp-xs:   8px;
  --sp-sm:   16px;
  --sp-md:   24px;
  --sp-lg:   40px;
  --sp-xl:   64px;
  --sp-2xl:  96px;
  --sp-3xl:  128px;

  /* Layout */
  --max-w:   1280px;
  --gutter:  clamp(20px, 5vw, 80px);
  --sec-py:  clamp(72px, 10vw, 120px);

  /* Radii */
  --r-sm:    6px;
  --r-md:    12px;
  --r-lg:    20px;
  --r-xl:    32px;
  --r-full:  9999px;

  /* Transitions */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  0.2s var(--ease);
  --t-base:  0.35s var(--ease);
  --t-slow:  0.6s var(--ease);

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-btn:  0 4px 20px rgba(243, 114, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-bg);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* ── LAYOUT UTILS ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--sec-py);
}

.section--alt {
  background-color: var(--c-bg-2);
}

/* ── TYPOGRAPHY SYSTEM ────────────────────────────────── */
.section__eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-sm);
}

.section__head {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-md);
}

.section__lead {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--c-white-80);
  line-height: 1.75;
}

/* ── BUTTON SYSTEM ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast), opacity var(--t-fast), background var(--t-fast);
  position: relative;
}

.btn--accent {
  background: var(--c-accent);
  color: #ffffff;
  box-shadow: var(--shadow-btn);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(243, 114, 0, 0.5);
}
.btn--accent:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid var(--c-border);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 34px;
  font-size: 0.95rem;
}

/* ── LOGO ─────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}

.logo__mark {
  color: var(--c-accent);
  font-size: 0.95rem;
}

.logo__text {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-white);
}

.logo__accent { color: var(--c-accent); }

/* ── HEADER ───────────────────────────────────────────── */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  transition:
    background var(--t-base),
    backdrop-filter var(--t-base),
    border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(3, 2, 7, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--c-border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

.header__nav {
  margin-inline-start: auto;
}

.header__nav-list {
  display: flex;
  gap: 2px;
}

.header__nav-link {
  padding: 7px 13px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--c-white-50);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.header__nav-link:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
}

.header__cta {
  margin-inline-start: var(--sp-sm);
  padding: 9px 20px;
  font-size: 0.83rem;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-inline-start: auto;
}

.burger__line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.burger.is-open .burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open .burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ───────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 2, 7, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white-50);
  transition: color var(--t-fast);
  border-radius: var(--r-sm);
}
.nav-overlay__close:hover { color: var(--c-white); }

.nav-overlay__nav ul {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-overlay__link {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 500;
  color: var(--c-white-80);
  display: block;
  padding: 10px 20px;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-overlay__link:hover { color: var(--c-white); }
.nav-overlay__link--accent { color: var(--c-accent); }
.nav-overlay__link--accent:hover { background: var(--c-accent-dim); }

.nav-overlay__age {
  font-size: 0.8rem;
  color: var(--c-white-25);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/*
  ★★★ HERO IMAGE INSTRUCTIONS ★★★
  ─────────────────────────────────────────────────────────
  1. Place your image file in:  assets/images/hero-image.png
     (also works with .jpg or .webp — see notes below)

  2. To apply it, change the url() in .hero__bg-img below
     from the placeholder gradient to your file path:
     background-image: url('../assets/images/hero-image.png');

  3. THAT'S IT — no other changes needed.

  ── IMAGE FORMAT NOTES ──────────────────────────────────
  PNG:  ✓ Supported. Full quality, transparent bg possible.
        ✗ Large file size (often 2-10x bigger than JPG).
        → Acceptable if image is under ~1.5 MB.

  JPG:  ✓ Best for photos. Smaller file, fast load.
        → Recommended if you can convert PNG → JPG.

  WebP: ✓ Best overall. 25-35% smaller than JPG, lossless option.
        → Best choice if your editor supports it.

  RECOMMENDATION: Convert PNG → WebP using squoosh.app (free, browser-based)
  before going live for best performance.
  ─────────────────────────────────────────────────────────
*/
.hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;

  /* ↓ REPLACE THIS LINE WITH YOUR IMAGE PATH ↓ */
  background-image: url('../assets/images/hero-image.jpg');
  /* ↑ Example: url('../assets/images/hero-image.jpg')   ↑ */

  background-size: cover;
  background-position: center 30%;
  background-color: #0a0816; /* fallback when no image */

  /* Subtle parallax handled in JS */
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    115deg,
    rgba(3, 2, 7, 0.92) 0%,
    rgba(3, 2, 7, 0.72) 55%,
    rgba(3, 2, 7, 0.55) 100%
  );
}

/* Subtle film-grain noise texture */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__container {
  position: relative;
  z-index: 3;
  padding-block: clamp(100px, 15vw, 160px) clamp(80px, 10vw, 120px);
}

.hero__content {
  max-width: 720px;
}

/* Badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--c-white-80);
}

.badge--accent {
  background: rgba(243, 114, 0, 0.12);
  border-color: rgba(243, 114, 0, 0.4);
  color: var(--c-accent);
}

/* Hero title */
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__title-em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-accent);
  font-size: 0.9em;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  color: var(--c-white-80);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: var(--sp-xl);
}

/* Stats row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: clamp(32px, 5vw, 52px);
  flex-wrap: wrap;
}

.hero__stat-value {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 0.72rem;
  color: var(--c-white-25);
  letter-spacing: 0.06em;
  font-weight: 600;
}

.hero__stat-sep {
  width: 1px;
  height: 36px;
  background: var(--c-border);
  flex-shrink: 0;
}

/* Actions */
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
}

.hero__btn-primary svg {
  transition: transform var(--t-fast);
}
.hero__btn-primary:hover svg { transform: translateX(4px); }

/* Age note */
.hero__age-note {
  font-size: 0.78rem;
  color: var(--c-white-25);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 56px;
  overflow: hidden;
}

.hero__scroll-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--c-accent), transparent);
  animation: scrollBar 2.2s ease-in-out infinite;
}

@keyframes scrollBar {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ── WHY US ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}

.why-card {
  padding: 32px 28px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base), border-color var(--t-base), background var(--t-base);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-hover);
  background: rgba(243, 114, 0, 0.03);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  color: var(--c-accent);
  margin-bottom: 22px;
  transition: transform var(--t-base);
}
.why-card:hover .why-card__icon { transform: scale(1.08); }
.why-card__icon svg { width: 100%; height: 100%; }

.why-card__title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 0.88rem;
  color: var(--c-white-50);
  line-height: 1.7;
}

/* ── CONDITIONS ───────────────────────────────────────── */
.conditions__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.conditions__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cond-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.cond-item:hover {
  border-color: var(--c-border-hover);
  background: rgba(243, 114, 0, 0.03);
}

.cond-item__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(243, 114, 0, 0.6);
}

.cond-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cond-item strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-white);
}

.cond-item span {
  font-size: 0.8rem;
  color: var(--c-white-50);
}

.conditions__card {
  background: linear-gradient(145deg, rgba(243, 114, 0, 0.09) 0%, rgba(243, 114, 0, 0.02) 100%);
  border: 1px solid rgba(243, 114, 0, 0.25);
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 44px);
  text-align: center;
  box-shadow: 0 0 60px rgba(243, 114, 0, 0.08);
}

.conditions__card-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-sm);
}

.conditions__card-amount {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.conditions__card-period {
  display: block;
  font-size: 0.85rem;
  color: var(--c-white-50);
  margin-bottom: 28px;
}

.conditions__card-divider {
  width: 50%;
  height: 1px;
  background: var(--c-border);
  margin: 0 auto 24px;
}

.conditions__card-note {
  font-size: 0.88rem;
  color: var(--c-white-80);
  line-height: 1.65;
  margin-bottom: 32px;
}

/* ── INCOME ───────────────────────────────────────────── */
.income__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: var(--sp-xl);
}

.income__feat {
  padding: 28px 24px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: transform var(--t-base), border-color var(--t-base);
}

.income__feat:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-hover);
}

.income__feat-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(243, 114, 0, 0.15);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

.income__feat h3 {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.income__feat p {
  font-size: 0.85rem;
  color: var(--c-white-50);
  line-height: 1.65;
}

.income__cta {
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--c-accent-dim);
  border: 1px solid rgba(243, 114, 0, 0.2);
  border-radius: var(--r-lg);
}

.income__cta p {
  font-size: 1rem;
  color: var(--c-white-80);
  margin-bottom: var(--sp-md);
}

/* ── TRAINING ─────────────────────────────────────────── */
.training__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.training__text {
  font-size: 0.97rem;
  color: var(--c-white-80);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}

.training__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: var(--sp-lg);
}

.training__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.training__list-mark {
  color: var(--c-accent);
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 8px;
}

.training__list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.training__list strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-white);
}

.training__list span {
  font-size: 0.8rem;
  color: var(--c-white-50);
}

.training__steps {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.t-step {
  padding: 22px 26px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.t-step:hover {
  border-color: var(--c-border-hover);
}

.t-step--accent {
  background: rgba(243, 114, 0, 0.07);
  border-color: rgba(243, 114, 0, 0.3);
}

.t-step__num {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 5px;
}

.t-step__title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.t-step__desc {
  font-size: 0.8rem;
  color: var(--c-white-50);
}

/* ── POSITIONS ────────────────────────────────────────── */
.positions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pos-card {
  position: relative;
  padding: 36px 24px 28px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.pos-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.pos-card:hover {
  transform: translateY(-7px);
  border-color: var(--c-border-hover);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
.pos-card:hover::after { opacity: 1; }

.pos-card--featured {
  background: rgba(243, 114, 0, 0.05);
  border-color: rgba(243, 114, 0, 0.2);
}
.pos-card--featured::after { opacity: 1; }

.pos-card__num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.pos-card__icon {
  width: 40px;
  height: 40px;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.pos-card__icon svg { width: 100%; height: 100%; }

.pos-card__title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pos-card__desc {
  font-size: 0.82rem;
  color: var(--c-white-50);
  line-height: 1.65;
  margin-bottom: 18px;
}

.pos-card__tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: var(--r-full);
  background: var(--c-accent-dim);
  border: 1px solid rgba(243, 114, 0, 0.3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-accent);
}

/* ── COMFORT ──────────────────────────────────────────── */
.comfort__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comfort__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white-80);
  transition: transform var(--t-base), border-color var(--t-base);
}

.comfort__item:hover {
  transform: translateY(-4px);
  border-color: var(--c-border-hover);
}

.comfort__item-icon {
  width: 38px;
  height: 38px;
  color: var(--c-accent);
}
.comfort__item-icon svg { width: 100%; height: 100%; }

/* ── BONUSES ──────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--c-border);
  padding-block: 18px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.marquee__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white-50);
  flex-shrink: 0;
}
.marquee__sep { color: var(--c-accent) !important; }

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

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  padding: 32px 26px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base), border-color var(--t-base);
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-hover);
}

.bonus-card__emoji {
  font-size: 2.2rem;
  margin-bottom: 18px;
  line-height: 1;
}

.bonus-card h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.bonus-card p {
  font-size: 0.84rem;
  color: var(--c-white-50);
  line-height: 1.65;
}

/* ── REFERRAL ─────────────────────────────────────────── */
.referral__inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 56px);
}

.referral__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: 0 0 48px rgba(243, 114, 0, 0.45);
  animation: pulseAccent 3s ease-in-out infinite;
}

@keyframes pulseAccent {
  0%, 100% { box-shadow: 0 0 48px rgba(243, 114, 0, 0.45); }
  50%       { box-shadow: 0 0 80px rgba(243, 114, 0, 0.7); }
}

.referral__title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.referral__text {
  font-size: 1rem;
  color: var(--c-white-80);
  line-height: 1.7;
  margin-bottom: 36px;
}

.referral__text strong { color: var(--c-accent); }

/* ── RELOCATION ───────────────────────────────────────── */
.relocation__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.relocation__text {
  font-size: 1rem;
  color: var(--c-white-80);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}

.relocation__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-lg);
}

.relocation__perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--c-white-80);
}
.relocation__perks li span:first-child { font-size: 1.3rem; }

.relocation__visual { display: flex; justify-content: center; }

.relocation__card {
  text-align: center;
  padding: clamp(48px, 7vw, 72px) clamp(32px, 5vw, 56px);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  max-width: 340px;
  width: 100%;
}

.relocation__card-emoji { font-size: 3.5rem; margin-bottom: 20px; line-height: 1; }
.relocation__card-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.relocation__card-desc {
  font-size: 0.85rem;
  color: var(--c-white-50);
  line-height: 1.65;
}

/* ── CAREER ───────────────────────────────────────────── */
.career__path {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-xl);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.career__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 160px;
  padding-inline: 16px;
  flex-shrink: 0;
}

.career__step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(243, 114, 0, 0.4);
  background: rgba(243, 114, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}

.career__step-circle--accent {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(243, 114, 0, 0.5);
}

.career__step-body { text-align: center; }

.career__step-body h3 {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.career__step-body p {
  font-size: 0.75rem;
  color: var(--c-white-50);
  max-width: 130px;
  margin-inline: auto;
}

.career__conn {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 114, 0, 0.3), rgba(243, 114, 0, 0.1));
  min-width: 32px;
  flex-shrink: 0;
}

.career__feats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.career__feat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.career__feat:hover {
  border-color: var(--c-border-hover);
  background: var(--c-accent-dim);
}

/* ── STATS ────────────────────────────────────────────── */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: clamp(36px, 5vw, 52px) 24px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base);
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-hover);
}
.stat-card:hover::after { opacity: 1; }

.stat-card__val {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}

.stat-card__val--range {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--c-white-50);
  font-weight: 500;
}

/* ── APPLY FORM ───────────────────────────────────────── */
.apply__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.apply__desc {
  font-size: 0.97rem;
  color: var(--c-white-80);
  line-height: 1.75;
  margin-bottom: var(--sp-lg);
}

.apply__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-md);
}

.apply__trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-white-80);
}

.apply__trust-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-accent-dim);
  border: 1px solid rgba(243, 114, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}

.apply__age {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: var(--sp-md);
  padding: 10px 16px;
  border: 1px solid rgba(243, 114, 0, 0.25);
  border-radius: var(--r-full);
  display: inline-block;
}

/* Form shell */
.apply-form {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}

.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.apply-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.apply-form__field:last-of-type { margin-bottom: 22px; }

.apply-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white-50);
}

.apply-form__req {
  color: var(--c-accent);
}

.apply-form__input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  color: var(--c-white);
  font-size: 0.92rem;
  outline: none;
  appearance: none;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.apply-form__input::placeholder { color: rgba(255, 255, 255, 0.18); }
.apply-form__input:focus {
  border-color: rgba(243, 114, 0, 0.5);
  background: rgba(243, 114, 0, 0.03);
  box-shadow: 0 0 0 3px rgba(243, 114, 0, 0.08);
}

/* Error state */
.apply-form__input.has-error {
  border-color: rgba(255, 80, 60, 0.65);
  background: rgba(255, 80, 60, 0.04);
}

.apply-form__error {
  font-size: 0.74rem;
  font-weight: 600;
  color: #ff5c3e;
  min-height: 18px;
  display: block;
}

.apply-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23F37200' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: rgba(255, 255, 255, 0.5);
}
.apply-form__select:focus { color: var(--c-white); }
.apply-form__select option { background: #100e1a; color: var(--c-white); }

.apply-form__textarea {
  resize: vertical;
  min-height: 110px;
}

.apply-form__submit {
  width: 100%;
  justify-content: center;
}
.apply-form__submit svg { transition: transform var(--t-fast); }
.apply-form__submit:hover svg { transform: translateX(4px); }
.apply-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.apply-form__privacy {
  text-align: center;
  font-size: 0.74rem;
  color: var(--c-white-25);
  margin-top: 12px;
  line-height: 1.5;
}

.apply-form__privacy a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
  transition: opacity var(--t-fast);
}
.apply-form__privacy a:hover { opacity: 1; }

/* Success state */
.apply-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 4vw, 48px);
  background: rgba(243, 114, 0, 0.04);
  border: 1px solid rgba(243, 114, 0, 0.2);
  border-radius: var(--r-xl);
}

.apply-form__success[hidden] { display: none; }

.apply-form__success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-accent-dim);
  border: 2px solid rgba(243, 114, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-accent);
  margin-bottom: 22px;
}

.apply-form__success h3 {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.apply-form__success p {
  font-size: 0.92rem;
  color: var(--c-white-80);
  line-height: 1.7;
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: clamp(56px, 8vw, 80px) 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(40px, 6vw, 56px);
}

.footer__logo { margin-bottom: 18px; }

.footer__slogan {
  font-size: 0.88rem;
  color: var(--c-white-50);
  line-height: 1.7;
  max-width: 260px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white-25);
  margin-bottom: 6px;
}

.footer__nav-col a {
  font-size: 0.85rem;
  color: var(--c-white-50);
  transition: color var(--t-fast);
}
.footer__nav-col a:hover { color: var(--c-white); }

.footer__hours {
  font-size: 0.8rem;
  color: var(--c-white-25);
  line-height: 1.5;
}

/* Telegram link in footer */
.footer__tg-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--c-white-50);
  transition: color var(--t-fast);
  width: fit-content;
}
.footer__tg-link:hover { color: var(--c-accent); }

.footer__tg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.footer__tg-link:hover .footer__tg-icon {
  background: rgba(243, 114, 0, 0.1);
  border-color: rgba(243, 114, 0, 0.35);
  transform: scale(1.1);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--c-border);
  padding-top: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy,
.footer__privacy {
  font-size: 0.78rem;
  color: var(--c-white-25);
}

.footer__privacy { transition: color var(--t-fast); }
.footer__privacy:hover { color: var(--c-accent); }

/* ── FLOATING CTA ─────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 60;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  display: none;
}

.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.floating-cta__btn {
  box-shadow: 0 10px 40px rgba(243, 114, 0, 0.5);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

[data-anim="fade-up"]    { transform: translateY(40px); }
[data-anim="fade-right"] { transform: translateX(-40px); }
[data-anim="fade-left"]  { transform: translateX(40px); }

[data-anim].is-visible {
  opacity: 1;
  transform: translate(0);
}

[data-delay="0"] { transition-delay: 0ms; }
[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }
[data-delay="5"] { transition-delay: 400ms; }

/* ── RESPONSIVE — TABLET (≤1024px) ───────────────────── */
@media (max-width: 1024px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .positions__grid   { grid-template-columns: repeat(2, 1fr); }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .income__grid      { grid-template-columns: repeat(2, 1fr); }
  .bonuses__grid     { grid-template-columns: repeat(2, 1fr); }
  .footer__top       { grid-template-columns: 1fr; gap: 40px; }
}

/* ── RESPONSIVE — NAV BREAK (≤900px) ─────────────────── */
@media (max-width: 900px) {
  .header__nav  { display: none; }
  .header__cta  { display: none; }
  .burger       { display: flex; }
  .floating-cta { display: block; }
  .conditions__layout  { grid-template-columns: 1fr; }
  .relocation__layout  { grid-template-columns: 1fr; }
  .training__layout    { grid-template-columns: 1fr; }
  .apply__layout       { grid-template-columns: 1fr; }
  .relocation__visual  { display: none; }
}

/* ── RESPONSIVE — MOBILE (≤640px) ────────────────────── */
@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --sec-py: 64px;
  }

  .hero__stats { gap: 16px; }
  .hero__stat-sep { display: none; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .why-grid { grid-template-columns: 1fr; }
  .income__grid { grid-template-columns: 1fr; }
  .bonuses__grid { grid-template-columns: 1fr; }
  .positions__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .comfort__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .apply-form__row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE — SMALL (≤400px) ─────────────────────── */
@media (max-width: 400px) {
  .stats__grid   { grid-template-columns: 1fr; }
  .comfort__grid { grid-template-columns: 1fr; }
  .footer__nav   { grid-template-columns: 1fr; }
}
