:root {
  --ink: #17212f;
  --muted: #647184;
  --surface: #ffffff;
  --paper: #f4f6f8;
  --navy: #0f2742;
  --navy-soft: #173a5e;
  --teal: #0e766f;
  --teal-soft: #e7f2f1;
  --gold: #b98a35;
  --line: rgba(23, 33, 47, 0.12);
  --shadow: 0 22px 54px rgba(15, 39, 66, 0.14);
}

* {
  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", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 9px clamp(18px, 4vw, 58px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.top-bar a {
  color: #ffffff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 244px;
  min-width: 218px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #263449;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

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

.header-cta,
.btn,
.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  font-weight: 900;
}

.header-cta {
  padding: 0 18px;
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(14, 118, 111, 0.22);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: var(--navy);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 108px) 0 54px;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

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

.btn {
  padding: 0 22px;
}

.btn.primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 39, 66, 0.24);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--navy);
}

.hero-media {
  position: relative;
  min-height: 530px;
}

.hero-media img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(15, 39, 66, 0.88);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 39, 66, 0.06);
}

.metrics div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics span,
.country-grid small,
.service-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.section,
.country-section,
.process,
.assurance,
.contact-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading > p:not(.eyebrow) {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card,
.country-grid article {
  min-height: 278px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.service-card {
  box-shadow: 0 12px 32px rgba(15, 39, 66, 0.06);
}

.service-card span {
  display: inline-block;
  margin-bottom: 42px;
}

.service-card p,
.country-grid p,
.timeline p,
.assurance-list p,
.contact-band p {
  color: var(--muted);
}

.country-section {
  width: 100%;
  padding-right: max(18px, calc((100vw - 1180px) / 2));
  padding-left: max(18px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.country-grid article {
  background: linear-gradient(180deg, #ffffff, #f7fafb);
}

.country-grid small {
  display: block;
  margin-bottom: 30px;
}

.process {
  padding-bottom: 92px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(15, 39, 66, 0.22);
}

.timeline div {
  position: relative;
  padding: 34px 24px 0 0;
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 900;
}

.assurance {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 58px;
  align-items: start;
  padding-top: 0;
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance-list p {
  margin: 0;
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  background: #ffffff;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  margin-bottom: 70px;
  padding: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
}

.contact-band h2 {
  color: #ffffff;
}

.contact-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-card a {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  padding: 0 18px;
  background: #1f9f65;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(31, 159, 101, 0.28);
}

@media (max-width: 1060px) {
  .hero,
  .section-heading,
  .assurance,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
    height: 420px;
  }

  .metrics,
  .service-grid,
  .country-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .top-bar {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0;
    padding: 10px 0 0;
  }

  .site-nav.is-open a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 196px;
    min-width: 0;
  }

  .hero {
    width: min(100% - 28px, 1180px);
    padding-bottom: 36px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
    height: 340px;
  }

  .hero-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .metrics,
  .service-grid,
  .country-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metrics div,
  .metrics div:nth-child(2),
  .metrics div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .section,
  .country-section,
  .process,
  .assurance,
  .contact-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-band {
    padding: 30px 22px;
  }
}
