:root {
  --color-navy: #113348;
  --color-dark-blue: #1f4f62;
  --color-deep-blue: #0f2d3f;
  --color-cyan: #0fb8c4;
  --color-cyan-soft: #bdeff1;
  --color-text: #122d3c;
  --color-muted: #607f91;
  --color-background: #f8fafb;
  --color-border: #dfe8ed;
  --color-white: #ffffff;
  --shadow-soft: 0 12px 28px rgba(18, 45, 60, 0.12);
  --radius-image: 22px;
  --radius-ui: 8px;
  --container: 1260px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--color-background);
  color: var(--color-text);
  font-family: "Poppins", "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(72px, 8vw, 128px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-height);
  padding: 14px clamp(22px, 7vw, 136px);
  background: rgba(248, 250, 251, 0.92);
  border-bottom: 1px solid rgba(223, 232, 237, 0.72);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 28px rgba(17, 51, 72, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(188px, 22vw, 300px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: var(--color-navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--color-cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-ui);
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  overflow: hidden;
  background: #f4f8fa;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/images/hero-background-clean.png") center 44% / cover no-repeat;
  opacity: 1;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 250, 251, 0.76) 0%, rgba(248, 250, 251, 0.62) 39%, rgba(248, 250, 251, 0.3) 70%, rgba(248, 250, 251, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.1) 52%, rgba(255, 255, 255, 0.68) 76%, rgba(255, 255, 255, 0.99) 100%);
  content: "";
}

.hero-copy {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
  padding-top: clamp(98px, 11vh, 152px);
  padding-bottom: clamp(86px, 9vh, 124px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 24px;
  padding: 3px 14px;
  border: 2px solid rgba(15, 184, 196, 0.28);
  border-radius: 5px;
  color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 10px rgba(15, 184, 196, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-eyebrow {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #37c9d1, #10aebb);
}

.hero h1 {
  max-width: 940px;
  margin: 0 0 28px;
  color: var(--color-text);
  font-size: clamp(3rem, 9vw, 7.25rem);
  font-weight: 800;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: #668699;
  font-style: italic;
  font-weight: 800;
}

.hero-lede {
  max-width: 980px;
  margin: 0 0 8px;
  color: #587789;
  font-size: clamp(1.05rem, 1.65vw, 1.48rem);
  font-weight: 600;
  line-height: 1.75;
}

.service-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: clamp(126px, 8vw, 146px);
  padding-inline: clamp(22px, 8vw, 144px);
  background: var(--color-dark-blue);
  color: var(--color-white);
  box-shadow: 0 -48px 72px rgba(255, 255, 255, 0.94);
}

.service-strip a {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px 10px;
  text-align: center;
  font-size: clamp(0.78rem, 1.35vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0;
}

.mission {
  background: var(--color-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: stretch;
}

.mission-rail {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(36px, 4.5vw, 58px);
  min-height: 100%;
}

.mission-visual {
  min-height: 0;
}

.mission-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-image);
  box-shadow: 0 0 0 1px rgba(17, 51, 72, 0.04);
}

.mission-content h2,
.portfolio h2,
.company h2 {
  margin: 0 0 34px;
  color: var(--color-text);
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.1;
}

.mission-content p,
.service-item p,
.company p {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 400;
  line-height: 1.6;
}

.mission-content h3 {
  margin: 40px 0 20px;
  color: var(--color-text);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.25;
}

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

.feature-box {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(248, 250, 251, 0.9);
  box-shadow: 0 1px 7px rgba(17, 51, 72, 0.08);
}

.feature-box h3 {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 800;
  line-height: 1.14;
}

.feature-box p {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.18;
}

.mini-icon {
  width: 30px;
  height: 30px;
  background: var(--color-cyan);
  mask: var(--mask) center / 28px 28px no-repeat;
}

.bolt { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13 2 3 14h7l-1 8 11-13h-7l0-7Z'/%3E%3C/svg%3E"); }
.bulb { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 21h6v-2H9v2Zm3-19a7 7 0 0 0-4 12.74V17h8v-2.26A7 7 0 0 0 12 2Zm2.78 11.08-.78.59V15h-4v-1.33l-.78-.59A5 5 0 1 1 14.78 13.08Z'/%3E%3C/svg%3E"); }
.check { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 16.6 4.8 12.4 3.4 13.8 9 19.4 21 7.4 19.6 6z'/%3E%3C/svg%3E"); }
.lock { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M17 9V7A5 5 0 0 0 7 7v2H5v12h14V9h-2ZM9 7a3 3 0 0 1 6 0v2H9V7Zm8 12H7v-8h10v8Z'/%3E%3C/svg%3E"); }

.portfolio {
  background: #fbfcfd;
}

.section-heading {
  margin-bottom: clamp(42px, 6vw, 68px);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(58px, 8vw, 94px) clamp(52px, 6vw, 72px);
}

.service-item {
  min-width: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 5px;
  background: linear-gradient(180deg, #3fcbd2, #11b0bd);
  box-shadow: 0 9px 16px rgba(15, 184, 196, 0.22);
}

.service-icon::before {
  width: 35px;
  height: 35px;
  background: var(--color-white);
  content: "";
  mask: var(--mask) center / contain no-repeat;
}

.icon-chat { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h16v11H8l-4 4V4Zm2 2v8.2L7.2 13H18V6H6Z'/%3E%3C/svg%3E"); }
.icon-eye { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 5C6.5 5 2.4 10.3 2.2 10.6L1.7 12l.5 1.4C2.4 13.7 6.5 19 12 19s9.6-5.3 9.8-5.6l.5-1.4-.5-1.4C21.6 10.3 17.5 5 12 5Zm0 12c-4.1 0-7.4-3.5-8.3-5 .9-1.5 4.2-5 8.3-5s7.4 3.5 8.3 5c-.9 1.5-4.2 5-8.3 5Zm0-8a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E"); }
.icon-shield { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3Zm6 9c0 3.9-2.5 7.6-6 8.8-3.5-1.2-6-4.9-6-8.8V6.4l6-2.2 6 2.2V11Z'/%3E%3C/svg%3E"); }
.icon-key { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.85' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.15 10.4A5.95 5.95 0 0 1 12 4.55a5.95 5.95 0 0 1 5.85 5.85'/%3E%3Cpath d='M8.75 10.6A3.28 3.28 0 0 1 12 7.35a3.28 3.28 0 0 1 3.25 3.25v.9'/%3E%3Cpath d='M12 10.25c.75 0 1.35.6 1.35 1.35 0 3.55-.98 5.85-2.65 7.6'/%3E%3Cpath d='M7.45 14.25c.35-1.15.55-2.05.55-2.75A4 4 0 0 1 12 7.5'/%3E%3Cpath d='M16 13c-.1 2.2-.55 4.1-1.35 5.7'/%3E%3Cpath d='M4.85 14.75c.65-1.35.95-2.5.95-3.35'/%3E%3Cpath d='M18.55 15.1c-.18 1.15-.47 2.25-.9 3.3'/%3E%3Cpath d='M10.2 13.7c-.25 1.65-.85 3.25-1.8 4.8'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-network { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 2h2v4h-2V2ZM4.9 4.2 7.7 7 6.3 8.4 3.5 5.6l1.4-1.4Zm14.2 0 1.4 1.4-2.8 2.8L16.3 7l2.8-2.8ZM11 18h2v4h-2v-4ZM3 11h4v2H3v-2Zm14 0h4v2h-4v-2Zm-9.3 4.6L4.9 18.4 3.5 17l2.8-2.8 1.4 1.4Zm10 0 1.4-1.4 2.8 2.8-1.4 1.4-2.8-2.8ZM12 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z'/%3E%3C/svg%3E"); }
.icon-globe { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8.4'/%3E%3Cpath d='M3.8 12h16.4M12 3.6c2.45 2.55 3.75 5.35 3.75 8.4s-1.3 5.85-3.75 8.4M12 3.6C9.55 6.15 8.25 8.95 8.25 12s1.3 5.85 3.75 8.4M5.8 7.35c1.7.95 3.75 1.45 6.2 1.45s4.5-.5 6.2-1.45M5.8 16.65c1.7-.95 3.75-1.45 6.2-1.45s4.5.5 6.2 1.45'/%3E%3C/g%3E%3C/svg%3E"); }
.icon-medical { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M10 3h4v7h7v4h-7v7h-4v-7H3v-4h7V3Zm2 2v7H5v0h7v7h0v-7h7v0h-7V5Z'/%3E%3C/svg%3E"); }
.icon-target { --mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm0 3a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm0 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E"); }

.service-item h3 {
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
}

.service-item p {
  margin: 0 0 34px;
  text-align: justify;
}

.service-item img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
  border-radius: var(--radius-image);
  box-shadow: 0 0 0 1px rgba(17, 51, 72, 0.06);
}

.presence,
.company {
  background: var(--color-dark-blue);
  color: var(--color-white);
}

.presence {
  padding-bottom: clamp(34px, 5vw, 66px);
}

.presence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.map-wrap img {
  width: 100%;
  opacity: 0.96;
}

.presence h2 {
  margin: 0 0 28px;
  color: var(--color-cyan);
  font-size: clamp(2.4rem, 5.2vw, 4.1rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.08;
}

.country-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.country-list li {
  position: relative;
  min-height: 38px;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.country-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--color-cyan);
  content: "";
}

.company {
  padding-top: clamp(34px, 5vw, 66px);
}

.company .eyebrow {
  color: var(--color-cyan);
  background: transparent;
  border-color: var(--color-cyan);
  box-shadow: none;
}

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

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
}

.company .registration {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-list {
  display: grid;
  gap: 28px;
}

.contact-list h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0;
}

.contact-list a {
  display: inline-flex;
  color: var(--color-white);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  text-decoration-color: rgba(15, 184, 196, 0.6);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 28px 24px 34px;
  border-top: 6px solid rgba(255, 255, 255, 0.55);
  background: var(--color-background);
  color: var(--color-muted);
  text-align: center;
}

.site-footer img {
  width: min(520px, 82vw);
}

.site-footer p {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0;
}

html.js .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .service-strip,
  .mission-grid,
  .expertise-grid,
  .presence-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    order: 3;
  }

  .mission-content {
    order: 2;
  }

  .mission-visual {
    order: 1;
  }

  .mission-rail {
    display: contents;
  }

  .service-strip {
    min-height: 0;
    padding: 14px 22px;
  }

  .mission-visual img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .presence-grid {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .container,
  .hero-copy {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand img {
    width: min(212px, 64vw);
  }

  .hero-copy {
    padding-top: 74px;
  }

  .hero-media {
    background-position: 35% center;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.5rem);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.62;
  }

  .service-strip {
    grid-template-columns: 1fr;
    box-shadow: 0 -34px 52px rgba(255, 255, 255, 0.94);
  }

  .service-strip a {
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .service-strip a:last-child {
    border-bottom: 0;
  }

  .feature-grid,
  .country-list {
    grid-template-columns: 1fr;
  }

  .service-item p {
    text-align: left;
  }

  .service-item img {
    aspect-ratio: 1.35 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
