:root {
  --green-main: #24783A;
  --green-dark: #1c5f2f;
  --green-soft: #eef8f0;
  --green-line: rgba(36, 120, 58, 0.14);
  --white: #ffffff;
  --black: #121212;
  --text-soft: #666666;
  --bg-soft: #f7fbf7;
  --shadow-soft: 0 16px 40px rgba(22, 62, 31, 0.09);
  --shadow-strong: 0 24px 60px rgba(22, 62, 31, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: #ffffff;
  overflow-x: hidden;
}

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

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

.section-pad {
  padding: 110px 6%;
}

.section-head {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2F8F4A;
}

.light-tag {
  color: #dff3e5;
}

.section-head h2,
.journey-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-head p,
.history-card p,
.value-card p,
.license-caption p,
.journey-box p,
.associate-slide p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 1rem;
}

/* NAVBAR */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  background: transparent;
  transition: transform 0.45s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.hide-nav {
  transform: translateY(-110%);
}

.main-nav.scrolled {
  background: rgba(9, 18, 10, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.main-nav.scrolled .nav-menu a {
  color: #ffffff;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 100px;
  height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #1f1f1f;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--green-main);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--green-main);
}

.home-link {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-main), #2f8a46);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(36, 120, 58, 0.2);
}

.home-link::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--green-main);
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
  padding: 145px 6% 90px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.20),
      rgba(255, 255, 255, 0.08)
    ),
    radial-gradient(circle at 20% 20%, rgba(36,120,58,0.16), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(36,120,58,0.12), transparent 42%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 120, 58, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 120, 58, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
  z-index: 2;
  animation: gridFloat 10s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  animation: floatOrb 10s ease-in-out infinite;
  z-index: 2;
}

.orb-1 {
  width: 220px;
  height: 220px;
  background: rgba(36, 120, 58, 0.18);
  top: 8%;
  left: -60px;
  animation-duration: 9s;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(36, 120, 58, 0.15);
  bottom: -50px;
  right: 700px;
  animation-duration: 13s;
}

.orb-3 {
  width: 90px;
  height: 90px;
  background: rgba(36, 120, 58, 0.22);
  top: 38%;
  left: 66%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.hero-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(36, 120, 58, 0.65), transparent);
  animation: moveLine 6s linear infinite;
  z-index: 3;
  opacity: 0.9;
}

.line-1 {
  width: 420px;
  top: 24%;
  left: -120px;
}

.line-2 {
  width: 320px;
  bottom: 18%;
  right: -80px;
  animation-delay: 2s;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 4;
}

.hero-content {
  text-align: left;
}

.hero-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  z-index: 2;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-top-image {
  position: absolute;
  top: 40px;
  right: 100px;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.hero-top-image img {
  width: 680px;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
}

.hero-hat {
  position: absolute;
  right: 450px;
  top: 0;
  width: 620px;
  z-index: 3;
}

.hero-cards {
  position: relative;
  z-index: 3;
}

.hero-hat img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
}

.lightning-svg {
  position: absolute;
  top: 250px;
  left: 120px;
  width: 520px;
  height: 520px;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.bolt {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#lightningGlow);
}

.bolt-glow {
  stroke: rgba(120, 220, 255, 0.55);
  stroke-width: 4;
  opacity: 0;
  animation: lightningFlash 2.5s infinite;
}

.bolt-core {
  stroke: #eafcff;
  stroke-width: 3.2;
  opacity: 0;
  animation: lightningFlash 1.5s infinite;
}

.bolt-branch {
  stroke: rgba(255,255,255,0.9);
  stroke-width: 1.4;
  opacity: 0;
  animation: lightningFlash 2.5s infinite;
}

@keyframes lightningFlash {
  0%, 84%, 100% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  86.5% {
    opacity: 0.15;
  }
  87.5% {
    opacity: 1;
  }
  89% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.95;
  }
  92% {
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: #2F8F4A;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 700px;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 34px;
  font-size: 1.02rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-main), #2e8d46);
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 120, 58, 0.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(36, 120, 58, 0.15);
  color: var(--green-main);
}

.btn-secondary:hover {
  transform: translateY(-3px);
}

.hero-card {
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
}

.hero-card img {
  width: 130%;
  height: auto;
  object-fit: contain;
}

/* HISTORY */
.story-title {
  font-weight: 400;
  line-height: 1;
}

.story-title .line1 {
  display: block;
  font-size: 100px;
  color: #1d1d1d;
}

.story-title .line2 {
  display: block;
  font-size: 100px;
  color: #24783A;
  font-weight: 900;
}

.story-mosaic-section {
  padding: 120px 4% 100px;
  background: #ffffff;
  overflow: hidden;
}

.story-mosaic-wrap {
  max-width: 2000px;
  margin: 0 auto;
  position: relative;
  min-height: auto;
}

.story-heading-block {
  position: absolute;
  top: 70px;
  left: 40px;
  z-index: 3;
}

.story-mini-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #24783A;
  margin-bottom: 18px;
}

.story-heading-block h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  font-weight: 800;
  color: #1d1d1d;
  margin-bottom: 24px;
}

.story-heading-block h2 span {
  color: #24783A;
}

.story-years {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  font-weight: 500;
}

.story-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  grid-auto-rows: 80px;
  gap: 8px;
  position: relative;
}

.mosaic-item {
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.item-1  { grid-column: 8 / 11; grid-row: 1 / 2; }
.item-2  { grid-column: 8 / 9;  grid-row: 2 / 3; }
.item-3  { grid-column: 9 / 10; grid-row: 2 / 3; }
.item-4  { grid-column: 10 / 11; grid-row: 2 / 3; }
.item-5  { grid-column: 7 / 8;  grid-row: 3 / 4; }
.item-6  { grid-column: 8 / 9;  grid-row: 3 / 4; }
.item-7  { grid-column: 9 / 10; grid-row: 3 / 4; }
.item-8  { grid-column: 10 / 11; grid-row: 3 / 4; }
.item-9  { grid-column: 6 / 7;  grid-row: 4 / 5; }
.item-10 { grid-column: 7 / 8;  grid-row: 4 / 5; }
.item-11 { grid-column: 8 / 9;  grid-row: 4 / 5; }
.item-12 { grid-column: 9 / 10; grid-row: 4 / 5; }
.item-13 { grid-column: 10 / 11; grid-row: 4 / 5; }
.item-14 { grid-column: 4 / 5;  grid-row: 5 / 6; }
.item-15 { grid-column: 5 / 6;  grid-row: 5 / 6; }
.item-16 { grid-column: 6 / 7;  grid-row: 5 / 6; }
.item-17 { grid-column: 7 / 8;  grid-row: 5 / 6; }
.item-18 { grid-column: 8 / 9;  grid-row: 5 / 6; }
.item-19 { grid-column: 9 / 10; grid-row: 5 / 6; }
.item-20 { grid-column: 10 / 11; grid-row: 5 / 6; }
.item-21 { grid-column: 1 / 2;  grid-row: 6 / 7; }
.item-22 { grid-column: 2 / 3;  grid-row: 6 / 7; }
.item-23 { grid-column: 3 / 4;  grid-row: 6 / 7; }
.item-24 { grid-column: 4 / 5;  grid-row: 6 / 7; }
.item-37 { grid-column: 5 / 6;  grid-row: 6 / 7; }
.item-38 { grid-column: 6 / 7;  grid-row: 6 / 7; }
.item-39 { grid-column: 7 / 8;  grid-row: 6 / 7; }
.item-25 { grid-column: 8 / 9;  grid-row: 6 / 7; }
.item-26 { grid-column: 9 / 10; grid-row: 6 / 7; }
.item-27 { grid-column: 10 / 11; grid-row: 6 / 7; }
.item-28 { grid-column: 8 / 9;  grid-row: 7 / 8; }
.item-29 { grid-column: 9 / 10; grid-row: 7 / 8; }
.item-30 { grid-column: 10 / 11; grid-row: 7 / 8; }
.item-31 { grid-column: 1 / 2;  grid-row: 8 / 9; }
.item-40 { grid-column: 2 / 3;  grid-row: 8 / 9; }
.item-32 { grid-column: 3 / 4;  grid-row: 8 / 9; }
.item-33 { grid-column: 4 / 5;  grid-row: 8 / 9; }
.item-41 { grid-column: 5 / 6;  grid-row: 8 / 9; }
.item-34 { grid-column: 6 / 7;  grid-row: 8 / 9; }
.item-35 { grid-column: 7 / 8;  grid-row: 8 / 9; }
.item-36 { grid-column: 8 / 9;  grid-row: 8 / 9; }
.item-42 { grid-column: 9 / 10; grid-row: 8 / 9; }
.item-43 { grid-column: 10 / 11; grid-row: 8 / 9; }
.item-44 { grid-column: 1 / 2; grid-row: 7 / 8; }
.item-45 { grid-column: 2 / 3; grid-row: 7 / 8; }
.item-46 { grid-column: 3 / 4; grid-row: 7 / 8; }
.item-47 { grid-column: 4 / 5; grid-row: 7 / 8; }
.item-48 { grid-column: 5 / 6; grid-row: 7 / 8; }
.item-49 { grid-column: 6 / 7; grid-row: 7 / 8; }
.item-50 { grid-column: 7 / 8; grid-row: 7 / 8; }
.item-51 { grid-column: 11 / 14; grid-row: 1 / 2; }
.item-52 { grid-column: 11 / 12; grid-row: 2 / 3; }
.item-53 { grid-column: 12 / 13; grid-row: 2 / 3; }
.item-54 { grid-column: 13 / 14; grid-row: 2 / 3; }
.item-55 { grid-column: 11 / 12; grid-row: 3 / 4; }
.item-56 { grid-column: 12 / 13; grid-row: 3 / 4; }
.item-57 { grid-column: 13 / 14; grid-row: 3 / 4; }
.item-58 { grid-column: 11 / 12; grid-row: 4 / 5; }
.item-59 { grid-column: 12 / 13; grid-row: 4 / 5; }
.item-60 { grid-column: 13 / 14; grid-row: 4 / 5; }
.item-61 { grid-column: 11 / 12; grid-row: 5 / 6; }
.item-62 { grid-column: 12 / 13; grid-row: 5 / 6; }
.item-63 { grid-column: 13 / 14; grid-row: 5 / 6; }
.item-64 { grid-column: 11 / 12; grid-row: 6 / 7; }
.item-65 { grid-column: 12 / 13; grid-row: 6 / 7; }
.item-66 { grid-column: 13 / 14; grid-row: 6 / 7; }
.item-67 { grid-column: 11 / 12; grid-row: 7 / 8; }
.item-68 { grid-column: 12 / 13; grid-row: 7 / 8; }
.item-69 { grid-column: 13 / 14; grid-row: 7 / 8; }
.item-70 { grid-column: 11 / 12; grid-row: 8 / 9; }
.item-71 { grid-column: 12 / 13; grid-row: 8 / 9; }
.item-72 { grid-column: 13 / 14; grid-row: 8 / 9; }
.item-73 { grid-column: 13 / 14; grid-row: 9 / 10; }
.item-74 { grid-column: 1 / 2;  grid-row: 9 / 10; }
.item-75 { grid-column: 2 / 3;  grid-row: 9 / 10; }
.item-76 { grid-column: 3 / 4;  grid-row: 9 / 10; }
.item-77 { grid-column: 4 / 5;  grid-row: 9 / 10; }
.item-78 { grid-column: 5 / 6;  grid-row: 9 / 10; }
.item-79 { grid-column: 6 / 7;  grid-row: 9 / 10; }
.item-80 { grid-column: 7 / 8;  grid-row: 9 / 10; }
.item-81 { grid-column: 8 / 9;  grid-row: 9 / 10; }
.item-82 { grid-column: 9 / 10; grid-row: 9 / 10; }
.item-83 { grid-column: 10 / 11; grid-row: 9 / 10; }
.item-84 { grid-column: 11 / 12; grid-row: 9 / 10; }
.item-85 { grid-column: 12 / 13; grid-row: 9 / 10; }
.item-87 { grid-column: 1 / 2;  grid-row: 10 / 11; }
.item-88 { grid-column: 2 / 3;  grid-row: 10 / 11; }
.item-89 { grid-column: 3 / 4;  grid-row: 10 / 11; }
.item-90 { grid-column: 4 / 5;  grid-row: 10 / 11; }
.item-91 { grid-column: 5 / 6;  grid-row: 10 / 11; }
.item-92 { grid-column: 6 / 7;  grid-row: 10 / 11; }
.item-93 { grid-column: 7 / 8;  grid-row: 10 / 11; }
.item-94 { grid-column: 8 / 9;  grid-row: 10 / 11; }
.item-95 { grid-column: 9 / 10; grid-row: 10 / 11; }
.item-96 { grid-column: 10 / 11; grid-row: 10 / 11; }
.item-97 { grid-column: 11 / 12; grid-row: 10 / 11; }
.item-98 { grid-column: 12 / 13; grid-row: 10 / 11; }
.item-99 { grid-column: 13 / 14; grid-row: 10 / 11; }
.item-100 { grid-column: 1 / 2;  grid-row: 11 / 12; }
.item-101 { grid-column: 2 / 3;  grid-row: 11 / 12; }
.item-102 { grid-column: 3 / 4;  grid-row: 11 / 12; }
.item-103 { grid-column: 4 / 5;  grid-row: 11 / 12; }
.item-104 { grid-column: 5 / 6;  grid-row: 11 / 12; }
.item-105 { grid-column: 6 / 7;  grid-row: 11 / 12; }
.item-106 { grid-column: 7 / 8;  grid-row: 11 / 12; }
.item-107 { grid-column: 8 / 9;  grid-row: 11 / 12; }
.item-108 { grid-column: 9 / 10; grid-row: 11 / 12; }
.item-109 { grid-column: 10 / 11; grid-row: 11 / 12; }
.item-110 { grid-column: 11 / 12; grid-row: 11 / 12; }
.item-111 { grid-column: 12 / 13; grid-row: 11 / 12; }
.item-112 { grid-column: 13 / 14; grid-row: 11 / 12; }

/* LIGHTBOX */
.story-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 99999;
}

.story-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.story-lightbox-inner {
  position: relative;
  max-width: 1100px;
  max-height: 85vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  object-fit: contain;
  background: #fff;
}

.story-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 100000;
  transition: 0.3s ease;
}

.story-lightbox-close:hover {
  background: rgba(255,255,255,0.24);
  transform: rotate(90deg);
}

/* ASSOCIATES */
.associates {
  background: linear-gradient(135deg, #e4f5e8 0%, #f8fcf9 100%);
}

.associate-slider-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 18px;
  align-items: center;
}

.associate-slider {
  overflow: hidden;
}

.associate-track {
  display: flex;
  transition: transform 0.5s ease;
}

.associate-slide {
  min-width: 100%;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--green-line);
  border-radius: 26px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.associate-logo {
  width: 450px;
  height: 450px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 20px;
}

.associate-logo img {
  max-width: 80%;
  max-height: 80%;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.08));
}

.associate-slide h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.slider-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--green-line);
  background: #fff;
  color: var(--green-main);
  cursor: pointer;
  font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: var(--green-main);
  color: #fff;
}

.slider-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 120, 58, 0.22);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--green-main);
}

/* VALUES / VISION MISSION */
.values {
  background: #ffffff;
}

.values-grid {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: linear-gradient(135deg, #ffffff, #f7fcf8);
  border: 1px solid var(--green-line);
  border-radius: 26px;
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-number {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e5f6e9, #d5f0db);
  color: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.value-card h3 {
  font-size: 1.28rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

/* LICENSES */
.licenses {
  background: linear-gradient(180deg, #fbfefb 0%, #f2f8f3 100%);
}

.license-slider-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  gap: 18px;
  align-items: center;
}

.license-slider {
  overflow: hidden;
}

.license-track {
  display: flex;
  transition: transform 0.55s ease;
}

.license-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--green-line);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.license-sheet {
  max-width: 320px;
  width: 100%;
  aspect-ratio: 1 / 1.414;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}

.license-sheet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.license-caption h3 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

/* AWARDS */
.awards {
  background: #ffffff;
}

.awards-slider {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.awards-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: awardsScroll 18s linear infinite;
}

.award-item {
  width: 240px;
  height: 240px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f5fbf6);
  border: 1px solid var(--green-line);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* JOURNEY - RESTORED */
.journey {
  background: linear-gradient(135deg, #1f6231 0%, #24783A 50%, #2f8f48 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.journey::before,
.journey::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(10px);
}

.journey::before {
  width: 260px;
  height: 260px;
  top: -120px;
  left: -80px;
}

.journey::after {
  width: 320px;
  height: 320px;
  bottom: -140px;
  right: -80px;
}

.journey-box {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.journey-box p {
  color: rgba(255,255,255,0.9);
}

/* FOOTER */
.footer {
  background: #0f3119;
  color: rgba(255,255,255,0.82);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 30px;
  text-align: center;
  font-size: 0.94rem;
}

/* REVEAL */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: 0.9s ease;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ANIMATIONS */
@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.08);
  }
}

@keyframes moveLine {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% {
    transform: translateX(180px);
    opacity: 0;
  }
}

@keyframes awardsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}










































/* MOBILE MENU PANEL */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 18px;
    width: 240px;
    padding: 20px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(36, 120, 58, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
  }

  .nav-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 135px 6% 80px;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    position: relative;
    width: min(380px, 100%);
    margin: 0 auto;
    right: auto;
    bottom: auto;
    order: 2;
  }

  .hero-top-image {
    position: relative;
    top: 0;
    right: auto;
    transform: none;
    text-align: center;
  }

  .hero-top-image img {
    width: min(420px, 100%);
  }

  .hero-hat,
  .lightning-svg {
    display: none;
  }

  .associate-slider-wrap,
  .license-slider-wrap,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .nav-inner {
    padding: 16px 20px;
  }

  .section-pad {
    padding: 90px 6%;
  }

  .story-heading-block {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 22px;
  }

  .story-mosaic-wrap {
    min-height: auto;
    overflow-x: auto;
  }

  .story-mosaic-grid {
    min-width: 1100px;
  }
}

/* AWARDS SHOWCASE */
.awards-showcase-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f7faf7 0%, #eef5ee 100%);
  overflow: hidden;
}

.awards-showcase-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.awards-showcase-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.awards-showcase-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2f7d3c;
}

.awards-showcase-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  color: #16351f;
  margin-bottom: 16px;
  font-weight: 800;
}

.awards-showcase-head p {
  font-size: 16px;
  line-height: 1.8;
  color: #526152;
}

.awards-showcase-slider {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  gap: 20px;
  height: 560px;
}

.awards-showcase-track-wrap {
  overflow: hidden;
  border-radius: 28px;
  height: 100%;
}

.awards-showcase-track {
  display: flex;
  transition: transform 0.75s ease;
  height: 100%;
}

.awards-showcase-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(47,125,60,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
}

.awards-showcase-image {
  position: relative;
  min-height: 520px;
  background: linear-gradient(135deg, #dfeadc 0%, #f9fcf9 100%);
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-showcase-image img {
  height: 100%;
  display: block;
  padding: 40px;
  transform: scale(1.05);
  transition: transform 0.9s ease;
  max-height: 420px;
  width: auto;
  object-fit: contain;
}

.awards-showcase-slide.active .awards-showcase-image img {
  transform: scale(1);
}

.awards-showcase-content {
  padding: 50px 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.awards-showcase-content span {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #2f7d3c;
  margin-bottom: 18px;
  letter-spacing: 0.14em;
}

.awards-showcase-content h3 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  color: #16351f;
  margin-bottom: 18px;
  font-weight: 800;
}

.awards-showcase-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #566556;
  max-width: 480px;
}

.awards-showcase-btn {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #2f7d3c;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(47,125,60,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.awards-showcase-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: #256730;
}

.awards-showcase-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.awards-showcase-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(47,125,60,0.22);
  cursor: pointer;
  transition: all 0.3s ease;
}

.awards-showcase-dot.active {
  width: 34px;
  border-radius: 999px;
  background: #2f7d3c;
}






















/* =========================================================
   EXTRA RESPONSIVE MEDIA QUERIES
   PASTE THIS AT THE VERY BOTTOM OF about.css
========================================================= */

/* =========================
   1100px and below
========================= */
@media (max-width: 1100px) {
  .nav-inner {
    padding: 16px 24px;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
  }

  .brand-name {
    font-size: 22px;
  }

    .main-nav.scrolled .nav-menu a {
    color: #000 !important;
  }

 
  .hero {
    min-height: 92vh;
    padding: 130px 5% 70px;
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
  }

  .hero-visual {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: min(44vw, 420px);
    z-index: 1;
    opacity: 0.22;
    pointer-events: none;
  }

  .hero-card img {
    width: 100%;
  }

  .hero-top-image,
  .hero-hat,
  .lightning-svg {
    display: none !important;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .story-mosaic-section {
    padding: 90px 20px 70px;
  }

  .story-mosaic-wrap {
    overflow: hidden !important;
    min-height: auto;
  }

  .story-heading-block {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 18px;
  }

  .story-mosaic-grid {
    zoom: 0.62;
    transform-origin: top left;
  }
}

/* =========================
   991px and below
========================= */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 16px;
    width: 240px;
    padding: 18px 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(36, 120, 58, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
  }

  .nav-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    font-size: 14px;
    padding: 0;
    color: var(--green-main);
  }

  .nav-menu a::after {
    display: none !important;
  }

  /* remove active/highlight look in phone menu */
  .nav-menu .home-link {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: var(--green-main) !important;
  }

  .hero {
    min-height: 88vh;
    padding: 118px 5% 60px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    max-width: 100%;
    z-index: 3;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 1;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.8;
    max-width: 90%;
  }

  .hero-visual {
    position: absolute;
    right: -30px;
    bottom: -10px;
    width: min(52vw, 360px);
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
  }

  .hero-top-image,
  .hero-hat,
  .lightning-svg {
    display: none !important;
  }

  .hero-buttons {
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 14px 20px;
    font-size: 0.92rem;
  }

  .story-mosaic-section {
    padding: 80px 16px 60px;
  }

  .story-heading-block {
    margin-bottom: 14px;
  }

  .story-title .line1,
  .story-title .line2 {
    font-size: 58px;
  }

  .story-years {
    font-size: 1rem;
  }

  /* same desktop-style grid, no horizontal scroll */
  .story-mosaic-wrap {
    overflow: hidden !important;
  }

  .story-mosaic-grid {
    zoom: 0.50;
    transform-origin: top left;
  }

  .associate-slider-wrap,
  .license-slider-wrap {
    grid-template-columns: 1fr;
    display: block;
  }

  .slider-btn {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .associate-logo {
    width: 250px;
    height: 250px;
  }

  .license-slide {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================
   767px and below
========================= */
@media (max-width: 767px) {
  .section-pad {
    padding: 74px 5%;
  }

  .nav-inner {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 14px;
    max-width: 210px;
    line-height: 1.2;
  }

  .nav-menu {
    right: 12px;
    width: 220px;
    padding: 16px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
    padding: 110px 5% 50px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    position: relative;
    z-index: 3;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 22px;
  }

  /* tower becomes background behind words */
  .hero-visual {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: min(68vw, 300px);
    opacity: 0.14;
    z-index: 1;
    pointer-events: none;
  }

  .hero-top-image,
  .hero-hat,
  .lightning-svg {
    display: none !important;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .story-mosaic-section {
    padding: 68px 10px 46px;
  }

  .story-heading-block {
    margin-bottom: 10px;
  }

  .story-mini-tag {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .story-title .line1,
  .story-title .line2 {
    font-size: 38px;
    line-height: 0.96;
  }

  .story-years {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* keep grid look, smaller, no scroll */
  .story-mosaic-wrap {
    overflow: hidden !important;
  }

  .story-mosaic-grid {
    zoom: 0.36;
    transform-origin: top left;
    gap: 8px;
  }

  .mosaic-item {
    border-radius: 5px;
  }

  .associate-slide {
    padding: 22px 16px;
  }

  .associate-logo {
    width: 180px;
    height: 180px;
  }

  .license-sheet {
    max-width: 220px;
  }
}

/* =========================
   575px and below
========================= */
@media (max-width: 575px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 12px;
    max-width: 170px;
  }

  .hero {
    min-height: 78vh;
    padding: 102px 4.5% 44px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.8vw, 2.45rem);
  }

  .hero-sub {
    font-size: 0.92rem;
  }

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

  .hero-visual {
    right: -34px;
    width: min(74vw, 250px);
    opacity: 0.12;
  }

  .story-mosaic-section {
    padding: 62px 8px 40px;
  }

  .story-title .line1,
  .story-title .line2 {
    font-size: 30px;
  }

  .story-years {
    font-size: 0.84rem;
  }

  .story-mosaic-grid {
    zoom: 0.285;
    transform-origin: top left;
  }

  .associate-logo {
    width: 150px;
    height: 150px;
  }
}

/* =========================
   420px and below
========================= */
@media (max-width: 420px) {
  .hero {
    min-height: 74vh;
    padding: 98px 4% 40px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 9vw, 2.1rem);
  }

  .hero-text {
    font-size: 0.84rem;
    line-height: 1.7;
  }

  .hero-visual {
    right: -30px;
    width: min(78vw, 220px);
    opacity: 0.1;
  }

  .story-mosaic-section {
    padding: 56px 6px 36px;
  }

  .story-title .line1,
  .story-title .line2 {
    font-size: 26px;
  }

  .story-years {
    font-size: 0.78rem;
  }

  .story-mosaic-grid {
    zoom: 0.245;
    transform-origin: top left;
  }
}


/* =========================
   AWARDS SECTION - PHONE FIX
   paste at very bottom
========================= */
@media (max-width: 767px) {
  .awards-showcase-section {
    padding: 72px 14px 56px;
  }

  .awards-showcase-wrap {
    width: 100%;
  }

  .awards-showcase-head {
    margin: 0 auto 28px;
  }

  .awards-showcase-head h2 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.12;
  }

  .awards-showcase-head p {
    font-size: 14px;
    line-height: 1.75;
  }

  .awards-showcase-slider {
    display: block;
    height: auto;
  }

  .awards-showcase-track-wrap {
    border-radius: 22px;
    overflow: hidden;
  }

  .awards-showcase-track {
    height: auto;
  }

  .awards-showcase-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 22px;
  }

  .awards-showcase-image {
    min-height: auto;
    height: 240px;
    padding: 10px;
  }

  .awards-showcase-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 12px;
    object-fit: contain;
    transform: scale(1);
  }

  .awards-showcase-content {
    padding: 24px 18px 22px;
    text-align: center;
  }

  .awards-showcase-content span {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .awards-showcase-content h3 {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .awards-showcase-content p {
    font-size: 14px;
    line-height: 1.75;
    max-width: 100%;
    margin: 0 auto;
  }

  .awards-showcase-btn {
    display: none;
  }

  .awards-showcase-dots {
    gap: 10px;
    margin-top: 18px;
  }

  .awards-showcase-dot {
    width: 10px;
    height: 10px;
  }

  .awards-showcase-dot.active {
    width: 28px;
  }
}

@media (max-width: 575px) {
  .awards-showcase-section {
    padding: 64px 10px 48px;
  }

  .awards-showcase-head {
    margin-bottom: 22px;
  }

  .awards-showcase-head h2 {
    font-size: clamp(24px, 8.5vw, 34px);
  }

  .awards-showcase-head p {
    font-size: 13px;
  }

  .awards-showcase-track-wrap,
  .awards-showcase-slide {
    border-radius: 18px;
  }

  .awards-showcase-image {
    height: 210px;
    padding: 8px;
  }

  .awards-showcase-image img {
    padding: 8px;
  }

  .awards-showcase-content {
    padding: 20px 14px 18px;
  }

  .awards-showcase-content span {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .awards-showcase-content h3 {
    font-size: clamp(18px, 6.8vw, 24px);
  }

  .awards-showcase-content p {
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 420px) {
  .awards-showcase-section {
    padding: 56px 8px 42px;
  }

  .awards-showcase-image {
    height: 185px;
  }

  .awards-showcase-content {
    padding: 18px 12px 16px;
  }

  .awards-showcase-content h3 {
    font-size: 17px;
  }

  .awards-showcase-content p {
    font-size: 12.5px;
  }

  .awards-showcase-dots {
    margin-top: 14px;
  }
}