:root {
  --ink: #071827;
  --navy: #08233d;
  --navy-2: #0d345a;
  --blue: #0b63ce;
  --blue-2: #37a8ff;
  --gold: #c99632;
  --paper: #ffffff;
  --soft: #f4f8fc;
  --line: #d8e3ef;
  --text: #243243;
  --muted: #62748a;
  --shadow: 0 24px 70px rgba(7, 24, 39, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}

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

a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 24, 39, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  font-weight: 900;
  font-size: 2.02rem;
  letter-spacing: -.04em;
  line-height: 1;
}

.brand-sub {
  font-size: .67rem;
  line-height: 1.1;
  opacity: .88;
  border-left: 1px solid rgba(255,255,255,.32);
  padding-left: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .9rem;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.nav-apply {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white !important;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(11,99,206,.28);
}

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center;
  opacity: .62;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(55,168,255,.26), transparent 33%),
    linear-gradient(90deg, rgba(7,24,39,.98) 0%, rgba(7,24,39,.86) 42%, rgba(7,24,39,.34) 100%);
}

.hero-content {
  position: relative;
  color: white;
  padding: 72px 0;
}

.kicker, .section-label {
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin: 0 0 13px;
}

h1, h2, h3 { margin-top: 0; line-height: 1.08; }

h1 {
  max-width: 790px;
  font-size: clamp(2.75rem, 6vw, 5.55rem);
  letter-spacing: -.06em;
  margin-bottom: 24px;
}

.lead {
  max-width: 620px;
  color: rgba(255,255,255,.85);
  font-size: 1.27rem;
  margin-bottom: 34px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 30px rgba(11,99,206,.3);
}

.btn-ghost {
  color: white;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.38);
}

.proof {
  background: white;
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  gap: 16px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  align-items: flex-start;
}

.proof-item:last-child { border-right: 0; }

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef6ff;
  border-radius: 12px;
}

.proof-item strong { color: var(--navy); display: block; }
.proof-item p { margin: 3px 0 0; font-size: .9rem; color: var(--muted); }

.section { padding: 92px 0; }

.center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

.center > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.13rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.industries, .resources, .faq-section { background: var(--soft); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-tile {
  min-height: 292px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: white;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.industry-tile:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,24,39,.9), rgba(7,24,39,.28));
}

.industry-tile div { position: relative; }

.industry-tile h3 {
  color: white;
  font-size: 1.33rem;
  margin-bottom: 8px;
}

.industry-tile p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
}

.tile-logistics { background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=900&q=80"); }
.tile-manufacturing { background-image: url("https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=900&q=80"); }
.tile-staffing { background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80"); }
.tile-construction { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=900&q=80"); }
.tile-more { background-image: url("https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=900&q=80"); }

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.process-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(7,24,39,.08);
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
  margin-bottom: 20px;
}

.process-card h3, .article-grid h3 { color: var(--navy); font-size: 1.4rem; }
.process-card p { color: var(--muted); margin-bottom: 0; }

.partner-band {
  position: relative;
  color: white;
  padding: 88px 0;
  background:
    linear-gradient(rgba(7,24,39,.92), rgba(7,24,39,.92)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.partner-band h2 {
  color: white;
  max-width: 780px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.15);
  margin-top: 34px;
  border: 1px solid rgba(255,255,255,.15);
}

.partner-grid div {
  background: rgba(255,255,255,.08);
  padding: 28px;
  font-weight: 850;
  min-height: 112px;
  display: flex;
  align-items: center;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.article-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7,24,39,.08);
}

.article-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.article-grid div { padding: 22px; }

.article-grid h3 {
  font-size: 1.16rem;
  line-height: 1.18;
}

.article-grid p { color: var(--muted); font-size: .94rem; }
.article-grid a { color: var(--blue); font-weight: 850; text-decoration: none; }

.faq-list {
  max-width: 980px;
  margin: 36px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(7,24,39,.08);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 0; }

.faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  color: var(--navy);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list strong {
  color: var(--blue);
  text-align: right;
}

.faq-list p {
  margin: -8px 26px 22px;
  color: var(--muted);
}

.apply-band {
  padding: 74px 0;
  background: white;
}

.apply-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border-radius: 30px;
  padding: 44px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.apply-card h2 {
  color: white;
  max-width: 760px;
}

.apply-card p:not(.section-label) {
  color: rgba(255,255,255,.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 58px;
  align-items: start;
}

.contact-info {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-info p {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  margin: 0;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 99, 206, .12);
}

.contact-form small { color: var(--muted); }

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.76);
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 44px;
}

.footer a { color: white; }
.footer-brand { margin-bottom: 14px; display: inline-flex; }
.copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 34px;
  padding-top: 20px;
  font-size: .9rem;
}

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 14px 22px 24px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; }
  .nav-apply { text-align: center; margin-top: 8px; }
  .menu-button {
    display: inline-flex;
    background: rgba(255,255,255,.08);
    color: white;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 800;
  }
  .proof-grid, .tile-grid, .article-grid, .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 620px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .brand-mark { font-size: 1.55rem; }
  .brand-sub { font-size: .56rem; }
  .hero { min-height: 620px; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(7,24,39,.98), rgba(7,24,39,.75));
  }
  .section { padding: 64px 0; }
  .proof-grid, .tile-grid, .article-grid, .partner-grid {
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-item:last-child { border-bottom: 0; }
  .apply-card {
    padding: 28px;
    align-items: stretch;
    flex-direction: column;
  }
  .faq-list summary {
    grid-template-columns: 1fr;
  }
  .faq-list strong { text-align: left; }
}
