﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Syne:wght@500;600;700;800&display=swap");

:root {
  --brand-900: #0b1912;
  --brand-850: #102519;
  --brand-800: #163322;
  --brand-700: #1f4a30;
  --brand-600: #2d7545;
  --brand-500: #39a45b;
  --brand-400: #63c97f;
  --brand-300: #b9ecc8;
  --brand-200: #def5e6;
  --brand-100: #f2fbf5;

  --ink-900: #0f1f15;
  --ink-700: #2f4337;
  --ink-500: #567062;
  --ink-400: #6e877a;

  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: rgba(255, 255, 255, 0.97);
  --stroke: rgba(17, 46, 29, 0.12);
  --stroke-strong: rgba(17, 46, 29, 0.2);

  --font-body: "Manrope", sans-serif;
  --font-display: "Syne", sans-serif;

  --radius-xxl: 38px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --shadow-soft: 0 14px 35px rgba(8, 30, 17, 0.1);
  --shadow-float: 0 24px 60px rgba(8, 30, 17, 0.22);

  /* Backward-compatible aliases for existing page markup */
  --color-primary: var(--brand-600);
  --color-accent: var(--brand-500);
  --color-dark: var(--brand-900);
  --color-bg-gray: #edf8f1;
  --color-text-main: var(--ink-900);
  --color-text-muted: var(--ink-500);
  --font-main: var(--font-body);
  --shadow-premium: var(--shadow-soft);
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body) !important;
  color: var(--ink-900) !important;
  background:
    radial-gradient(circle at 6% -14%, rgba(57, 164, 91, 0.28), transparent 34%),
    radial-gradient(circle at 102% 2%, rgba(57, 164, 91, 0.2), transparent 32%),
    linear-gradient(180deg, #f5fcf7 0%, #eef8f2 100%) !important;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image:
    radial-gradient(rgba(13, 43, 27, 0.18) 0.6px, transparent 0.6px),
    radial-gradient(rgba(13, 43, 27, 0.15) 0.6px, transparent 0.6px);
  background-size: 34px 34px, 21px 21px;
  background-position: 0 0, 10px 10px;
}

h1,
h2,
h3,
h4,
.heading,
.logo {
  margin-top: 0;
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

p {
  color: var(--ink-500);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.section {
  padding: 96px 0;
}

.text-divider {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 800;
}

.text-divider::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  border: 0;
  border-radius: 999px !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #fff !important;
  background: linear-gradient(140deg, var(--brand-600), var(--brand-500)) !important;
  box-shadow: 0 14px 28px rgba(57, 164, 91, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(57, 164, 91, 0.42);
}

.btn-outline-light {
  color: #f8fff9 !important;
  border: 1px solid rgba(236, 255, 243, 0.48) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-outline-light:hover {
  color: #fff !important;
  border-color: rgba(236, 255, 243, 0.8) !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  padding: 14px 0;
  transition: padding 0.2s ease;
}

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

.menu-bg-wrap {
  position: relative;
  padding: 10px 20px !important;
  margin-top: 10px !important;
  border-radius: 999px !important;
  background: linear-gradient(
    125deg,
    rgba(167, 247, 206, 0.86),
    rgba(11, 25, 18, 0.74)
  ) !important;
  border: 1px solid rgba(222, 245, 230, 0.2);
  box-shadow: 0 18px 40px rgba(4, 12, 8, 0.36);
  backdrop-filter: blur(12px);
}

.site-nav.is-scrolled .menu-bg-wrap {
  box-shadow: 0 12px 28px rgba(4, 12, 8, 0.3);
}

.site-logo-img {
  width: 56px;
  height: auto;
  display: block;
  /* filter: brightness(0) invert(1); */
}

.site-navigation .site-menu {
  align-items: center;
}

.site-navigation .site-menu > li > a {
  color: rgba(236, 255, 243, 0.72) !important;
  padding: 9px 16px !important;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-navigation .site-menu > li > a:hover,
.site-navigation .site-menu > li.active > a {
  color: #fff !important;
  background: rgba(236, 255, 243, 0.15);
}

.burger {
  width: 28px;
  height: 20px;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #f3fff6;
  transition: transform 0.2s ease;
}

.site-mobile-menu {
  width: min(320px, 82vw);
  position: fixed;
  right: 0;
  z-index: 2000;
  height: 100vh;
  padding-top: 20px;
  background: linear-gradient(180deg, #0d2117 0%, #123324 100%);
  transform: translateX(110%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 44px rgba(3, 14, 8, 0.34);
}

.offcanvas-menu .site-mobile-menu {
  transform: translateX(0);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding: 0 20px;
}

.site-mobile-menu .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-close span {
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.site-mobile-menu .site-mobile-menu-body {
  clear: both;
  padding: 0 20px 20px;
}

.site-mobile-menu .site-nav-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-mobile-menu .site-nav-wrap li {
  display: block;
}

.site-mobile-menu .site-nav-wrap li a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(242, 255, 246, 0.78);
  font-weight: 700;
  text-decoration: none;
}

.site-mobile-menu .site-nav-wrap li.active > a,
.site-mobile-menu .site-nav-wrap li a:hover {
  color: #fff;
  background: rgba(222, 245, 230, 0.12);
}

.hero-editorial {
  position: relative;
  margin: 18px 28px 0;
  border-radius: var(--radius-xxl);
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(99, 201, 127, 0.24), transparent 42%),
    linear-gradient(130deg, #09180f 0%, #10281b 52%, #0e1f15 100%);
}

.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
  pointer-events: none;
}

.hero-editorial.has-bg {
  background:
    linear-gradient(120deg, rgba(9, 24, 15, 0.94), rgba(9, 24, 15, 0.74)),
    url("https://images.unsplash.com/photo-1497361127083-d3cace7ab014?auto=format&fit=crop&q=80&w=1960");
  background-size: cover;
  background-position: center;
}

.hero-editorial .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin: 0 0 18px;
  color: #f5fff7;
  line-height: 1.02;
  font-size: clamp(2.4rem, 6vw, 5.1rem);
}

.hero-title span {
  color: var(--brand-400);
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(234, 255, 239, 0.78);
  font-size: 1.08rem;
}

.hero-image-wrapper {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(226, 250, 233, 0.24);
  box-shadow: var(--shadow-float);
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-section {
  padding: 96px 0;
}

.service-intro-title {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  margin-bottom: 12px;
}

.service-intro-text {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.06rem;
}

.service-card {
  position: relative;
  height: 100%;
  padding: 34px 30px;
  border-radius: 26px;
  border: 1px solid var(--stroke);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-300));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--stroke-strong);
  box-shadow: 0 22px 42px rgba(7, 26, 15, 0.16);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-200), #f8fffa);
  border: 1px solid rgba(22, 51, 34, 0.1);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.service-title {
  margin-bottom: 10px;
  font-size: 1.46rem;
}

.pathways-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(57, 164, 91, 0.14), transparent 38%),
    #f3faf6;
  border-top: 1px solid rgba(17, 46, 29, 0.08);
  border-bottom: 1px solid rgba(17, 46, 29, 0.08);
}

.pathway-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17, 46, 29, 0.1);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}

.pathway-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-200);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pathways-visual {
  position: relative;
  padding: 24px;
}

.pathways-frame {
  position: absolute;
  inset: 0;
  transform: translate(16px, -16px);
  border-radius: 32px;
  border: 1px solid rgba(57, 164, 91, 0.45);
}

.pathways-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 32px 56px rgba(6, 18, 11, 0.32);
}

.partners-section {
  padding: 88px 0;
}

.partner-logo {
  width: 170px;
  height: 88px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(17, 46, 29, 0.1);
  background: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  /* filter: grayscale(1) contrast(1.05); */
  opacity: 0.78;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(8, 30, 17, 0.12);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.global-reach-section {
  margin: 34px 28px 0;
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(17, 46, 29, 0.1);
  background:
    radial-gradient(circle at 8% 8%, rgba(57, 164, 91, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.global-map-shell {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 46, 29, 0.12);
  box-shadow: 0 18px 34px rgba(8, 30, 17, 0.12);
}

.global-map-shell img {
  width: 100%;
  display: block;
  opacity: 0.92;
}

.final-cta {
  margin: 24px 28px 0;
  border-radius: var(--radius-xxl) var(--radius-xxl) 0 0;
  padding: 104px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(99, 201, 127, 0.27), transparent 36%),
    linear-gradient(130deg, #0a1a12 0%, #143024 100%);
}

.final-cta .heading,
.final-cta .hero-text {
  color: #f2fff5;
}

.final-cta .hero-text {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(236, 255, 241, 0.78);
}

.site-footer {
  margin: 0 28px 22px;
  padding: 68px 0 42px;
  border-radius: 0 0 var(--radius-xxl) var(--radius-xxl);
  border: 1px solid rgba(17, 46, 29, 0.11);
  border-top: 0;
  background: linear-gradient(180deg, #f8fdf9 0%, #ecf7ef 100%) !important;
}

.site-footer .widget {
  display: block;
}

.site-footer .heading,
.site-footer .footer-title {
  margin-bottom: 14px;
  font-size: 1.22rem !important;
}

.site-footer .footer-address,
.site-footer address {
  margin-bottom: 0;
  color: var(--ink-500);
  line-height: 1.8;
}

.site-footer .links {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.site-footer .links li {
  margin-bottom: 8px;
}

.site-footer .links a {
  color: var(--ink-700) !important;
  text-decoration: none;
  font-weight: 600;
}

.site-footer .links a:hover {
  color: var(--brand-600) !important;
}

.site-footer .social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(17, 46, 29, 0.14);
  background: #fff;
  color: var(--ink-700) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer .social a:hover {
  color: #fff !important;
  background: var(--brand-600);
  border-color: var(--brand-600);
}

.footer-logo {
  width: 98px;
  opacity: 0.82;
  margin-bottom: 22px;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 46, 29, 0.1);
}

.copyright-line {
  margin: 0;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.copyright-line a {
  color: var(--brand-600);
  font-weight: 700;
}

.form-control {
  min-height: 52px;
  border-radius: 14px !important;
  border: 1px solid rgba(17, 46, 29, 0.16) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--ink-900) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-control::placeholder {
  color: #8ba195;
}

.form-control:focus {
  border-color: rgba(45, 117, 69, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(57, 164, 91, 0.14) !important;
}

.contact-info {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(17, 46, 29, 0.13);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  padding: 34px;
}

.contact-info::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-300));
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-meta-item:last-child {
  margin-bottom: 0;
}

.contact-meta-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-200);
  color: var(--brand-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-meta-title {
  margin: 0 0 4px;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--ink-500);
}

.contact-submit-btn {
  max-width: 300px;
  font-weight: 800;
}

.CTA {
  border-radius: var(--radius-xxl);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .hero-editorial {
    min-height: 700px;
  }

  .hero-image-wrapper {
    height: 440px;
  }

  .pathways-photo {
    height: 440px;
  }
}

@media (max-width: 992px) {
  .site-nav {
    padding: 10px 0;
  }

  .menu-bg-wrap {
    border-radius: 18px !important;
  }

  .hero-editorial {
    margin: 14px 14px 0;
    border-radius: 24px;
    min-height: auto;
    padding: 126px 0 74px;
  }

  .hero-image-wrapper {
    margin-top: 26px;
    height: 360px;
    border-radius: 22px;
  }

  .services-section,
  .pathways-section,
  .partners-section,
  .section {
    padding: 78px 0;
  }

  .pathways-visual {
    margin-top: 20px;
    padding: 16px;
  }

  .pathways-frame {
    transform: translate(12px, -12px);
  }

  .pathways-photo {
    height: 360px;
    border-radius: 22px;
  }

  .global-reach-section,
  .final-cta,
  .site-footer {
    margin-left: 14px;
    margin-right: 14px;
    border-radius: 24px;
  }

  .site-footer {
    border-top: 1px solid rgba(17, 46, 29, 0.11);
  }
}

@media (max-width: 576px) {
  .hero-editorial {
    margin: 10px 8px 0;
    border-radius: 18px;
    padding: 112px 0 58px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-text {
    font-size: 0.97rem;
  }

  .service-intro-title {
    font-size: 1.92rem;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .service-title {
    font-size: 1.28rem;
  }

  .partner-logo {
    width: calc(50% - 12px);
    height: 78px;
  }

  .pathways-frame {
    display: none;
  }

  .pathways-photo {
    height: 320px;
    border-radius: 18px;
  }

  .contact-info {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .global-reach-section,
  .final-cta,
  .site-footer {
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 18px;
  }

  .site-footer {
    padding: 48px 0 30px;
  }
}
