/* ============================================================
   Workly — style.css
   Design: formal, clean, editorial
   ============================================================ */

:root {
  --blue:        #1B3A6B;
  --blue-dark:   #122850;
  --blue-mid:    #2451A0;
  --accent:      #C8960A;
  --accent-lt:   #E5A800;
  --white:       #FFFFFF;
  --off-white:   #F5F6F8;
  --border:      #DDE1E8;
  --text:        #1A202C;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --success:     #166534;
  --success-bg:  #DCFCE7;
  --error:       #991B1B;
  --error-bg:    #FEE2E2;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --radius-md: 6px;

  --container: 1140px;
  --pad: clamp(16px, 4vw, 32px);
  --header-h: 64px;
  --section-v: clamp(52px, 7vw, 88px);

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.09);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea, button { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; letter-spacing: -0.01em; }
h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.text-muted { color: var(--text-muted); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

.section--alt { background: var(--off-white); }
.section--dark { background: var(--blue-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section-header { margin-bottom: 40px; }
.section-header h2 { margin-bottom: 10px; }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  border: 1.5px solid transparent;
  letter-spacing: 0.01em;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #a87a08;
  border-color: #a87a08;
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 13px 30px; font-size: 0.95rem; }

/* ============================================================
   DEMO OVERLAY
   ============================================================ */
.demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 32, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.demo-overlay.hidden { display: none; }

.demo-modal {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 48px rgba(0,0,0,0.25);
}

.demo-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}

.demo-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 500;
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}

/* Logo */
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
}

/* Nav */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: block;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--off-white); }
.nav-link.active { color: var(--blue); font-weight: 600; }

/* Header end */
.header-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-active { color: var(--blue); }
.lang-sep { color: var(--border); }
.lang-link { color: var(--text-muted); transition: color 0.15s; }
.lang-link:hover { color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--blue-dark);
  padding-block: clamp(44px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 540px;
}

/* ============================================================
   HERO (homepage)
   ============================================================ */
.hero {
  background: var(--blue-dark);
  padding-top: clamp(60px, 9vw, 100px);
  padding-bottom: clamp(60px, 9vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  max-width: 600px;
  margin-bottom: 18px;
}

.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   ABOUT SECTION (homepage)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.about-text h2 { margin-bottom: 16px; }
.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-cell {
  background: var(--white);
  padding: 24px 20px;
}
.stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   HOW IT WORKS (steps grid)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.step-card {
  background: var(--white);
  padding: 28px 24px;
}
.section--alt .step-card { background: var(--off-white); }

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--blue);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SECTORS (homepage cards)
   ============================================================ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
}

.sector-card {
  background: var(--white);
  padding: 24px;
}

.sector-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.sector-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   TRUST SIGNALS
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-card {
  padding: 28px 24px;
}

.trust-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lt);
  display: block;
  margin-bottom: 10px;
}

.trust-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(48px, 6vw, 72px);
  text-align: center;
}

.cta-block h2 { margin-bottom: 10px; }
.cta-block p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ============================================================
   TIMELINE (how it works page)
   ============================================================ */
.timeline {
  max-width: 680px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-body { padding-top: 14px; }
.timeline-body h3 {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 680px;
  border-top: 1px solid var(--border);
}

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--blue); }
.faq-item.open .faq-trigger { color: var(--blue); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--text-muted);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-icon { color: var(--blue); }

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-body-inner {
  padding-bottom: 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-body { max-height: 400px; }

/* ============================================================
   VACANCY TABLE
   ============================================================ */
.vacancy-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.9rem;
}

.vacancy-table thead {
  background: var(--blue-dark);
}

.vacancy-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.65);
}

.vacancy-table tbody tr {
  border-top: 1px solid var(--border);
  transition: background 0.12s;
}
.vacancy-table tbody tr:hover { background: var(--off-white); }

.vacancy-table td {
  padding: 16px 18px;
  vertical-align: middle;
  color: var(--text);
}

.vacancy-table td:first-child { font-weight: 600; color: var(--blue); }

.vac-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-blue { background: #EFF4FF; color: var(--blue); }

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.value-card h3 {
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.team-card {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
}

.team-avatar {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 1px solid var(--border);
}

.team-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 44px);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-label .req { color: var(--error); }

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  line-height: 1.5;
}
.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.1);
}
.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(153, 27, 27, 0.07);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-hint { font-size: 0.8rem; color: var(--text-light); }
.form-error { font-size: 0.8rem; color: var(--error); display: none; }
.form-group.has-error .form-error { display: block; }

.file-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  background: var(--off-white);
  transition: border-color 0.15s, color 0.15s;
}
.file-trigger:hover { border-color: var(--blue); color: var(--blue); }
input[type="file"] { display: none; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.checkbox-row label {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: var(--success-bg);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  color: var(--success);
  font-weight: 500;
}
.form-success.visible { display: block; }

/* Apply page layout */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.apply-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.sidebar-info {
  background: var(--blue-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 16px;
}
.sidebar-info h4 { color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.sidebar-info ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-info li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.sidebar-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent-lt);
  border-radius: 50%;
}

.sidebar-contact {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.sidebar-contact h4 { color: var(--text-muted); margin-bottom: 12px; font-size: 0.75rem; }
.sidebar-contact a {
  display: block;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  transition: color 0.15s;
}
.sidebar-contact a:hover { color: var(--blue); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-list { margin-bottom: 32px; }

.contact-row {
  display: flex;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-row:first-child { border-top: 1px solid var(--border); }

.contact-row-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  width: 100px;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-row-value {
  font-size: 0.93rem;
  color: var(--text);
}
.contact-row-value a { color: var(--blue); }
.contact-row-value a:hover { text-decoration: underline; }

.map-placeholder {
  height: 260px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.87rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-dark);
  padding-top: 48px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo .logo-wordmark { color: var(--white); font-size: 1.1rem; }

.footer-tagline {
  margin-top: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

.site-footer h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact li { font-size: 0.87rem; color: rgba(255,255,255,0.55); }
.footer-contact a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-contact a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 400;
  border: 1px solid rgba(255,255,255,0.1);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--blue); }

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px var(--pad) 20px;
    box-shadow: var(--shadow-md);
    z-index: 499;
  }
  .main-nav.open ul { flex-direction: column; gap: 2px; }
  .main-nav.open .nav-link { font-size: 0.95rem; padding: 10px 12px; }

  .about-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
  .apply-layout { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
}

@media (max-width: 640px) {
  .steps-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .vacancy-table { font-size: 0.82rem; }
  .vacancy-table th, .vacancy-table td { padding: 12px 12px; }
  .vacancy-table .vac-action { display: none; }
}
