/* ============================================
   SASS GROUP — Hjemmeside styles (v2)
   Inspireret af Intercargo Scandinavia
   Palette: Deep navy + White + Ice Blue accent
   ============================================ */

:root {
  --white: #ffffff;
  --off-white: #f6f8fa;
  --ice-50: #eef6fb;
  --ice-100: #d8e9f3;
  --ice-300: #7ec2e0;
  --ice-400: #4ea7ce;
  --ice-500: #2b8cc4;
  --ice-600: #1d6fa1;
  --brand-navy: #15223A;
  --navy-700: #1a2a47;
  --navy-800: #15223a;
  --navy-900: #101a2e;
  --navy-950: #08111f;
  --ink: #15223A;
  --text: #2c3e50;
  --muted: #6b7d8f;
  --border: #e3eef5;
  --border-dark: rgba(255,255,255,0.12);
  --shadow-sm: 0 2px 8px rgba(10, 26, 46, 0.05);
  --shadow-md: 0 8px 28px rgba(10, 26, 46, 0.10);
  --shadow-lg: 0 20px 56px rgba(10, 26, 46, 0.16);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --container: 1280px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ice-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-800); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice-500);
  margin-bottom: 1rem;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 640px; }

.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: white; }
.text-white .lead, .text-white p { color: rgba(255,255,255,0.78); }
.text-white .eyebrow { color: var(--ice-300); }

/* ============================================
   HEADER / NAVIGATION (dark, over hero)
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.page-non-hero .site-header {
  background: var(--navy-900);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  height: 44px;
}

.brand:hover { color: var(--white); }

.brand svg { height: 38px; width: auto; color: white; }

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 16px;
  margin-left: 8px;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  background: rgba(255,255,255,0.06);
}

.lang-switcher a:hover { color: white; background: rgba(255,255,255,0.14); }
.lang-switcher a.active { color: var(--navy-900); background: white; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary { background: var(--ice-500); color: white; border-color: var(--ice-500); }
.btn-primary:hover { background: var(--ice-600); border-color: var(--ice-600); color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-light { background: white; color: var(--ink); border-color: white; }
.btn-light:hover { background: var(--ice-100); border-color: var(--ice-100); color: var(--navy-800); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--ice-100); color: var(--navy-800); border-color: var(--ice-300); }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: white; color: var(--ink); border-color: white; }

.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO (dark, full-bleed)
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  background-color: var(--navy-950);
  background-image:
    linear-gradient(135deg, rgba(3, 16, 31, 0.78) 0%, rgba(14, 37, 65, 0.50) 100%),
    url("photos/hero-scania-forest.jpg"),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Fallback gradient when photo isn't loaded */
.hero.no-photo {
  background-image: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(43, 140, 196, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(126, 194, 224, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-content { max-width: 920px; }

.hero h1 {
  color: white;
  margin-bottom: 28px;
}

.hero .slogan {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ice-300);
  padding: 8px 16px;
  border: 1px solid rgba(126, 194, 224, 0.35);
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero p.lead {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  max-width: 720px;
  margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   STATS BAR (under hero, dark)
   ============================================ */

.stats {
  background: var(--navy-900);
  color: white;
  padding: 64px 0;
  border-top: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 900;
  color: var(--ice-300);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   SECTIONS
   ============================================ */

.section { padding: 110px 0; }
.section-tinted { background: var(--off-white); }
.section-dark { background: var(--navy-900); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }
.section-dark p, .section-dark .lead { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: var(--ice-300); }

.section-header { max-width: 820px; margin-bottom: 60px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Two-column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.aside { grid-template-columns: 1.2fr 1fr; }

.media-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--navy-800);
  background-image: linear-gradient(135deg, var(--navy-800) 0%, var(--ice-500) 100%);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}

.media-frame svg { width: 65%; opacity: 0.95; }

.media-frame.tall { aspect-ratio: 4/5; }

/* Photo-backed media frame: layered so it gracefully degrades when image fails to load */
.media-frame.photo {
  background-image:
    linear-gradient(135deg, rgba(10,26,46,0.18) 0%, rgba(10,26,46,0.0) 60%),
    var(--photo-bg),
    linear-gradient(135deg, var(--navy-800), var(--ice-500));
}

.media-frame.photo svg { display: none; }

/* Full-bleed photo banner sections */
.photo-banner {
  position: relative;
  min-height: 480px;
  background-color: var(--navy-800);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.photo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,16,31,0.85) 0%, rgba(3,16,31,0.45) 60%, rgba(3,16,31,0.25) 100%);
  z-index: 1;
}

.photo-banner .container { position: relative; z-index: 2; }

.photo-banner h2 { color: white; }
.photo-banner p { color: rgba(255,255,255,0.85); }

/* ============================================
   PAGE HEADER (small hero for sub-pages)
   ============================================ */

.page-header {
  background-color: var(--navy-950);
  background-image: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-header.with-photo {
  background-image:
    linear-gradient(135deg, rgba(3, 16, 31, 0.82) 0%, rgba(14, 37, 65, 0.65) 100%),
    var(--photo-bg),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(43, 140, 196, 0.20) 0%, transparent 55%);
  z-index: 1;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 { color: white; font-size: clamp(2.4rem, 5vw, 4.4rem); margin-bottom: 18px; }
.page-header p { font-size: 1.2rem; color: rgba(255,255,255,0.78); max-width: 760px; }

/* ============================================
   FEATURE CARDS / WHY US
   ============================================ */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ice-300);
}

.feature-card .feature-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ice-500);
  margin-bottom: 16px;
}

.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--muted); font-size: 0.97rem; }

.feature-card.dark {
  background: var(--navy-800);
  border-color: var(--border-dark);
}

.feature-card.dark h3 { color: white; }
.feature-card.dark p { color: rgba(255,255,255,0.7); }
.feature-card.dark:hover { border-color: var(--ice-500); background: var(--navy-700); }

/* ============================================
   JOB CATEGORY CARDS (rekruttering)
   ============================================ */

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.job-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ice-400), var(--ice-600));
}

.job-card .job-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ice-500);
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--ice-50);
  border-radius: 3px;
}

.job-card h3 { font-size: 1.4rem; margin-bottom: 14px; line-height: 1.2; }

.job-card .job-area {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.job-card ul {
  list-style: none;
  padding: 0;
}

.job-card li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.job-card li::before {
  content: "▸";
  color: var(--ice-500);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   LOCATION CARDS
   ============================================ */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.location-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ice-300);
}

.location-image {
  aspect-ratio: 16/9;
  background-color: var(--navy-800);
  background-image: linear-gradient(135deg, var(--navy-800), var(--ice-600));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.location-image.has-photo {
  background-image:
    linear-gradient(180deg, rgba(10,26,46,0.1) 0%, rgba(10,26,46,0.55) 100%),
    var(--photo-bg),
    linear-gradient(135deg, var(--navy-800), var(--ice-600));
}

.location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,26,46,0.55) 100%);
}

.location-image .country-code {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  opacity: 0.9;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.location-body { padding: 28px 30px; }

.location-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.location-card .location-role {
  color: var(--ice-500);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.location-card address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-card.featured {
  grid-column: span 2;
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-700);
}

.location-card.featured h3 { color: white; }
.location-card.featured .location-role { color: var(--ice-300); }
.location-card.featured address { color: rgba(255,255,255,0.7); }

@media (max-width: 700px) {
  .location-card.featured { grid-column: span 1; }
}

/* ============================================
   VALUES (Om-side)
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.value-card {
  padding: 36px 30px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-left: 4px solid var(--ice-500);
}

.value-card .value-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ice-500);
  margin-bottom: 12px;
}

.value-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ============================================
   GROUP / SISTER COMPANIES
   ============================================ */

.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.group-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 26px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.group-card:hover { background: rgba(255,255,255,0.07); border-color: var(--ice-500); }

.group-card h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.group-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

.group-card.self { border-color: var(--ice-500); background: rgba(43,140,196,0.10); }
.group-card.self h4 { color: var(--ice-300); }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--navy-900);
  color: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--ice-600) 0%, transparent 70%);
  opacity: 0.20;
  transform: translateY(-50%);
}

.cta-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 { color: white; }
.cta-section p.lead { color: rgba(255,255,255,0.78); }

/* ============================================
   APPLICATION FORM
   ============================================ */

.application-form {
  background: white;
  padding: 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group label .required { color: var(--ice-600); }

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--ink);
}

.form-control:focus {
  outline: none;
  border-color: var(--ice-500);
  box-shadow: 0 0 0 4px var(--ice-100);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  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 fill='%236b7d8f' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-file {
  display: block;
  padding: 16px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-file:hover { border-color: var(--ice-400); background: var(--ice-50); color: var(--navy-800); }

.form-file input { display: none; }

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.form-check input { margin-top: 4px; }

/* ============================================
   APPLY CHANNELS (WhatsApp / Telegram / Email)
   ============================================ */

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  color: white;
  transition: all var(--transition);
  text-decoration: none;
}

.channel-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--ice-400);
  color: white;
  transform: translateY(-3px);
}

.channel-card .ch-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ice-300);
}

.channel-card .ch-value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: white;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-grid h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-grid ul { list-style: none; }

.footer-grid li { margin-bottom: 12px; font-size: 0.95rem; }

.footer-grid a { color: rgba(255,255,255,0.6); }
.footer-grid a:hover { color: var(--ice-300); }

.footer-brand .brand svg { height: 36px; margin-bottom: 18px; }
.footer-brand .brand-logo { height: 32px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 360px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav-links a { padding: 10px 12px; font-size: 0.9rem; }
}

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 140px 0 80px; }
  .two-col, .two-col.aside { grid-template-columns: 1fr; gap: 50px; }
  .media-frame { max-width: 540px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .cta-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 70px 0; }
  .page-header { padding: 140px 0 70px; }
  .application-form { padding: 32px 26px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .nav { padding: 18px 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    border-bottom: 1px solid var(--border-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: var(--radius-sm); }
  .lang-switcher { border-left: 0; padding-left: 0; margin-left: 0; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 4px; justify-content: center; }
  .nav-toggle { display: block; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}
