/* ============================================================
   Avanza Ventures - Design System
   Style direction: modern, clean, operative (rauzapp/veloop-like)
   ============================================================ */

:root {
  --green-100: #E8F6E3;
  --green-300: #8DC63F;
  --green-500: #43B02A;
  --green-600: #2E9E4F;
  --green-700: #1F7A38;
  --grad-green: linear-gradient(135deg, #8DC63F 0%, #43B02A 55%, #2E9E4F 100%);

  --ink-900: #0C1310;
  --ink-800: #14201A;
  --ink-700: #1D2B24;
  --text-900: #101828;
  --text-600: #475467;
  --text-400: #98A2B3;

  --bg: #FFFFFF;
  --bg-soft: #F4F7F4;
  --line: #E7ECE8;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow-md: 0 12px 32px -8px rgba(12, 19, 16, .14);
  --shadow-lg: 0 24px 64px -16px rgba(12, 19, 16, .22);

  --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: 0; }

.display-xl { font-size: 4.4rem; font-weight: 700; }
.display-lg { font-size: 3.2rem; font-weight: 700; }
.display-md { font-size: 2.2rem; font-weight: 700; }

.lead { font-size: 1.25rem; color: var(--text-600); }
.on-dark .lead { color: #B9C6BE; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad-green);
}
.on-dark .eyebrow { color: var(--green-300); }

.text-gradient {
  background: var(--grad-green);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .18s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-green); color: #fff;
  box-shadow: 0 10px 24px -8px rgba(67, 176, 42, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(67, 176, 42, .6); }

.btn-dark { background: var(--ink-900); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--line); color: var(--text-900); background: #fff; }
.btn-outline:hover { border-color: var(--green-500); color: var(--green-700); transform: translateY(-2px); }

.btn-ghost-light { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

.btn-sm { padding: 11px 22px; font-size: .88rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header.header-dark:not(.scrolled) { color: #fff; }
.site-header.menu-open { z-index: 110; background: var(--ink-900); color: #fff; }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: 0;
}
.brand::before {
  content: ""; width: 52px; height: 38px; flex: none;
  background: url('/assets/img/logo-avanza.png') center -10px / 82px auto no-repeat;
}
.brand img { display: none; }
.brand span em { font-style: normal; color: var(--green-500); }

.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-weight: 500; font-size: .93rem;
}
.nav-links > li { position: relative; }
.nav-links a { opacity: .85; transition: opacity .15s ease, color .15s ease; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--green-500); }
.site-header.header-dark:not(.scrolled) .nav-links a:hover,
.site-header.header-dark:not(.scrolled) .nav-links a.active { color: var(--green-300); }

/* dropdown */
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.has-dropdown > a::after {
  content: ""; width: 7px; height: 7px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: .6;
}
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; padding: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: all .18s ease;
  color: var(--text-900);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: var(--radius-sm); opacity: 1;
}
.dropdown a strong { font-family: var(--font-display); font-size: .92rem; font-weight: 600; }
.dropdown a small { font-size: .78rem; color: var(--text-600); }
.dropdown a:hover { background: var(--bg-soft); color: inherit; }
.dropdown a:hover strong { color: var(--green-600); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110;
  color: inherit;
}
.burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: all .25s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 105;
  background: #0C1310; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-start; padding: 96px 32px 40px;
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a small { display: block; font-family: var(--font-body); font-size: .8rem; font-weight: 400; color: var(--text-400); }
.mobile-nav .btn { margin-top: 28px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--ink-900); color: #fff;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(67, 176, 42, .22), transparent 60%),
    radial-gradient(700px 420px at -8% 110%, rgba(46, 158, 79, .16), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-grid > *, .split > *, .contact-grid > *, .biz-grid > * { min-width: 0; }
.hero-copy .display-xl { margin-bottom: 22px; }
.hero-copy .lead { max-width: 34rem; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 44px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: #B9C6BE; }
.hero-badge svg { width: 18px; height: 18px; color: var(--green-300); flex: none; }

.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute; background: #fff; color: var(--text-900);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.float-card .num { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1; }
.float-card .lbl { font-size: .78rem; color: var(--text-600); }
.float-card .ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--green-100); color: var(--green-600);
  display: grid; place-items: center;
}
.float-card .ico svg { width: 22px; height: 22px; }
.fc-1 { bottom: -24px; left: -18px; }
.fc-2 { top: -20px; right: -8px; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--ink-900); color: #fff; }

.section-head { max-width: 44rem; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .display-lg { margin-bottom: 16px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--ink-900); color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 300px at 90% 0%, rgba(141, 198, 63, .18), transparent 60%);
}
.stat { position: relative; display: flex; flex-direction: column; }
.stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.7rem; line-height: 1.1;
}
.stat .num small { font-size: .6em; }
/* Keep every label aligned directly below its value. This reads more naturally
   in both the milestones and KPI bands, even when another label wraps. */
.stat .lbl { color: #93A29A; font-size: .9rem; margin-top: 12px; }

/* ---------- Company cards ---------- */
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.company-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-800); color: #fff;
  min-height: 460px; display: flex; align-items: flex-end;
  transition: transform .25s ease, box-shadow .25s ease;
}
.company-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.company-card .bg {
  position: absolute; inset: 0;
}
.company-card .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.company-card:hover .bg img { transform: scale(1.05); }
.company-card .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 16, 13, .96) 16%, rgba(10, 16, 13, .62) 52%, rgba(10, 16, 13, .16) 78%);
}
.company-card .bg.plain { background: linear-gradient(140deg, #16391f 0%, var(--ink-800) 46%, var(--ink-900) 100%); }
.company-card .bg.plain::after { background: radial-gradient(520px 340px at 86% 34%, rgba(141,198,63,.26), transparent 62%); }
.company-card .brand-watermark {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: 34%; max-width: 320px; z-index: 0; opacity: .92;
  filter: drop-shadow(0 18px 44px rgba(0, 0, 0, .45));
  pointer-events: none;
}

.company-card .card-body { position: relative; z-index: 1; padding: 34px; width: 100%; }
.company-card .tag {
  display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(141, 198, 63, .16); color: var(--green-300);
  border: 1px solid rgba(141, 198, 63, .35);
  padding: 6px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.company-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.company-card p { color: #C4CFc8; font-size: .95rem; max-width: 30rem; margin-bottom: 18px; }
.company-card .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--green-300);
}
.company-card .link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.company-card:hover .link svg { transform: translateX(4px); }
.company-card.wide { grid-column: 1 / -1; min-height: 380px; }

/* ---------- Feature list ---------- */
.feature-list { display: grid; gap: 22px; }
.feature {
  display: flex; gap: 18px; align-items: flex-start;
}
.feature .ico {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center;
}
.feature .ico svg { width: 22px; height: 22px; }
.on-dark .feature .ico { background: rgba(141,198,63,.14); color: var(--green-300); }
.feature h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { color: var(--text-600); font-size: .93rem; }
.on-dark .feature p { color: #93A29A; }

/* ---------- Photo composition ---------- */
.photo-stack { position: relative; }
.photo-stack .main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-stack .main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.photo-stack .over {
  position: absolute; bottom: -34px; right: -26px; width: 46%;
  border-radius: var(--radius-md); overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.section-dark .photo-stack .over, .hero .photo-stack .over { border-color: var(--ink-800); }
.photo-stack .over img { aspect-ratio: 4/3; object-fit: cover; }

/* Wide truck photos need their native landscape composition preserved. */
.photo-stack-wide .main { aspect-ratio: 16 / 9; }
.photo-stack-wide .main img { height: 100%; aspect-ratio: auto; object-position: center; }
.photo-stack-wide .over {
  top: 18px; right: 18px; bottom: auto; width: 30%;
}

/* The fleet photo is 4:3; a taller frame keeps both trucks visible. */
.page-hero.about-hero .hero-photo { aspect-ratio: 3 / 2; }
.page-hero.about-hero .hero-photo img {
  height: 100%; max-height: none; object-position: center 64%;
}

/* ---------- Careers ---------- */
.job-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.job-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.job-card .job-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.job-card h3 { font-size: 1.2rem; }
.job-card .co {
  font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-700); background: var(--green-100);
  padding: 5px 11px; border-radius: var(--radius-pill); white-space: nowrap;
}
.job-card p { color: var(--text-600); font-size: .93rem; flex: 1; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.job-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--text-600);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.job-meta svg { width: 14px; height: 14px; color: var(--green-600); }
.job-card .btn { align-self: flex-start; }

/* requirements list inside job cards */
.job-reqs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px;
  padding: 16px 18px; margin: 2px 0 4px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.job-reqs li { display: flex; gap: 9px; align-items: flex-start; font-size: .84rem; color: var(--text-600); }
.job-reqs svg { width: 15px; height: 15px; flex: none; color: var(--green-600); margin-top: 2px; }

/* business & partnership forms */
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.biz-grid .form-card { height: 100%; display: flex; flex-direction: column; }
.biz-grid .form-grid { flex: 1; align-content: start; }
.form-card > h3 { font-size: 1.25rem; margin-bottom: 6px; }
.form-card .form-sub { color: var(--text-600); font-size: .92rem; margin-bottom: 24px; }

/* language switch */
.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .04em;
  padding: 9px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); color: inherit;
  transition: border-color .15s ease, color .15s ease;
}
.lang-switch svg { width: 14px; height: 14px; opacity: .75; }
.lang-switch:hover { border-color: var(--green-500); color: var(--green-600); }
.site-header.header-dark:not(.scrolled) .lang-switch { border-color: rgba(255,255,255,.28); }
.site-header.header-dark:not(.scrolled) .lang-switch:hover { border-color: var(--green-300); color: var(--green-300); }
.mobile-nav .lang-switch { align-self: flex-start; margin-top: 20px; font-size: .9rem; border-color: rgba(255,255,255,.28); }

.career-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.path-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px; transition: transform .2s ease, box-shadow .2s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.path-card .ico {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--grad-green); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
}
.path-card .ico svg { width: 26px; height: 26px; }
.path-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.path-card p { color: var(--text-600); font-size: .92rem; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 42px; box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; color: var(--text-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(67, 176, 42, .12);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--text-400); margin-top: 14px; }
.form-success {
  display: none; background: var(--green-100); color: var(--green-700);
  border: 1px solid var(--green-300); border-radius: var(--radius-sm);
  padding: 14px 18px; font-weight: 500; margin-top: 16px;
}

/* Server-side form feedback and hidden anti-spam field. */
.server-feedback {
  position: fixed; z-index: 200; top: 92px; left: 50%; transform: translateX(-50%);
  width: min(620px, calc(100% - 36px));
  padding: 14px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  background: var(--green-100); color: var(--green-700); border: 1px solid var(--green-300);
}
.server-feedback p { margin: 0; font-weight: 600; }
.server-feedback .error { background: #FFF1F0; color: #9F1C16; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.loc-list { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
.loc {
  display: flex; gap: 16px; padding: 20px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
}
.loc-contact { padding-block: 16px; }
.loc .ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: var(--green-100); color: var(--green-700); display: grid; place-items: center;
}
.loc .ico svg { width: 20px; height: 20px; }
.loc h4 { font-size: .98rem; }
.loc p { font-size: .88rem; color: var(--text-600); }
.loc p a { color: inherit; white-space: nowrap; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--ink-900); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 88px);
  text-align: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(620px 320px at 15% 0%, rgba(141, 198, 63, .2), transparent 60%),
    radial-gradient(520px 300px at 90% 100%, rgba(46, 158, 79, .18), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner .display-lg { margin-bottom: 16px; }
.cta-banner .lead { max-width: 38rem; margin: 0 auto 34px; }
.cta-banner .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative; background: var(--ink-900); color: #fff;
  padding: 170px 0 100px; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 85% -10%, rgba(67, 176, 42, .2), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero .display-xl, .page-hero .display-lg { margin-bottom: 18px; max-width: 18em; }
.page-hero .lead { max-width: 40rem; }
.page-hero.with-photo { padding-bottom: 0; }
.page-hero .hero-photo {
  margin-top: 64px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-hero .hero-photo img { width: 100%; max-height: 520px; object-fit: cover; }

.breadcrumb { display: flex; gap: 8px; font-size: .84rem; color: #93A29A; margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--green-300); }

/* ---------- Info chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 9px 16px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.chip svg { width: 15px; height: 15px; color: var(--green-300); }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 14px; margin-top: 26px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-600); }
.on-dark .checklist li { color: #B9C6BE; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--green-500); margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #fff; padding: 80px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid .brand { margin-bottom: 18px; }
.footer-grid p { color: #93A29A; font-size: .9rem; max-width: 22rem; }
.footer-phone {
  display: inline-flex; align-items: center; margin-top: 14px;
  color: #D5DDD8; font-family: var(--font-display); font-size: .92rem; font-weight: 600;
  transition: color .15s ease;
}
.footer-phone:hover { color: var(--green-300); }
.footer-col h4 {
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: #93A29A; margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; font-size: .92rem; }
.footer-col a { color: #D5DDD8; transition: color .15s ease; }
.footer-col a:hover { color: var(--green-300); }
.footer-col li span { color: #93A29A; font-size: .84rem; display: block; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 32px; font-size: .82rem; color: #6E7D74;
}
.footer-signature { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.footer-signature a { color: #D5DDD8; font-weight: 600; transition: color .15s ease; }
.footer-signature a:hover { color: var(--green-300); }
.footer-heart { color: var(--green-300); font-size: 1rem; line-height: 1; }
.footer-divider { color: #425149; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .display-xl { font-size: 3.2rem; }
  .display-lg { font-size: 2.6rem; }
  .display-md { font-size: 2rem; }
  .hero-grid, .split, .contact-grid, .biz-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 40px 32px; }
  .career-paths { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero-media { max-width: 620px; }
  .photo-stack .over { bottom: -20px; right: 0; }
}

@media (max-width: 768px) {
  .display-xl { font-size: 2.6rem; }
  .display-lg { font-size: 2.2rem; }
  .display-md { font-size: 1.8rem; }
  .lead { font-size: 1.05rem; }
  .stat .num { font-size: 2.2rem; }
  .nav-links, .nav-cta .btn-outline, .nav-cta .btn-dark, .nav-cta .btn-primary { display: none; }
  .burger { display: flex; }
  .company-grid, .job-grid, .form-grid { grid-template-columns: minmax(0, 1fr); }
  .company-card { min-height: 400px; }
  .company-card .brand-watermark { width: 44%; max-width: 200px; opacity: .38; right: 6%; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 72px 0; }
  .form-card { padding: 28px 22px; }
  .fc-2 { display: none; }
  .fc-1 { left: 8px; bottom: -18px; }
  .photo-stack-wide .over { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .container { width: calc(100% - 36px); }
  .job-reqs { grid-template-columns: 1fr; }
  .job-card .job-top { flex-direction: column; }
  .btn { white-space: normal; text-align: center; line-height: 1.35; }
  .hero-ctas .btn, .cta-banner .actions .btn, .form-card .btn { width: 100%; }
  .mobile-nav { padding-inline: 24px; }
}

@media (max-width: 350px) {
  .display-xl { font-size: 2.25rem; }
  .display-lg { font-size: 2rem; }
  .nav-wrap { gap: 10px; }
  .brand { gap: 8px; }
  .brand::before { width: 46px; height: 34px; background-size: 74px auto; background-position-y: -10px; }
  .brand span { display: none; }
}
