/* ============================================================
   ISOFIA INC — CDL Recruiting Landing Page
   ============================================================ */

:root {
  --ink: #121a1f;
  --ink-800: #1a262e;
  --ink-700: #24333d;
  --emerald: #0c7a5c;
  --emerald-dark: #085c45;
  --emerald-soft: #e6f4ef;
  --amber: #e2a012;
  --amber-dark: #c4890a;
  --text: #1b252c;
  --slate: #54616b;
  --muted: #7a8791;
  --bg: #f7faf8;
  --bg-alt: #e8f1ec;
  --line: #d3e0d9;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 4px 14px rgba(18, 26, 31, 0.07);
  --shadow: 0 16px 40px rgba(18, 26, 31, 0.12);
  --shadow-lg: 0 28px 60px rgba(18, 26, 31, 0.2);
  --maxw: 1140px;
  --head: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Figtree", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }

body {
  font-family: var(--body);
  color: var(--text);
  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; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2, h3 {
  font-family: var(--head);
  line-height: 1.05;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--head);
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 20px; height: 20px; fill: currentColor; }

.btn-primary { background: var(--emerald); }
.btn-primary:hover { background: var(--emerald-dark); }
.btn-accent { background: var(--amber); color: var(--ink); }
.btn-accent:hover { background: #efb22a; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.65);
  color: #fff;
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: 11px 20px; font-size: 1.05rem; }
.btn-block { width: 100%; margin-top: 8px; font-size: 1.3rem; padding: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 26, 31, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--emerald);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
}
.brand-name {
  font-family: var(--head);
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name span { color: #e11d2e; }

.nav { display: flex; align-items: center; }
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  color: #c9d4db;
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-menu .nav-cta {
  background: var(--emerald);
  color: #fff;
  margin-left: 6px;
}
.nav-menu .nav-cta:hover { background: var(--emerald-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  color: #fff;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(105deg, rgba(18,26,31,.96) 0%, rgba(18,26,31,.82) 42%, rgba(12,122,92,.35) 100%),
    url("cascadia-blue.jpg?v=3") center right/cover no-repeat,
    var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(226,160,18,.18), transparent 45%),
    linear-gradient(180deg, transparent 55%, rgba(18,26,31,.55) 100%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .85; }
  to { opacity: 1; }
}
.hero-inner {
  position: relative;
  width: 100%;
  padding: 100px 22px 72px;
}
.hero-brand {
  font-family: var(--head);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  letter-spacing: 4px;
  line-height: .92;
  margin-bottom: 10px;
  color: #fff;
  animation: riseIn .7s ease both;
}
.hero-brand em {
  font-style: normal;
  color: var(--amber);
}
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  animation: riseIn .7s .1s ease both;
}
.hero-creds span {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #d7e8e1;
  background: rgba(12, 122, 92, .28);
  border: 1px solid rgba(12, 122, 92, .55);
  padding: 6px 12px;
  border-radius: 4px;
}
.hero h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  letter-spacing: 1.5px;
  max-width: 640px;
  margin-bottom: 16px;
  color: #f2f6f4;
  animation: riseIn .7s .18s ease both;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #c5d2d8;
  max-width: 540px;
  margin-bottom: 28px;
  animation: riseIn .7s .26s ease both;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: riseIn .7s .34s ease both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--emerald);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trust-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 12px,
    rgba(255,255,255,.04) 12px,
    rgba(255,255,255,.04) 24px
  );
  pointer-events: none;
}
.trust-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  padding: 18px 22px;
}
.trust-item {
  font-family: var(--head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-item span { font-size: 1.15rem; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt {
  background:
    linear-gradient(180deg, var(--bg-alt), #e3eee8);
}
.section-dark {
  background:
    radial-gradient(circle at 15% 0%, rgba(12,122,92,.35), transparent 40%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-800) 60%, #0d3d30 100%);
  color: #fff;
  overflow-x: hidden;
}
#apply .container { width: 100%; max-width: 100%; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.section-head h2.on-dark { color: #fff; }
.eyebrow {
  display: inline-block;
  font-family: var(--head);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--emerald);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.eyebrow.light { color: var(--amber); }
.section-lead { color: var(--slate); font-size: 1.08rem; }
.section-lead.light { color: #b8c7ce; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Benefits (list layout, not card-grid heavy) ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #fff;
}
.benefit {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.benefit:hover { background: var(--emerald-soft); }
.benefit-num {
  font-family: var(--head);
  font-size: 1.5rem;
  color: var(--amber);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.benefit h3 {
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.benefit p { color: var(--slate); font-size: .98rem; }

/* ---------- Fleet ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.fleet-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fleet-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #eef1f6;
}
.fleet-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  font-family: var(--head);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--ink);
}
.fleet-card .swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.45);
  flex: 0 0 auto;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding: 8px 8px 8px 0;
}
.step-num {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-family: var(--head);
  font-size: 1.5rem;
  color: var(--ink);
  background: var(--amber);
  border-radius: 6px;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .98rem; }
.center-cta { text-align: center; margin-top: 42px; }

/* ---------- Requirements ---------- */
.req-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 48px;
  align-items: center;
}
.req-copy h2 {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  color: var(--ink);
  margin: 6px 0 14px;
}
.req-list {
  list-style: none;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}
.req-list li {
  position: relative;
  padding-left: 36px;
  color: var(--text);
  font-weight: 500;
}
.req-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  background: var(--emerald);
  border-radius: 4px;
  box-shadow: inset 0 0 0 5px var(--emerald), inset 0 0 0 7px #fff;
}
.req-panel {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--amber);
}
.req-panel .meta {
  display: grid;
  gap: 14px;
  margin: 22px 0 26px;
}
.req-panel .meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .95rem;
}
.req-panel .meta dt { color: #9aadb8; }
.req-panel .meta dd { font-weight: 700; color: #fff; text-align: right; }
.req-panel h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.req-panel p { color: #b7c5cd; margin-bottom: 8px; }

/* ---------- Authority strip ---------- */
.authority {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.authority span {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .4px;
}
.authority span b { color: var(--emerald); }

/* ---------- Form ---------- */
.apply-form {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--emerald);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  width: 100%;
  min-width: 0;
}
.field { display: flex; flex-direction: column; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fbfefc;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(12, 122, 92, .15);
  background: #fff;
}
.field textarea { resize: vertical; }
.field input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  font-family: var(--body);
  font-weight: 600;
  font-size: .9rem;
  padding: 8px 14px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}
.field-hint {
  margin-top: 6px;
  font-size: .85rem;
  color: var(--slate);
}
.checkbox-field {
  margin-top: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
  color: var(--slate);
  font-size: .93rem;
  line-height: 1.55;
  cursor: pointer;
}
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 2px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.checkbox input[type="checkbox"]:checked {
  background: var(--emerald);
  border-color: var(--emerald);
}
.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.checkbox a {
  color: var(--emerald);
  font-weight: 700;
  text-decoration: underline;
}
.hidden-field { display: none; }
.form-note {
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}
.form-note.error { color: #b42318; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--head);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--ink);
  position: relative;
  padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--emerald);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 22px 18px;
  color: var(--slate);
}
.faq-item a { color: var(--emerald); font-weight: 700; text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--emerald);
  box-shadow: var(--shadow);
}
.contact-ico {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: var(--emerald-soft);
  border-radius: 50%;
}
.contact-card h3 {
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.contact-card p { color: var(--emerald); font-weight: 700; }
.contact-hint { color: var(--muted); font-size: .88rem; display: block; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b7c5cd; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 56px 22px 40px;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand .brand-name { font-size: 1.6rem; }
.footer-tag { color: #8a9aa4; font-size: .95rem; margin-top: 6px; }
.footer-label {
  font-family: var(--head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.15rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a { color: #b7c5cd; font-weight: 500; transition: color .2s; }
.footer-nav a:hover { color: var(--amber); }
.footer-address {
  font-style: normal;
  line-height: 1.7;
  color: #9aadb8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: .88rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #7f919c;
}
.footer-legal a {
  color: #b7c5cd;
  text-decoration: underline;
}
.footer-legal a:hover { color: #fff; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--emerald);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-family: var(--head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1.2rem;
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}

/* ---------- Thank you / legal ---------- */
.thank-you-body { background: var(--ink); }
.thank-you-main {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 88px 0 96px;
}
.thank-you-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(12,122,92,.35), transparent 42%),
    radial-gradient(circle at 80% 0%, rgba(226,160,18,.18), transparent 36%),
    linear-gradient(160deg, var(--ink), var(--ink-800));
}
.thank-you-main .container { position: relative; z-index: 1; }
.thank-you-card {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 52px 44px 44px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--emerald);
}
.thank-you-badge {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 4px;
  background: var(--emerald-soft);
  border: 1px solid rgba(12,122,92,.3);
  color: var(--emerald-dark);
  font-family: var(--head);
  letter-spacing: 1.5px;
  font-size: 1.05rem;
}
.thank-you-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--emerald);
  border-radius: 50%;
}
.thank-you-icon svg { width: 40px; height: 40px; fill: currentColor; }
.thank-you-card h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.thank-you-lead {
  color: var(--slate);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 32px;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.legal-body { background: var(--bg-alt); }
.legal-main { padding: 48px 0 72px; }
.legal-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--emerald);
}
.legal-card h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 24px;
}
.legal-card h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin: 28px 0 12px;
}
.legal-card p,
.legal-card li {
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-card ul { margin: 0 0 12px 20px; }
.legal-card a:not(.btn) {
  color: var(--emerald);
  font-weight: 700;
  text-decoration: underline;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; gap: 34px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--ink);
    padding: 14px 18px 22px;
    border-bottom: 3px solid var(--emerald);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .25s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: 14px; font-size: 1.05rem; }
  .nav-menu .nav-cta { margin-left: 0; text-align: center; }

  .hero { min-height: auto; }
  .hero-inner { padding: 72px 22px 56px; }
  .hero-cta .btn { flex: 1 1 100%; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .apply-form { padding: 22px 16px; }
  #apply .container { padding-left: 16px; padding-right: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; }

  .mobile-call-bar { display: block; }
  body { padding-bottom: 54px; }

  .thank-you-card { padding: 38px 24px 30px; }
  .thank-you-actions .btn { flex: 1 1 100%; }
  .legal-card { padding: 28px 20px; }
  .legal-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 460px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.35rem; }
  .brand-logo { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
