/* mdls.one — Design System 2026 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --bg: #060508;
  --bg2: #0b0910;
  --surface: #110e17;
  --surface-hover: #181422;
  --border: #1f1930;
  --border-light: #2a233d;
  --text: #e8e4dc;
  --text-dim: #8b8598;
  --accent: #c9a96e;
  --accent-glow: rgba(201,169,110,0.08);
  --accent-glow-strong: rgba(201,169,110,0.15);
  --copper: #b87333;
  --wine: #4a1a3a;
  --success: #5a9e6f;
  --danger: #8b3a3a;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -1px; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-dim); line-height: 1.75; }
strong, b { color: var(--text); font-weight: 600; }

em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.accent { color: var(--accent); }
.dim { color: var(--text-dim); }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-sm {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-alt {
  background: var(--bg2);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.section-glow {
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06), transparent 70%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ── Image Section Backgrounds ──────────────────────────────────────────── */
.section-img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,5,8,0.82), rgba(6,5,8,0.68));
  pointer-events: none;
}

.section-img > .container,
.section-img > .container-sm,
.section-img > div {
  position: relative;
  z-index: 1;
}

.bg-penthouse { background-image: url('/static/img/hero-penthouse.jpg'); }
.bg-tokyo     { background-image: url('/static/img/tokyo-night.jpg'); }
.bg-yacht     { background-image: url('/static/img/yacht-sunset.jpg'); }
.bg-dubai     { background-image: url('/static/img/dubai-pool.jpg'); }
.bg-villa     { background-image: url('/static/img/villa-pool.jpg'); }
.bg-silk      { background-image: url('/static/img/silk-abstract.jpg'); }

@media (max-width: 768px) {
  .section-img { background-attachment: scroll; }
}

/* ── Navigation ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6,5,8,0.92);
  backdrop-filter: blur(20px) saturate(120%);
  padding: 0.85rem 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo svg { width: 32px; height: 32px; }

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  user-select: none;
}

.lang-current:hover {
  color: var(--accent);
  border-color: var(--border-light);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  min-width: 160px;
  overflow: hidden;
  display: none;
  box-shadow: var(--shadow-card);
  z-index: 200;
}

.lang-switcher:hover .lang-dropdown {
  display: block;
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: all var(--transition);
}

.lang-dropdown a:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.lang-dropdown a.active {
  color: var(--accent);
}

.lang-flag { font-size: 1rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #06050a;
}

.btn-primary:hover {
  background: #d4b87a;
  color: #06050a;
  box-shadow: 0 4px 24px rgba(201,169,110,0.3);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-glow);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-light);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-light);
  background: var(--surface);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
}

/* ── Glass Card ──────────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(17, 14, 23, 0.75);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.glass-card-hover {
  transition: all var(--transition);
}

.glass-card-hover:hover {
  background: rgba(24, 20, 34, 0.85);
  border-color: rgba(201,169,110,0.25);
  box-shadow: var(--shadow-card), 0 0 30px var(--accent-glow);
  transform: translateY(-3px);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/static/img/hero-penthouse.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3) saturate(0.5);
  transform: scale(1.06);
  transition: transform 12s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,5,8,0.4) 0%, rgba(6,5,8,0.05) 40%, rgba(6,5,8,0.75) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(74,26,58,0.25), transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2.5rem;
  max-width: 680px;
  width: calc(100% - 3rem);
}

.hero-logo {
  width: 68px;
  height: 68px;
  margin: 0 auto 2rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  text-shadow: 0 0 80px rgba(201,169,110,0.15);
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232,228,220,0.75);
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Experience Cards ────────────────────────────────────────────────────── */
.experience-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  min-width: 800px;
}

.experience-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, rgba(201,169,110,0.03), transparent);
}

.experience-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 5rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
  user-select: none;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

.testimonial-card {
  padding: 2rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -0.1rem;
  top: -0.3rem;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wine);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── Income ──────────────────────────────────────────────────────────────── */
.income-highlight {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
}

.income-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.income-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.income-table td {
  padding: 0.9rem 1rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.income-table td:last-child {
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
}

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

.income-table tbody tr:hover td {
  background: var(--surface-hover);
  color: var(--text);
}

/* ── Jobs Page ───────────────────────────────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.job-card {
  padding: 2.25rem 2rem;
  transition: all var(--transition);
}

.job-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px var(--accent-glow);
}

.job-card .tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-glow);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.job-card h3 { margin-bottom: 0.75rem; }

.job-income {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.job-income-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.job-income-label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── Safety Page ─────────────────────────────────────────────────────────── */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.safety-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.safety-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-glow);
  border: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── About Page ──────────────────────────────────────────────────────────── */
.about-hero-text {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.55;
  color: var(--text);
}

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

.value-card {
  padding: 2rem;
  text-align: center;
}

.value-card .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ── FAQ Page ────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  gap: 1rem;
  transition: color var(--transition);
  list-style: none;
  user-select: none;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-glow);
  border-color: rgba(201,169,110,0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 600px; }

/* ── Apply Form ──────────────────────────────────────────────────────────── */
.apply-hero {
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06), transparent 70%);
  padding: 10rem 0 5rem;
  text-align: center;
}

.apply-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Step Progress */
.step-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 3rem auto;
  max-width: 640px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
}

.step-dot::after {
  content: '';
  position: absolute;
  top: 15px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-dot:last-child::after { display: none; }

.step-dot-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-dot.active .step-dot-circle {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}

.step-dot.completed .step-dot-circle {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}

.step-dot.completed::after { background: rgba(201,169,110,0.35); }

.step-dot-label {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.3;
  max-width: 60px;
}

.step-dot.active .step-dot-label { color: var(--accent); }

/* Form Steps */
.form-step { display: none; }

.form-step.active {
  display: block;
  animation: step-in 0.35s ease both;
}

@keyframes step-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-section-card {
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.form-section-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form Fields */
.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.2px;
}

.label-optional {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 400;
}

input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  width: 100%;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(201,169,110,0.5);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.06);
}

input::placeholder, textarea::placeholder { color: var(--text-dim); opacity: 0.6; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b8598' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option { background: var(--surface); color: var(--text); }
textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

/* Radio / Checkbox */
.check-group { display: flex; flex-direction: column; gap: 0.6rem; }
.check-group.inline { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }

.check-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 0.9rem;
  color: var(--text-dim);
}

.check-label:hover {
  border-color: var(--border-light);
  color: var(--text);
  background: var(--surface-hover);
}

.check-label input[type="radio"],
.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.check-label:has(input:checked) {
  border-color: rgba(201,169,110,0.4);
  color: var(--text);
  background: var(--accent-glow);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
  line-height: 1.5;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 1.75rem 0;
}

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.step-counter {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── CTA Section ─────────────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 8rem 0;
}

.cta-section h2 { margin-bottom: 1rem; }

.cta-section p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ── Page Hero (interior pages) ──────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06), transparent 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg2) 0%, transparent 100%);
  opacity: 0.5;
}

.page-hero > * { position: relative; }

/* Image page hero variant */
.page-hero.section-img {
  background-color: var(--bg);
}

.page-hero.section-img::before {
  background: linear-gradient(to bottom, rgba(6,5,8,0.85), rgba(6,5,8,0.68));
  opacity: 1;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

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

.footer-brand .tagline {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.55;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo svg { width: 28px; height: 28px; }

.footer-logo-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── Scroll Reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.reveal.visible {
  opacity: 1;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transition: none; }
  .hero-bg { transform: none; transition: none; }
}

/* ── Alerts ──────────────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.alert-success {
  background: rgba(90,158,111,0.1);
  border: 1px solid rgba(90,158,111,0.3);
  color: #7dcf98;
}

.alert-error {
  background: rgba(139,58,58,0.1);
  border: 1px solid rgba(139,58,58,0.3);
  color: #cf7d7d;
}

/* ── Ornament ────────────────────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }

.mt-1 { margin-top: 0.5rem;  } .mt-2 { margin-top: 1rem;  }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem;  }
.mt-6 { margin-top: 3rem;   } .mt-8 { margin-top: 4rem;  }
.mb-1 { margin-bottom: 0.5rem;  } .mb-2 { margin-bottom: 1rem;  }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem;  }
.mb-6 { margin-bottom: 3rem; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6,5,8,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    z-index: 99;
  }
  .nav-links.open a { padding: 0.65rem 0; font-size: 1rem; color: var(--text-dim); }
  .nav-inner { position: relative; }

  .steps-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid      { grid-template-columns: 1fr; }
  .form-row-2       { grid-template-columns: 1fr; }
  .form-row-3       { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container  { padding: 0 1.25rem; }
  .section    { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .jobs-grid  { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2.2rem; letter-spacing: -0.5px; }
  h2 { font-size: 1.7rem; }
  .page-hero { padding: 8rem 0 3rem; }
  .apply-hero { padding: 8rem 0 3rem; }
  .step-dot-label { display: none; }
  .cta-section { padding: 5rem 0; }
  .form-section-card { padding: 1.5rem; }
}
