
:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --dark: #020617;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px; display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.brand { font-size: 1.6rem; font-weight: 700; }
.domain { font-size: 0.95rem; color: #64748b; }
nav { display: flex; gap: 28px; flex-wrap: wrap; }
nav a { font-size: 0.95rem; color: #334155; }
nav a:hover { color: var(--dark); }

.hero { background: linear-gradient(to bottom, #f1f5f9, #ffffff); padding: 72px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }

.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: 0.28em; color: #64748b; font-size: 0.82rem; }
.eyebrow.small { letter-spacing: 0.22em; font-size: 0.78rem; }
.eyebrow.dark { color: #94a3b8; }

h1, h2, h3 { margin: 0; line-height: 1.12; }
h1 { margin-top: 18px; font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { margin-top: 12px; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }

.lead { margin: 22px 0 0; font-size: 1.15rem; color: var(--muted); max-width: 760px; }
.recruiter-line { margin: 20px 0 0; font-size: 1.08rem; font-weight: 700; }
.buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.btn { display: inline-block; padding: 14px 22px; border-radius: 14px; font-weight: 700; font-size: 0.95rem; }
.btn-dark { background: #0f172a; color: #fff; }
.btn-light { border: 1px solid #cbd5e1; background: #fff; color: #0f172a; }
.btn.strong { background: #fff; color: #0f172a; border: none; }

.hero-photo-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: 32px; padding: 14px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}
.hero-photo { border-radius: 24px; width: 100%; max-width: 420px; margin: 0 auto; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; padding: 28px 0; }
.mini-eyebrow { text-transform: uppercase; letter-spacing: 0.22em; color: #64748b; font-size: 0.78rem; }
.logo-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-box {
  border: 1px solid var(--line); background: var(--soft); border-radius: 18px; padding: 16px;
  text-align: center; font-weight: 700; color: #334155;
}

.section { padding: 88px 0; }
.section-muted { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--dark); color: #fff; }
.two-col { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }

.card-grid { display: grid; gap: 22px; margin-top: 40px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid var(--line); background: #fff; border-radius: 30px; padding: 30px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}
.card.soft { background: var(--soft); }
.dark-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.section p, .card p { color: var(--muted); }
.section-dark p, .section-dark li, .section-dark .card p { color: #cbd5e1; }

.bullet-list { margin: 20px 0 0; padding-left: 20px; }
.bullet-list li { margin-bottom: 12px; }

.sector-card { margin-top: 34px; }
.sector-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sector-item {
  background: var(--soft); border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px; color: #334155;
}

.impact-box {
  margin-top: 24px; padding: 18px; border-radius: 18px; background: var(--soft); border: 1px solid var(--line);
}
.impact-label { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem; color: #64748b; margin-bottom: 8px; }

.cta-box {
  background: var(--dark); color: #fff; border-radius: 36px; padding: 42px;
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
}
.cta-box p { color: #cbd5e1; }

.contact-section { border-top: 1px solid var(--line); }
.contact-list { margin-top: 26px; }
.contact-list p { margin: 0 0 16px; }
.contact-list a { color: #0f172a; text-decoration: underline; }

.contact-form { padding: 32px; }
.contact-form label {
  display: block; margin: 0 0 8px; font-size: 0.95rem; font-weight: 700; color: #334155;
}
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #cbd5e1; background: #fff; border-radius: 14px; padding: 14px 15px;
  font: inherit; margin-bottom: 16px;
}
.form-note { font-size: 0.9rem; margin-top: 14px; color: #64748b !important; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid, .two-col, .card-grid.three, .card-grid.two, .card-grid.four, .logo-grid, .sector-grid {
    grid-template-columns: 1fr;
  }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 50px; }
}
