/* ---------- Hire — site styles ---------- */

:root {
  --navy: #121F63;
  --navy-dark: #0A123F;
  --navy-mid: #1E2E82;
  --ink: #12131A;
  --muted: #5B6178;
  --line: #D7DBEA;
  --bg: #E9EDF7;
  --bg-soft: #DEE4F2;
  --white: #FFFFFF;
  --radius-lg: 18px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(18, 31, 99, 0.10);
  --shadow-sm: 0 4px 14px rgba(18, 31, 99, 0.06);
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 16.5px;
}

section { padding: 88px 0; }

/* ---------- Logo ---------- */

.logotype {
  font-family: 'Baloo 2', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}

.logotype.on-dark { color: var(--white); }

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--white);
  transition: background 0.15s ease;
}

.icon-link:hover { background: var(--navy-mid); }

.icon-link svg { width: 16px; height: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-primary:hover { background: var(--navy-mid); }

.btn-outline {
  background: transparent;
  border-color: var(--navy-dark);
  color: var(--navy-dark);
}

.btn-outline:hover { background: var(--navy-dark); color: var(--white); }

.btn-outline.on-dark {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-outline.on-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-dark);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--navy-dark);
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(700px 400px at 85% -10%, rgba(18,31,99,0.14), transparent 60%),
    var(--bg-soft);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
}

.hero-stats .stat b {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-dark);
}

.hero-stats .stat span {
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  background: linear-gradient(155deg, var(--navy-dark), var(--navy-mid) 70%, var(--navy));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-visual .tag {
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
}

.hero-visual .quote {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-visual .quote-attr {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  opacity: 0.8;
}

/* ---------- Focus areas (roles) ---------- */

#what-we-do { background: var(--bg); }

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

.role-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy-mid);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.role-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.role-card .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy-mid);
  opacity: 0.55;
  margin-bottom: 10px;
}

.role-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Partner ecosystem ---------- */

.partners-section { background: var(--bg-soft); }

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.partner-badge {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  box-shadow: var(--shadow-sm);
}

.disclaimer {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Value props ---------- */

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

.value-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.value-card h4 {
  font-size: 16.5px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--muted);
}

.value-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card .icon svg { width: 20px; height: 20px; }

/* ---------- Dark sections (Why Hire + Process) ---------- */

.dark-section { background: var(--navy-dark); color: var(--white); }

.dark-section .section-head h2 { color: var(--white); }
.dark-section .section-head p { color: rgba(255,255,255,0.65); }

.dark-section .value-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}

.dark-section .value-card h4 { color: var(--white); }
.dark-section .value-card p { color: rgba(255,255,255,0.7); }

.dark-section .value-card .icon {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-step {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: rgba(255,255,255,0.04);
}

.process-step .step-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 14px;
}

.process-step h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
}

/* ---------- Testimonials ---------- */

#testimonials { background: var(--bg); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p.quote {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 18px;
}

.testimonial-card .attr {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-mid);
}

.testimonial-card .attr span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Contact ---------- */

.contact-section {
  background:
    radial-gradient(600px 320px at 10% 10%, rgba(18,31,99,0.10), transparent 60%),
    var(--bg-soft);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-info h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 16px; }

.contact-info p.lede {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
}

.contact-detail .icon-link { flex-shrink: 0; }

form.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

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

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
}

.field textarea { resize: vertical; min-height: 110px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
}

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-nav a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: var(--white); }

.footer-social { display: flex; gap: 10px; }

.footer-social .icon-link {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.footer-social .icon-link:hover { background: rgba(255,255,255,0.18); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}

.footer-bottom a { text-decoration: underline; }

/* ---------- Privacy page ---------- */

.legal-page { padding: 64px 0 100px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; display: block; }
.legal-page h2 { font-size: 19px; margin: 34px 0 12px; }
.legal-page h3 { font-size: 15.5px; margin: 20px 0 8px; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; }
.legal-page .back-link { display: inline-block; margin-bottom: 28px; font-weight: 700; color: var(--navy-mid); }

/* ---------- Mobile ---------- */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .nav-links, .nav-right .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 480px) {
  .roles-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
}
