:root {
  --navy: #10233f;
  --blue: #1d4f86;
  --charcoal: #202834;
  --muted: #657282;
  --line: #d9e1ea;
  --soft: #f4f7fa;
  --white: #ffffff;
  --accent: #0f8b6f;
  --shadow: 0 18px 45px rgba(16, 35, 63, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 225, 234, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
}

.brand strong {
  color: var(--navy);
  font-size: 16px;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--charcoal);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 700;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.language-switcher a {
  text-decoration: none;
}

.language-switcher a[aria-current="true"] {
  color: var(--navy);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
}

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

.btn-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 620px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.94), rgba(16, 35, 63, 0.68), rgba(16, 35, 63, 0.18)), url("../img/hero-sourcing.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  align-content: center;
  max-width: 680px;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #b9d7ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  max-width: 720px;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 30px;
  color: #edf4ff;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: 78px 0;
}

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

.section-title {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 35, 63, 0.06);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.process {
  counter-reset: process;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
  font-size: 13px;
}

.cta-band {
  color: var(--white);
  background: var(--navy);
  padding: 62px 0;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  color: #dce8f7;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 16px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .grid-3,
  .grid-2,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 88px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand strong {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .card,
  .contact-panel {
    padding: 20px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 9px 14px;
    text-align: center;
  }
}
