:root {
  --ink: #14213d;
  --ink-soft: #33415c;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #dde3df;
  --green: #1f7a5c;
  --green-dark: #11523d;
  --gold: #c89b3c;
  --coral: #cf604c;
  --shadow: 0 24px 60px rgba(20, 33, 61, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(20, 33, 61, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(20, 33, 61, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: min(360px, 42vw);
  min-width: 250px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-header:not(.is-scrolled) .brand {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover {
  background: rgba(31, 122, 92, 0.12);
}

.site-nav a.is-active {
  color: var(--white);
  background: var(--green);
}

.site-header.is-scrolled .site-nav a.is-active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 138px 24px 42px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 22, 34, 0.86), rgba(12, 22, 34, 0.54) 48%, rgba(12, 22, 34, 0.22)),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), rgba(247, 248, 244, 0));
  pointer-events: none;
}

.page-hero {
  min-height: 56vh;
  display: grid;
  align-content: end;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 22, 34, 0.86), rgba(12, 22, 34, 0.58)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(12, 22, 34, 0.86), rgba(12, 22, 34, 0.54)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.services-hero {
  background:
    linear-gradient(90deg, rgba(12, 22, 34, 0.86), rgba(12, 22, 34, 0.54)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.team-hero {
  background:
    linear-gradient(90deg, rgba(12, 22, 34, 0.86), rgba(12, 22, 34, 0.54)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(12, 22, 34, 0.86), rgba(12, 22, 34, 0.54)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-right: min(24vw, 320px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
}

.hero-copy {
  max-width: 710px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 32px));
  margin: 36px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-height: 116px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.hero-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 650;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
}

.trust-strip span,
.sector-list span {
  padding: 9px 13px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.split,
.sectors,
.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.section h2 {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
}

.rich-copy p,
.contact-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 286px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.07);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: #e7f2ed;
  border-radius: 50%;
  font-weight: 850;
}

.service-card:nth-child(2n) .service-icon {
  color: #874532;
  background: #f8e9e3;
}

.service-card h3,
.process-steps h3,
.team-grid h3,
.value-grid h3,
.sector-card-grid h3 {
  margin: 22px 0 10px;
  line-height: 1.2;
  font-size: 1.25rem;
}

.service-card p,
.process-steps p,
.team-grid p,
.value-grid p,
.sector-card-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.process {
  width: 100%;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: #172033;
}

.process .eyebrow {
  color: #f0c66c;
}

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

.process-steps article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-steps span {
  color: #f0c66c;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.75);
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.metrics,
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metrics article,
.office-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.07);
}

.metrics strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.metrics span,
.office-grid p {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.office-grid h3 {
  margin: 0;
  font-size: 1.12rem;
}

.office-grid p {
  margin-bottom: 0;
  font-weight: 600;
}

.values-section {
  padding-top: 24px;
}

.value-grid,
.sector-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-grid article,
.sector-card-grid article {
  min-height: 246px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.07);
}

.value-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: #e7f2ed;
  border-radius: 50%;
  font-weight: 850;
}

.value-grid article:nth-child(2n) span {
  color: #874532;
  background: #f8e9e3;
}

.about-process {
  margin-top: 18px;
}

.sector-cards-section {
  padding-top: 24px;
}

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

.sector-card-grid article {
  min-height: 190px;
  border-left: 5px solid var(--green);
}

.sector-card-grid article:nth-child(2n) {
  border-left-color: var(--coral);
}

.sector-card-grid h3 {
  margin-top: 0;
}

.team {
  padding-top: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-grid article {
  min-height: 238px;
  padding: 0 0 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.07);
}

.team-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  background: #e7f2ed;
}

.team-grid span {
  display: inline-flex;
  margin: 24px 26px 0;
  padding: 6px 10px;
  color: var(--green-dark);
  background: #e7f2ed;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.team-grid h3,
.team-grid p {
  margin-left: 26px;
  margin-right: 26px;
}

.resources {
  padding-top: 24px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-grid a {
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.resource-grid a:hover {
  color: var(--green-dark);
  border-color: rgba(31, 122, 92, 0.38);
}

.downloads {
  padding-top: 92px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.07);
}

.download-card span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 36px;
  color: var(--green-dark);
  background: #e7f2ed;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}

.download-card:nth-child(2n) span {
  color: #874532;
  background: #f8e9e3;
}

.download-card h3 {
  margin: 24px 0 10px;
  line-height: 1.2;
  font-size: 1.25rem;
}

.download-card p {
  margin: 0;
  color: var(--ink-soft);
}

.download-card strong {
  margin-top: 24px;
  color: var(--green-dark);
}

.download-card:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 122, 92, 0.38);
}

.international-section {
  width: 100%;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 32, 51, 0.96), rgba(23, 32, 51, 0.82)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.international-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.international-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.international-panel p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.international-panel .button {
  margin-top: 28px;
}

.international-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.international-grid article {
  min-height: 212px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.international-grid h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.international-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  width: 100%;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 0.96), rgba(247, 248, 244, 0.82)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cbd4d0;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcfa;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #0d1422;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
  font-weight: 800;
}

.footer-links a {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 16px 10px 10px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(20, 33, 61, 0.26);
  font-weight: 850;
}

.whatsapp-float span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #128c4a;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    color: var(--ink);
  }

  .hero {
    min-height: 72vh;
    padding-top: 124px;
  }

  .hero-inner {
    padding-right: 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-panel,
  .service-grid,
  .process-steps,
  .resource-grid,
  .download-grid,
  .international-panel,
  .international-grid,
  .team-grid,
  .metrics,
  .office-grid,
  .value-grid,
  .sector-card-grid,
  .split,
  .sectors,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand {
    width: min(248px, 66vw);
    min-width: 0;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .page-hero {
    min-height: 52vh;
    padding-top: 126px;
    padding-bottom: 52px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel div {
    min-height: auto;
  }

  .section,
  .process,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section h2 {
    font-size: 2.1rem;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 9px;
  }

  .whatsapp-float strong {
    display: none;
  }
}
