:root {
  --green-950: #08261d;
  --green-900: #0b3b2e;
  --green-800: #0f4a39;
  --green-700: #11624b;
  --green-100: #eaf5f1;
  --text-dark: #102018;
  --muted: #66756d;
  --line: #dbe5e0;
  --card: #ffffff;
  --soft: #f6faf8;
  --shadow: 0 18px 45px rgba(6, 34, 25, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* ── Navbar ── */
.navbar {
  background: #0f4a39;
  box-shadow: 0 8px 30px rgba(5, 36, 26, 0.12);
}

.navbar .container {
  max-width: 1400px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  padding: 2rem 1rem;
  position: relative;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #fff;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .55rem;
  height: 2px;
  background: #d7f0e4;
  border-radius: 99px;
}

.brand-logo {
  width: 93px;
  height: 93px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  position: absolute;
  top: 1rem;
}

/* ── Hero ── */
.hero {
  background:
    radial-gradient(circle at top right, rgba(28, 118, 91, 0.08), transparent 32%),
    linear-gradient(180deg, #f4f8f6 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.65) 34%, rgba(255, 255, 255, 0.00) 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .row {
  min-height: 620px;
  align-items: center;
}

.hero-kicker,
.section-kicker {
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: #6d7c76;
}

.hero-title {
  font-size: 3.5rem;
  line-height: .98;
  font-weight: 800;
  color: #0b1110;
  letter-spacing: -0.04em;
}

.hero-copy {
  color: var(--muted);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border: none;
  box-shadow: 0 10px 22px rgba(9, 70, 52, 0.18);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #0b4636, #0d5b45);
}

.btn-outline-custom {
  border-color: #a8beb6;
  color: var(--green-900);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual .hero-card {
  position: absolute;
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.hero-visual .hero-card.main {
  right: 0;
  top: 0;
  width: min(92%, 700px);
  height: 560px;
}

.hero-visual .hero-card.main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .hero-card.small {
  width: 140px;
  height: 130px;
  bottom: 0;
  left: 5%;
  border-width: 6px;
}

.hero-visual .hero-card.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 78%);
  pointer-events: none;
}

/* ── Stats ── */
.stats-wrap {
  margin-top: -68px;
  position: relative;
  z-index: 2;
}

.stats-card {
  background: linear-gradient(90deg, var(--green-900), #0e5c45);
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 1290px;
  margin: 0 auto;
}

.stats-item {
  padding: 1.5rem 1rem;
  position: relative;
  min-height: 112px;
}

.stats-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.18);
}

.stats-number {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}

.stats-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: .95rem;
  margin-top: .25rem;
}

.stats-icon {
  font-size: 1.55rem;
  color: #d5efe4;
  margin-right: .8rem;
}

/* ── Sections ── */
section {
  padding: 54px 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: .65rem;
}

.section-copy {
  color: var(--muted);
  max-width: 720px;
}

/* ── Cards shared ── */
.overview-card,
.industry-card,
.value-card,
.timeline-card,
.cta-card,
.footer-top,
.company-badge {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(12, 41, 31, 0.05);
  border-radius: var(--radius-md);
}

/* ── Overview cards ── */
.overview-card {
  padding: 1rem;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(12, 41, 31, 0.08);
}

.overview-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: .9rem;
}

.overview-name {
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
}

.overview-type,
.muted-small {
  color: var(--muted);
  font-size: .88rem;
}

.company-link {
  color: var(--green-800);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.company-link:hover {
  text-decoration: underline;
}

/* ── Company badge ── */
.company-badge {
  max-width: 480px;
  overflow: hidden;
  margin: 0 auto 28px;
}

.company-badge img {
  width: 100%;
  height: 100%;
}

.badge-panel {
  padding: 1.15rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.badge-mark {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

/* .badge-mark img { width: 70px; height: 70px; object-fit: contain; filter: brightness(0) invert(1); } */

/* ── Industry section ── */
.industry-card {
  padding: 1.35rem;
}

.industry-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem 1.5rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(12, 41, 31, 0.10);
  border-color: var(--green-700);
}

.industry-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eaf5f0, #d0ece2);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  transition: background .2s ease, color .2s ease;
}

.industry-item:hover .industry-icon {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  color: #fff;
}

.industry-item span {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .3rem;
}

.industry-item small {
  font-size: .76rem;
  color: var(--muted);
}

/* ── Values ── */
.values-list .value-row {
  display: flex;
  gap: .85rem;
  margin-bottom: 1rem;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef7f3;
  color: var(--green-800);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.value-title {
  font-weight: 700;
  margin-bottom: .2rem;
}

.value-desc {
  color: var(--muted);
  font-size: .92rem;
}

/* ── Quote card ── */
.quote-card {
  min-height: 410px;
  background:
    linear-gradient(100deg, rgba(10, 64, 49, 0.82), rgba(10, 64, 49, 0.28)),
    url('./images/banner-2.png') center/cover no-repeat;
  color: #fff;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quote-card p {
  max-width: 360px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-top: 40px;
  margin-top: 14px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 57px;
  height: 2px;
  background: #d8e5df;
}

.timeline-step {
  position: relative;
  padding-top: 24px;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(9, 70, 52, 0.20);
}

.timeline-step h6 {
  margin-top: 36px;
  font-weight: 800;
}

.timeline-step p {
  color: var(--muted);
  font-size: .92rem;
}

/* ── Misc ── */
.overview-section-head {
  max-width: 560px;
}

.cta-section {
  background: linear-gradient(90deg, var(--green-950), var(--green-800));
  color: #fff;
}

.cta-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(3px);
}

.cta-card .btn-outline-light:hover {
  color: var(--green-950);
}

/* ── Footer ── */
footer {
  background: linear-gradient(180deg, #0a3327, #072118);
  color: rgba(255, 255, 255, 0.86);
}

.footer-top {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

footer a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.social a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  margin-right: .45rem;
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
  .overview-card img {
    height: 127px;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
    top: .5rem;
  }

}

@media (max-width: 991.98px) {
  .hero .row {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 2rem;
  }

  .hero-visual .hero-card.main {
    width: 100%;
    right: 0;
    height: 360px;
  }

  .hero-visual .hero-card.small {
    width: 120px;
    height: 110px;
  }

  .stats-item:not(:last-child)::after {
    display: none;
  }

  .timeline::before {
    display: none;
  }

  .timeline-step {
    padding-top: 0;
    margin-bottom: 1.5rem;
  }

  .timeline-dot {
    position: static;
    margin-bottom: .85rem;
  }

  .overview-card img {
    height: 127px;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
    top: .5rem;
  }
  .navbar {
    padding-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 2rem;
  }

  .stats-wrap {
    margin-top: 0;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .badge-panel {
    flex-direction: column;
  }

  .badge-mark {
    width: 80px;
    height: 80px;
  }

  .hero-visual .hero-card.small {
    display: none;
  }

  .stats-card {
    border-radius: 18px;
  }

  .overview-card img {
    height: 127px;
  }

  .brand-logo {
    width: 80px;
    height: 80px;
    top: .5rem;
  }

}

@media (max-width: 575.98px) {
  .overview-card img {
    height: 127px;
  }

  .brand-logo {
    width: 74px;
    height: 58px;
    top: .5rem;
  }

}