/* ==========================================================================
   KLCCP IR 2025 - Integrated Report Website Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   @font-face Declarations
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans_300.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans_500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans_700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Museo Sans';
  src: url('../fonts/MuseoSans_900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */

:root {
  --klccp-blue: #266E8F;
  --klccp-teal: #2B7A78;
  --klccp-teal-dark: #1C859D;
  --klccp-green: #3FA535;
  --klccp-orange: #EAA306;
  --klccp-navy: #345E83;
  --klccp-light-blue: #8bc3e5;
  --klccp-white: #ffffff;
  --klccp-dark: #393c3f;

  --font-primary: 'Museo Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-speed: 0.35s;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   Global Reset & Base Styles
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--klccp-dark);
  background-color: var(--klccp-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) var(--transition-ease);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* --------------------------------------------------------------------------
   Section Base
   -------------------------------------------------------------------------- */

.section {
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Common Components
   -------------------------------------------------------------------------- */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background-color: var(--klccp-orange);
  color: var(--klccp-white);
  padding: 5px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1em;
  font-family: var(--font-primary);
  border: 2px solid var(--klccp-orange);
  cursor: pointer;
  transition: background-color var(--transition-speed) var(--transition-ease),
              border-color var(--transition-speed) var(--transition-ease),
              transform 0.2s ease;
}

.btn-download:hover {
  background-color: #d18f05;
  border-color: #d18f05;
  transform: translateY(-1px);
}

.btn-download:active {
  transform: translateY(0);
}

.btn-read-more {
  display: inline-block;
  border: 2px solid var(--klccp-white);
  color: var(--klccp-white);
  padding: 5px 15px;
  border-radius: 25px;
  background: transparent;
  font-weight: 900;
  font-size: 0.9em;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: background-color var(--transition-speed) var(--transition-ease),
              color var(--transition-speed) var(--transition-ease),
              transform 0.2s ease;
              background-color: #67C9B5;
    border-color: #67C9B5;
    color: var(--klccp-white);
}

.btn-read-more:active {
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Scroll Animation Classes
   -------------------------------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--transition-ease),
              transform 0.8s var(--transition-ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* .fade-in-left initial state removed — GSAP handles it via immediateRender */

/* --------------------------------------------------------------------------
   Page 1: Hero (#section-home)
   -------------------------------------------------------------------------- */
.intro-video {
  width: 100%;
  height: auto;
  z-index: 0;
}

.mobile-only {
  display: none;
}


.hero-content {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.hero-menu-btn {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--klccp-white);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity var(--transition-speed) var(--transition-ease);
}

.hero-menu-btn:hover {
  opacity: 0.8;
}

.hero-menu-btn .hamburger-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--klccp-white);
}

.hero-menu-btn .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}

.hero-menu-btn .hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--klccp-blue);
  border-radius: 1px;
  transition: transform var(--transition-speed) var(--transition-ease),
              opacity var(--transition-speed) var(--transition-ease);
}

/* --------------------------------------------------------------------------
   Page 2: Menu Overlay (#menu-overlay)
   -------------------------------------------------------------------------- */

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--transition-ease);
}

#menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay-inner {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  background: none;
}

.menu-bg-side {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75%;
  background-color: var(--klccp-blue);
  background-size: cover;
  background-position: left center;
}

.menu-nav-side {
  flex: 0 0 30%;
  background-color: var(--klccp-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 100px 60px 0px 25px;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.5s var(--transition-ease);
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-right: none;
  border-radius: 70px 0 0 0px;
  margin-left: auto;
}

#menu-overlay.active .menu-nav-side {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--klccp-blue);
  border: none;
  z-index: 10;
  font-size: 1.8rem;
  color: var(--klccp-white);
  line-height: 1;
  transition: background var(--transition-speed) var(--transition-ease);
}

.menu-close:hover {
  background: var(--klccp-teal-dark);
}

.menu-nav-list ul {
  list-style: none;
}

.menu-nav-list ul li {
  margin-bottom: 0;
}

.menu-nav-list ul li a {
  display: block;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--klccp-teal-dark);
  padding: 8px 0;
  border-left: none;
  transition: color var(--transition-speed) var(--transition-ease),
              opacity var(--transition-speed) var(--transition-ease);
}

.menu-nav-list ul li a:hover {
  color: var(--klccp-teal-dark);
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Page 3: About (#section-about)
   -------------------------------------------------------------------------- */

#section-about {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* Image area — relative container for markers */
.about-image-area {
  position: relative;
  flex: 1;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1921 / 1081;
}

.about-text-panel,
.about-visual-panel {
  position: absolute;
  inset: 0;
}

.about-text-panel {
  z-index: 3;
}

.about-visual-panel {
  z-index: 1;
}

.about-visual-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 14, 26, 0.18) 0%, rgba(4, 14, 26, 0.04) 28%, rgba(4, 14, 26, 0.12) 52%, rgba(4, 14, 26, 0.62) 100%);
  z-index: 2;
  pointer-events: none;
}

.about-title {
  position: absolute;
  top: 34px;
  left: 5%;
  color: var(--klccp-blue);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
  z-index: 3;
}

.about-stack {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-base {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.72s var(--transition-ease),
              transform 0.72s var(--transition-ease);
  pointer-events: none;
}

.about-layer:nth-child(1) { z-index: 8; }
.about-layer:nth-child(2) { z-index: 7; }
.about-layer:nth-child(3) { z-index: 6; }
.about-layer:nth-child(4) { z-index: 5; }
.about-layer:nth-child(5) { z-index: 4; }
.about-layer:nth-child(6) { z-index: 3; }
.about-layer:nth-child(7) { z-index: 2; }
.about-layer:nth-child(8) { z-index: 1; }

.about-stack.visible .about-layer {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-stack.visible .about-layer:nth-child(1) { transition-delay: 0.60s; }
.about-stack.visible .about-layer:nth-child(2) { transition-delay: 0.60s; }
.about-stack.visible .about-layer:nth-child(3) { transition-delay: 0.84s; }
.about-stack.visible .about-layer:nth-child(4) { transition-delay: 1.20s; }
.about-stack.visible .about-layer:nth-child(5) { transition-delay: 1.84s; }
.about-stack.visible .about-layer:nth-child(6) { transition-delay: 2.08s; }
.about-stack.visible .about-layer:nth-child(7) { transition-delay: 2.32s; }
.about-stack.visible .about-layer:nth-child(8) { transition-delay: 2.56s; }
.about-stack.visible .about-layer:nth-child(9) { transition-delay: 2.80s; }


.about-marker,
.about-marker-text,
.about-marker,
.about-marker-text {
  display: none;
}

.about-title,
.about-bottom-row,
.about-bottom-content,
.about-bottom-bar,
.about-download {
  display: block;
}

.about-purpose {
  position: absolute;
  top: 160px;
  left: 5%;
  max-width: 640px;
  margin-bottom: 10px;
  z-index: 3;
}

.purpose-heading {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--klccp-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.42);
}

.purpose-text {
  color: var(--klccp-white);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.42);
}

.purpose-text strong{
  font-weight: 900;
}

.purpose-text strong {
  font-weight: 900;
}

.about-bottom-row {
  position: absolute;
  left: 3%;
  right: 3%;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  z-index: 3;
}

.about-bottom-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-bottom-bar {
  background: linear-gradient(85deg, rgba(0, 0, 0, 0.79), rgba(0, 0, 0, 0.79));
  padding: 0px 20px 10px;
  border-radius: 6px;
}

.about-bottom-bar .about-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.about-columns .about-col {
  color: var(--klccp-white);
}

.about-columns .about-col h4 {
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--klccp-white);
}

.about-columns .about-col h4 strong {
  font-weight: 900;
}

.about-columns .about-col p {
  font-weight: 300;
  font-size: 0.80rem;
  line-height: 1.2;
  text-align: justify;
  color: var(--klccp-white);
}

.about-download {
  margin-bottom: 10px;
  flex-shrink: 0;
}

/* Download button icon */
.btn-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
}

.btn-download-icon svg {
  display: block;
}

/* --------------------------------------------------------------------------
   Page 4: Investment Proposition (#section-proposition)
   -------------------------------------------------------------------------- */

#section-proposition {
  background: linear-gradient(180deg, #dcebf3 0%, #f2f7fa 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
}

@media (min-width: 1025px) {
  #section-proposition {
    min-height: auto;
  }
}

#section-proposition .section-title,
#section-proposition .section-action {
  width: min(100%, 1440px);
  font-weight: 900;
  text-align: center;
}

#section-proposition .section-action {
  display: flex;
  justify-content: center;
}

.proposition-layout {
  width: 100%;
  max-width: 1220px;
  margin: -100px auto 30px;
}

.proposition-stack {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 1220 / 660;
}

.proposition-layer {
  display: block;
  width: 100%;
  height: auto;
}

.proposition-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 0.72s var(--transition-ease),
              transform 0.72s var(--transition-ease);
  pointer-events: none;
}

.proposition-layer:nth-child(1) { z-index: 11; }
.proposition-layer:nth-child(2) { z-index: 10; }
.proposition-layer:nth-child(3) { z-index: 9; }
.proposition-layer:nth-child(4) { z-index: 8; }
.proposition-layer:nth-child(5) { z-index: 7; }
.proposition-layer:nth-child(6) { z-index: 6; }
.proposition-layer:nth-child(7) { z-index: 5; }
.proposition-layer:nth-child(8) { z-index: 4; }
.proposition-layer:nth-child(9) { z-index: 3; }
.proposition-layer:nth-child(10) { z-index: 2; }
.proposition-layer:nth-child(11) { z-index: 1; }

.proposition-layout.visible .proposition-layer {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.proposition-layout.visible .proposition-layer:nth-child(1) { transition-delay: 0.25s; }
.proposition-layout.visible .proposition-layer:nth-child(2) { transition-delay: 2s; }
.proposition-layout.visible .proposition-layer:nth-child(3) { transition-delay: 2s; }
.proposition-layout.visible .proposition-layer:nth-child(4) { transition-delay: 1.87s; }
.proposition-layout.visible .proposition-layer:nth-child(5) { transition-delay: 1.67s; }
.proposition-layout.visible .proposition-layer:nth-child(6) { transition-delay: 1.27s; }
.proposition-layout.visible .proposition-layer:nth-child(7) { transition-delay: 1.12s; }
.proposition-layout.visible .proposition-layer:nth-child(8) { transition-delay: 0.97s; }
.proposition-layout.visible .proposition-layer:nth-child(9) { transition-delay: 0.87s; }
.proposition-layout.visible .proposition-layer:nth-child(10) { transition-delay: 0.77s; }
.proposition-layout.visible .proposition-layer:nth-child(11) { transition-delay: 0.67s; }

#section-proposition .section-action .btn-download {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Page 5: Leadership (#section-leadership)
   -------------------------------------------------------------------------- */

#section-leadership {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  overflow: hidden;
  min-height: auto;
}

#section-leadership::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

#section-leadership > * {
  position: relative;
  z-index: 2;
}

#section-leadership .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#section-leadership .section-title {
  color: var(--klccp-white);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

/* Leadership grid – static 3-column layout */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.leader-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-card {
  position: relative;
  width: 100%;
  border: 2.5px solid transparent;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--klccp-teal), #4ecdc4) border-box;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
  padding-bottom: 70px;
}

.leader-card:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.22);
}

.leader-card .leader-photo {
  width: 100%;
}

.leader-card .leader-info {
  background: #ffffff;
  padding: 18px 5px 0;
  text-align: center;
  width: 100%;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--klccp-teal), #4DB649) 1;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

/* Bio overlay – collapsed by default, expands on hover via max-height */
.leader-bio-overlay {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.leader-card:hover .leader-bio-overlay {
  max-height: 300px;
}

.leader-bio-text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #4A494B;
  padding-top: 10px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Executive sections — hidden by default, shown as full-screen modals
   -------------------------------------------------------------------------- */

#section-chairman,
#section-ceo,
#section-cfo {
  display: none;
}

#section-chairman.exec-modal-active,
#section-ceo.exec-modal-active,
#section-cfo.exec-modal-active {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 0;
  animation: execModalFadeIn 0.3s ease;
}

@keyframes execModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exec-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--klccp-white);
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s;
}

.exec-modal-close:hover {
  background: #f5f5f5;
  color: var(--klccp-dark);
}

/* --------------------------------------------------------------------------
   Page 6: Chairman (#section-chairman) — mirrored CEO layout
   -------------------------------------------------------------------------- */

#section-chairman {
  background: var(--klccp-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.chairman-layout {
  display: grid;
  grid-template-columns: 28% 72%;
  position: relative;
  min-height: 100vh;
}

/* Left area: title & button (white bg) */
.chairman-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 40px 60px 5%;
  z-index: 1;
}

.chairman-left-top {
  text-align: left;
}

.chairman-left-bottom {
  text-align: left;
}

#section-chairman .exec-subtitle {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.15;
}

#section-chairman .exec-title {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

/* Right gradient panel */
.chairman-panel {
  border-radius: 140px 0 0 0;
  border: none;
  border-left: 20.5px solid rgba(255,255,255,0.18);
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.chairman-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #015A80 25%, #52B647 92%);
  z-index: -2;
}

.chairman-panel::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: 20%;
  width: 100%;
  height: 120%;
  background: url('../img/towers-pattern.png') no-repeat bottom right / contain;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.chairman-panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  max-width: 75%;
  margin-left: auto;
  padding: 48px 5% 60px 40px;
  position: relative;
  z-index: 1;
}

#section-chairman .exec-quote {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: var(--klccp-white);
  text-align: left;
  margin-top: -18%;
  margin-bottom: 0;
  max-width: 100%;
}

#section-chairman .exec-quote-group{
  margin-right: 20%;
}

.exec-quote-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
}

.exec-quote-group .btn-download {
  margin-top: 2vh;
}

.chairman-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 5px;
  margin-top: 15px;
}

#section-chairman .exec-name {
  color: var(--klccp-white);
  font-weight: 900;
  font-size: 1rem;
  padding-bottom: 0px;
  margin-top: 2px;
}

#section-chairman .exec-role {
  color: var(--klccp-white);
  font-size: 0.9em;
  font-weight: 700;
  margin: 0;
}

/* Person image — overlapping from center-left */
.chairman-person {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 35%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.chairman-person img {
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  display: block;
}

/* STEADFAST watermark — on the right (gradient) side */
.chairman-watermark {
  position: absolute;
  right: 0;
  top: 80px;
  bottom: 20px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 15vh;
  font-weight: 900;
  color: #65D4A5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(180deg);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Page 7: CEO (#section-ceo)
   -------------------------------------------------------------------------- */

#section-ceo {
  background: var(--klccp-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.ceo-layout {
  display: grid;
  grid-template-columns: 72% 28%;
  position: relative;
  min-height: 100vh;
}

/* Left gradient panel */
.ceo-panel {
  border-radius: 0 140px 0 0;
  border: none;
  border-right: 20.5px solid rgba(255,255,255,0.18);
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.ceo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(221deg, #015A80 35%, #3bec67 100%);
  z-index: -2;
}

.ceo-panel::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 20%;
  width: 100%;
  height: 120%;
  background: url('../img/towers-pattern.png') no-repeat bottom left / contain;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.ceo-panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  max-width: 75%;
  padding: 48px 40px 120px;
  position: relative;
  z-index: 1;
}

#section-ceo .exec-quote {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: var(--klccp-white);
  text-align: right;
  padding-left: 10vh;
  margin-top: -5%;
  margin-bottom: 0;
  max-width: 80%;
}

.ceo-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15px;
}


.ceo-arrow {
  margin-bottom: 4px;
}

#section-ceo .exec-name {
  color: var(--klccp-white);
  font-weight: 900;
  font-size: 1rem;
  padding-bottom: 0px;
  margin-top: 2px;
}

#section-ceo .exec-role {
  color: var(--klccp-white);
  font-size: 0.9em;
  font-weight: 700;
  margin: 0;
}

/* Right area */
.ceo-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 5% 60px 40px;
  z-index: 1;
}

.ceo-right-top {
  text-align: right;
}

#section-ceo .exec-subtitle {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.15;
}

#section-ceo .exec-title {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

#section-ceo .exec-title strong {
  font-weight: 900;
}

.ceo-right-bottom {
  text-align: right;
}

.ceo-right-bottom .btn-download {
  margin-left: auto;
}

/* Person image — centered at bottom */
.ceo-person {
  position: absolute;
  bottom: 0;
  left: 35%;
  right: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ceo-person img {
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  display: block;
}

/* THRIVE watermark */
.ceo-watermark {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 21vh;
  font-weight: 900;
  color: #65D4A5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}


#section-sustainability-info {
  background: var(--klccp-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.sustainability-info-layout {
  display: grid;
  grid-template-columns: 72% 28%;
  position: relative;
  min-height: 100vh;
}

/* Left gradient panel */
.sustainability-info-panel {
  border-radius: 0 140px 0 0;
  border: none;
  border-right: 20.5px solid rgba(255,255,255,0.18);
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.sustainability-info-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(221deg, #015A80 35%, #3bec67 100%);
  z-index: -2;
}

.sustainability-info-panel::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 20%;
  width: 100%;
  height: 120%;
  background: url('../img/towers-pattern.png') no-repeat bottom left / contain;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.sustainability-info-panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  max-width: 75%;
  padding: 48px 40px 20px;
  position: relative;
  z-index: 1;
}

#section-sustainability-info .exec-quote {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: var(--klccp-white);
  text-align: right;
  padding-left: 13vh;
  margin-right: -20%;
  margin-top: -5%;
  margin-bottom: 0;
  max-width: 75%;
}

#section-sustainability-info .exec-quote-group .btn-download {
  margin-right: -18%;
}

.sustainability-info-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 15px;
  margin-right: -10%;
}


.sustainability-info-arrow {
  margin-bottom: 4px;
}

#section-sustainability-info .exec-name {
  color: var(--klccp-white);
  font-weight: 900;
  font-size: 1rem;
  padding-bottom: 0px;
  margin-top: 2px;
}

#section-sustainability-info .exec-role {
  color: var(--klccp-white);
  font-size: 0.9em;
  font-weight: 700;
  margin: 0;
}

/* Right area */
.sustainability-info-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 5% 60px 40px;
  z-index: 1;
}

.sustainability-info-right-top {
  text-align: right;
}

#section-sustainability-info .exec-subtitle {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.15;
}

#section-sustainability-info .exec-title {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
}

#section-sustainability-info .exec-title strong {
  font-weight: 900;
}

.sustainability-info-right-bottom {
  text-align: right;
}

.sustainability-info-right-bottom .btn-download {
  margin-left: auto;
}

/* Person image — centered at bottom */
.sustainability-info-person {
  position: absolute;
  bottom: -8%;
  left: 35%;
  right: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.sustainability-info-person img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
  display: block;
}

/* THRIVE watermark */
.sustainability-info-watermark {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 21vh;
  font-weight: 900;
  color: #65D4A5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   Page 8: CFO (#section-cfo)
   -------------------------------------------------------------------------- */

#section-cfo {
  background: var(--klccp-white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cfo-layout {
  display: grid;
  grid-template-columns: 72% 28%;
  position: relative;
  min-height: 100vh;
}

/* Left gradient panel — full height, flush left & bottom */
.cfo-panel {
  border-radius: 0 140px 0 0;
  border: none;
  border-right: 20.5px solid rgba(255,255,255,0.18);
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.cfo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(221deg, #015A80 35%, #3bec67 100%);
  z-index: -2;
}

.cfo-panel::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 20%;
  width: 100%;
  height: 120%;
  background: url('../img/towers-pattern.png') no-repeat bottom left / contain;
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}

.cfo-panel-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  max-width: 75%;
  padding: 48px 40px 120px;
  position: relative;
  z-index: 1;
}

#section-cfo .exec-quote {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: var(--klccp-white);
  text-align: right;
  margin-top: -20%;
  margin-bottom: 0;
  max-width: 80%;
}

.cfo-panel-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  margin-top: 10px;
}


.cfo-play-icon {
  margin-bottom: 4px;
}

#section-cfo .exec-name {
  color: var(--klccp-white);
  font-weight: 900;
  font-size: 1rem;
  padding-bottom: 0px;
  margin-top: 2px;
}

#section-cfo .exec-role {
  color: var(--klccp-white);
  font-size: 0.9em;
  font-weight: 700;
  margin: 0;
}

/* Right area */
.cfo-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 5% 60px 40px;
  z-index: 1;
}

.cfo-right-top {
  text-align: right;
}

#section-cfo .exec-subtitle {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.15;
}

#section-cfo .exec-title {
  color: var(--klccp-blue);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin: 0;
}

.cfo-right-bottom {
  text-align: right;
}

.cfo-right-bottom .btn-download {
  margin-left: auto;
}

/* Person image — centered at bottom of entire section */
.cfo-person {
  position: absolute;
  bottom: 0;
  left: 37%;
  right: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cfo-person img {
  max-height: 77vh;
  width: auto;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   Pages 9-11: Investment Case (#section-investment)
   -------------------------------------------------------------------------- */

#section-investment {
  background-position: top center;
  background-size: cover;
  position: relative;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

#section-investment .section-title {
  color: var(--klccp-white);
  text-align: center;
  font-weight: 800;
  margin-bottom: 2rem;
}

/* Tabs Navigation */
.tabs {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.tab-nav {
  margin-bottom: 3rem;
}

.tab-nav ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.tab-nav li {
  list-style: none;
}

.tab-nav li a {
  text-align: center;
  display: block;
  padding: 5px;
  font-weight: 900;
  font-size: 0.85rem;
  min-width: 200px;
  max-width: 200px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.8);
  background: #B1B2B5;
  border-radius: 25px;
  transition: color var(--transition-speed) var(--transition-ease),
              background var(--transition-speed) var(--transition-ease);
  cursor: pointer;
}

.tab-nav li a:hover {
  color: var(--klccp-white);
  background: rgba(255, 255, 255, 0.35);
}

.tab-nav li a.active,
.tab-nav li.active a {
  color: var(--klccp-white);
  background: linear-gradient(135deg, var(--klccp-teal), var(--klccp-green));
}

/* Tab Content */
.tab-content-single {
  display: none;
  width: 100%;
}

.tab-content-single.current {
  display: block;
  animation: tabFadeIn 0.5s var(--transition-ease);
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition-speed) var(--transition-ease),
              transform var(--transition-speed) var(--transition-ease);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.stat-box .stat-value {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--klccp-white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-box .stat-value.running {
  color: var(--klccp-orange);
}

.stat-box .stat-label {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.stat-box .stat-unit {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

/* Investment Card (white card inside Investment Case section) */
.investment-card {
  background: rgb(234 234 235 / 93%);
  border-radius: 16px;
  padding: 20px 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: visible;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.investment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--klccp-teal), var(--klccp-green));
  z-index: 1;
  pointer-events: none;

  --border-w: 1.5px;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) padding-box;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0) padding-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: var(--border-w);
}

.investment-badge {
  display: block;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, var(--klccp-blue), var(--klccp-green));
  color: var(--klccp-white);
  font-weight: 900;
  font-size: 1em;
  letter-spacing: 0.05em;
  padding: 8px 22px;
  border-radius: 20px;
  margin-top: -40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
  position: relative;
  z-index: 2;
}

/* Stat overrides inside investment card */
.investment-card .stat-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.investment-card .stat-box {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  text-align: left;
  padding: 20px 24px;
}

.investment-card .stat-box:hover {
  background: transparent;
  transform: none;
}

.investment-card .stat-box .stat-prefix {
  color: #F79427;
  font-weight: 900;
  font-size: 1rem;
  padding-bottom: 6px;
  background-image: radial-gradient(circle, var(--klccp-teal) 0.75px, transparent 0.75px);
  background-size: 5px 1.5px;
  background-repeat: repeat-x;
  background-position: bottom;
  margin-bottom: 12px;
}

.investment-card .stat-box .stat-value {
  background: linear-gradient(90deg, var(--klccp-blue), var(--klccp-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.investment-card .stat-box .stat-value .running {
  -webkit-text-fill-color: transparent;
}

.investment-card .stat-box .stat-value .stat-unit {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--klccp-blue), var(--klccp-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.investment-card .stat-box .highlight-text {
  color: var(--klccp-teal);
}

.stat-comparison {
  font-size: 0.9rem;
  color: #4A494B;
  font-weight: 300;
}

/* Business Highlights 2×2 grid */
.biz-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: none;
}

.biz-highlight-cell {
  padding: 24px;
  position: relative;
}

/* Circular dotted dividers via radial-gradient */
.biz-highlight-cell:nth-child(1) {
  background-image:
    radial-gradient(circle, var(--klccp-teal) 0.75px, transparent 0.75px),
    radial-gradient(circle, var(--klccp-teal) 0.75px, transparent 0.75px);
  background-size: 5px 1.5px, 1.5px 5px;
  background-repeat: repeat-x, repeat-y;
  background-position: bottom, right;
}

.biz-highlight-cell:nth-child(2) {
  background-image: radial-gradient(circle, var(--klccp-teal) 0.75px, transparent 0.75px);
  background-size: 5px 1.5px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-left: 48px;
}

.biz-highlight-cell:nth-child(3) {
  background-image: radial-gradient(circle, var(--klccp-teal) 0.75px, transparent 0.75px);
  background-size: 1.5px 5px;
  background-repeat: repeat-y;
  background-position: right;
}

/* Orange "V" bullet */
.biz-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
}

.biz-highlight-cell p {
  font-size: 1.1rem;
  color: #4A494B;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

/* Bold teal highlights */
.hl-blue {
  color: #007A92;
  font-weight: 900;
}

.hl-gray {
  color: #757578;
  font-weight: 500;
}

/* Occupancy icons row */
.occupancy-icons {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  align-items: flex-end;
}

.occ-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  color: #4A494B;
  font-weight: 300;
}

.occ-item img {
  width: 48px;
  height: 48px;
}

.occ-item strong {
  font-weight: 900;
  font-size: 1rem;
  color: #4A494B;
}

/* Cell with side icon */
.biz-cell-with-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

.biz-inline-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.biz-highlight-cell:nth-child(4) {
  padding-left: 48px;
}

/* Expanded Facilities: icon floated to bottom-right with text wrap */
.biz-highlight-cell:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.biz-highlight-cell:nth-child(3) .biz-cell-with-icon {
  display: block;
  flex: 1;
}

.biz-highlight-cell:nth-child(3) .biz-cell-with-icon::before {
  content: '';
  float: right;
  width: 0;
  height: 1.4em;
}

.biz-highlight-cell:nth-child(3) .biz-inline-icon {
  float: right;
  clear: right;
  margin-left: 16px;
  margin-bottom: 8px;
}

/* Customer Centricity Highlights 3-col grid */
.cust-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.cust-highlight-cell {
  padding: 24px;
  position: relative;
}

/* Circular dotted vertical dividers between columns */
.cust-highlight-cell:nth-child(1),
.cust-highlight-cell:nth-child(2) {
  background-image: radial-gradient(circle, var(--klccp-teal) 0.75px, transparent 0.75px);
  background-size: 1.5px 5px;
  background-repeat: repeat-y;
  background-position: right;
}

/* Top row: arrow bullet left, icons right */
.cust-cell-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cust-cell-icons {
  display: flex;
  gap: 8px;
  margin-right: 22px;
}

.cust-cell-icons img {
  width: 48px;
  height: 48px;
}

.cust-highlight-cell p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.2;
  margin: 0;
}

#section-investment .section-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Our Business Activities (#section-business-activities)
   -------------------------------------------------------------------------- */

#section-business-activities {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  min-height: auto !important;
}

#section-business-activities .section-title {
  color: var(--klccp-white);
  font-weight: 900;
  margin-bottom: 0px;
}

#section-business-activities .section-action {
  display: flex;
  justify-content: center;
}

#section-business-activities .section-action .btn-download {
  margin-top: 20px;
}

/* --- Value Creation Model: 3-column accordion layout --- */

.vcm-layout {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto 0px;
  /* height driven by the center image aspect ratio */
  aspect-ratio: 1220 / 660;
}

.vcm-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 250px;
  z-index: 2;
}

.vcm-panel-left {
  left: 0;
  top: 0;
  bottom: 0;
  justify-content: center;
  gap: 60px;
}

.vcm-panel-right {
  right: 0;
  top: 0;
  bottom: 0;
  justify-content: center;
  gap: 60px;
}

.vcm-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.vcm-center img {
  width: 700px;
  display: block;
}

/* Each accordion item */
.vcm-item {
  position: relative;
}

/* Accordion bar — narrower badge centered on wider card */
.vcm-bar {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  width: 100%;
  padding: 14px 10px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(86deg, #01698A, var(--klccp-green));
  color: var(--klccp-white);
  font-family: var(--body-font);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: filter 0.25s var(--transition-ease);
}

.vcm-bar:hover {
  filter: brightness(1.08);
}

.vcm-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--klccp-blue);
  border-radius: 50%;
  background-color: var(--klccp-white);
  border: 1.5px solid var(--klccp-white);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Expandable card — hidden by default (no longer used for accordion) */
.vcm-card {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

/* Always-open card (INPUTS) — sustainability-card pattern */
.vcm-card-always-open {
  position: relative;
  overflow: visible;
  border-radius: 16px;
  padding: 28px 16px 18px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(135deg, var(--klccp-teal), var(--klccp-green)) border-box;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Badge bar sits on the card's top border */
.vcm-card-always-open .vcm-bar {
  margin: -45px 0 12px;
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
}

/* List resets — card container handles background/shadow now */
.vcm-card-always-open .vcm-card-list {
  padding: 0 0 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

/* Clickable list items */
.vcm-card-always-open .vcm-card-list li[data-vcm-modal] {
  cursor: pointer;
  transition: color 0.2s;
}
.vcm-card-always-open .vcm-card-list li[data-vcm-modal]:hover {
  color: var(--klccp-teal);
}

.vcm-card-list {
  background: var(--klccp-white);
  border-radius: 12px;
  padding: 50px 16px 18px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.vcm-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4A494B;
  line-height: 1.4;
}

.vcm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F89C1B;
  color: var(--klccp-white);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

/* Staggered entrance animation — individual items */
.vcm-center,
.vcm-item {
  opacity: 0;
  transition: opacity 0.7s var(--transition-ease),
              transform 0.7s var(--transition-ease);
}

.vcm-center {
  transform: scale(0.92);
}

.vcm-panel-left .vcm-item {
  transform: translateX(-30px);
}

.vcm-panel-right .vcm-item {
  transform: translateX(30px);
}

/* Order: circle → inputs → outputs → outcomes → actions → trade-offs */
.vcm-layout.visible .vcm-center {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.vcm-layout.visible .vcm-panel-left .vcm-item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.vcm-layout.visible .vcm-panel-left .vcm-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.0s;
}

.vcm-layout.visible .vcm-panel-right .vcm-item:nth-child(1) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.4s;
}

.vcm-layout.visible .vcm-panel-right .vcm-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1.8s;
}

.vcm-layout.visible .vcm-panel-right .vcm-item:nth-child(3) {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2.2s;
}

/* --------------------------------------------------------------------------
   Page 12: Strategy (#section-strategy)
   -------------------------------------------------------------------------- */

#section-strategy {
  background-color: var(--klccp-white);
  position: relative;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#section-strategy .cityscape-decor {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 400px;
  opacity: 0.12;
  pointer-events: none;
}

.strategy-title {
  color: var(--klccp-blue);
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.strategy-purpose-banner {
  background-color: var(--klccp-teal);
  color: var(--klccp-white);
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 800px;
}

.strategy-badge {
  display: inline-block;
  background-color: var(--klccp-blue);
  color: var(--klccp-white);
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.strategy-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1100px;
}

.strategy-columns .strategy-col {
  text-align: center;
  padding: 24px;
}

.strategy-col .strategy-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--klccp-teal);
}

.strategy-col .strategy-icon img {
  max-width: 44px;
  max-height: 44px;
}

.strategy-col h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--klccp-dark);
  margin-bottom: 12px;
}

.strategy-col p {
  font-weight: 300;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.strategy-col .investment-callout {
  border: 2px solid var(--klccp-teal);
  border-radius: 10px;
  padding: 16px 20px;
  background-color: rgba(43, 122, 120, 0.05);
}

.strategy-col .investment-callout .callout-label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--klccp-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.strategy-col .investment-callout .callout-amount {
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--klccp-teal-dark);
}

.strategy-col:nth-child(2) .investment-callout {
  border-color: var(--klccp-green);
  background-color: rgba(63, 165, 53, 0.05);
}

.strategy-col:nth-child(2) .investment-callout .callout-label {
  color: var(--klccp-green);
}

.strategy-col:nth-child(2) .investment-callout .callout-amount {
  color: #2d7a25;
}

.strategy-col:nth-child(2) .strategy-icon {
  background-color: var(--klccp-green);
}

.strategy-col:nth-child(3) .strategy-icon {
  background-color: var(--klccp-navy);
}

/* --------------------------------------------------------------------------
   Page 13: Sustainability (#section-sustainability)
   -------------------------------------------------------------------------- */

#section-sustainability {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 5% 20px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#section-sustainability .section-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 0;
}

#section-sustainability .section-title {
  color: var(--klccp-white);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 800;
}

.sustainability-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* --- Sustainability Card (Left) --- */

.sustainability-card {
  border-radius: 16px;
  padding: 28px 24px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: visible;
  position: relative;
  max-width: 400px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    linear-gradient(135deg, var(--klccp-teal), var(--klccp-green)) border-box;
}

.sustainability-badge {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #007694, 58%, var(--klccp-green));
  color: var(--klccp-white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.05em;
  padding: 2px 40px;
  border-radius: 20px;
  margin-top: -45px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(43, 122, 120, 0.3);
  text-align: center;
}

.sustainability-timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 12px 0;
}

.timeline-content strong{
  color: var(--klccp-blue);
  font-weight: 800;
}

.timeline-marker {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.timeline-marker svg {
  display: block;
}

.timeline-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.timeline-content p {
  flex: 1;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.1;
  color: var(--klccp-dark);
  margin: 0;
}

.timeline-content p strong {
  font-weight: 900;
  color: #02859D;
}

.timeline-content .timeline-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  object-fit: contain;
  align-self: center;
}

.timeline-content .timeline-icon-svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-self: center;
}

.timeline-divider {
  height: 0;
  background: none;
  border-top: 2px dotted #c0c0c0;
}

/* --- Sustainability Card Staggered Animation --- */
.sustainability-badge,
.sustainability-timeline > * {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sustainability-card.visible .sustainability-badge {
  opacity: 1; transform: translateY(0); transition-delay: 0.2s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(1) {
  opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(2) {
  opacity: 1; transform: translateY(0); transition-delay: 0.6s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(3) {
  opacity: 1; transform: translateY(0); transition-delay: 0.8s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(4) {
  opacity: 1; transform: translateY(0); transition-delay: 1.0s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(5) {
  opacity: 1; transform: translateY(0); transition-delay: 1.2s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(6) {
  opacity: 1; transform: translateY(0); transition-delay: 1.4s;
}
.sustainability-card.visible .sustainability-timeline > :nth-child(7) {
  opacity: 1; transform: translateY(0); transition-delay: 1.6s;
}

/* --- Sustainability Profile (Right) --- */

.sustainability-profile {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
}

.sustainability-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 0;
  z-index: 2;
  max-width: 400px;
}

.sustainability-quote {
  color: var(--klccp-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 3rem;
}

.sustainability-name {
  color: var(--klccp-white);
  font-weight: 800;
  font-size: 1rem;
  text-align: right;
}

.sustainability-role {
  color: var(--klccp-white);
  font-weight: 500;
  font-size: 0.85rem;
  text-align: right;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.sustainability-photo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: flex-end;
  margin-left: auto;
  margin-right: 0;
}

.sustainability-photo img {
  margin-bottom: -50%;
  width: 400px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

#section-sustainability .btn-read-more {
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Page 14: AGM (#section-agm)
   -------------------------------------------------------------------------- */

#section-agm {
  background-color: var(--klccp-teal-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  text-align: center;
}

#section-agm .section-title {
  color: var(--klccp-white);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}

.agm-meetings {
  display: flex;
  gap: 48px;
  margin-bottom: 3rem;
  align-items: center;
  justify-content: center;
}

.agm-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
}

.timer-box {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Info row: date | time | calendar */
.agm-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.agm-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 400;
}

.agm-info-item svg {
  flex-shrink: 0;
}

.agm-info-item > svg {
  background: var(--klccp-orange);
  border: 1px solid var(--klccp-orange);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--klccp-white);
  box-sizing: border-box;
}

.agm-info-calendar {
  gap: 6px;
}

.cal-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--klccp-orange);
  border: 1px solid var(--klccp-orange);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: var(--klccp-white);
  transition: opacity var(--transition-speed) var(--transition-ease);
}

.cal-icon-btn:hover {
  opacity: 0.85;
}

.agm-broadcast {
  color: var(--klccp-white);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-align: center;
}

.agm-venue-full {
  color: var(--klccp-white);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}

.agm-venue-full strong {
  font-weight: 700;
  color: var(--klccp-white);
}

/* --------------------------------------------------------------------------
   Page 15: Downloads (#section-downloads)
   -------------------------------------------------------------------------- */

#section-downloads {
  background: linear-gradient(76deg, #1a5c6e 33%, #3bec67 100%);;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0px 5% 10px;
}

#section-downloads .section-inner {
  flex:1;
  display: flex;
}

.downloads-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  flex: 1;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.downloads-books {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.downloads-books .book-mockup {
  max-width: 260px;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-speed) var(--transition-ease);
}

.downloads-books .book-mockup:first-child {
  transform: rotate(-5deg) translateX(-20px);
  z-index: 1;
}

.downloads-books .book-mockup:last-child {
  transform: rotate(3deg) translateX(20px);
  z-index: 2;
  margin-left: -60px;
}

.downloads-books:hover .book-mockup:first-child {
  transform: rotate(-8deg) translateX(-30px);
}

.downloads-books:hover .book-mockup:last-child {
  transform: rotate(5deg) translateX(30px);
}

.downloads-content {
  color: var(--klccp-white);
}

.downloads-content h2 {
  font-weight: 800;
  font-size: 2.3em;
  margin-bottom: 2rem;
}

.downloads-content .section-subtitle {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 2rem;
}

.downloads-checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.downloads-checklist li {
  margin-bottom: 12px;
}

.downloads-checklist li label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
  font-size: 1rem;
  color: var(--klccp-white);
  cursor: pointer;
}

.downloads-checklist li input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background-color var(--transition-speed) var(--transition-ease),
              border-color var(--transition-speed) var(--transition-ease);
}

.downloads-checklist li input[type="checkbox"]:checked {
  background-color: var(--klccp-teal);
  border-color: var(--klccp-teal);
}

.downloads-checklist li input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--klccp-white);
  font-size: 14px;
  font-weight: 700;
}

.downloads-content .btn-download {
  margin-bottom: 2rem;
}

.archive-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #B9DB9B;
  font-weight: 800;
  font-size: 1em;
  transition: color var(--transition-speed) var(--transition-ease),
              border-color var(--transition-speed) var(--transition-ease);
}

/* Footer / Copyright */
.downloads-footer {
  text-align: center;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */

.text-white  { color: var(--klccp-white); }
.text-dark   { color: var(--klccp-dark); }
.text-teal   { color: var(--klccp-teal); }
.text-blue   { color: var(--klccp-blue); }
.text-green  { color: var(--klccp-green); }
.text-orange { color: var(--klccp-orange); }

.fw-300 { font-weight: 300; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Layout Helpers
   -------------------------------------------------------------------------- */

.section-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.section-overlay.dark-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.section-title.dark {
  color: var(--klccp-blue);
}


/* --------------------------------------------------------------------------
   Fix: Leadership card inner elements
   -------------------------------------------------------------------------- */

.leader-card .leader-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.leader-card .leader-info h4 {
  font-weight: 900;
  font-size: 1rem;
  color: var(--klccp-blue);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
}

.leader-card .leader-info p {
  font-weight: 300;
  font-size: 0.9rem;
  color: #4A494B;
  margin-bottom: 0;
  padding-bottom: 12px;
  line-height: 1.2;
}

.leader-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--klccp-white);
  border: 1.5px solid var(--klccp-blue);
  background: var(--klccp-blue);
  border-radius: 50px;
  padding: 4px 16px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  margin-top: 14px;
  transition: background var(--transition-speed) var(--transition-ease),
              color var(--transition-speed) var(--transition-ease),
              transform var(--transition-speed) var(--transition-ease);
}

.leader-readmore-text {
  white-space: nowrap;
}

.leader-readmore:hover .leader-readmore-arrow {
  border-color: #fff;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Fix: Exec section subtitle/title/name/role
   -------------------------------------------------------------------------- */

.exec-content .exec-subtitle {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.exec-content .exec-title {
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--klccp-white);
}

.exec-content .exec-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--klccp-white);
  margin-top: 1.5rem;
  margin-bottom: 2px;
}

.exec-content .exec-role {
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.exec-watermark.watermark-left {
  right: auto;
  left: -40px;
  transform: translateY(-50%) rotate(90deg);
}

/* --------------------------------------------------------------------------
   Fix: Strategy section elements
   -------------------------------------------------------------------------- */

.strategy-decor {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 400px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.strategy-decor .strategy-skyline {
  width: 100%;
  height: auto;
}

.strategy-badge span {
  display: inline-block;
}

.strategy-col h4 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--klccp-dark);
  margin-bottom: 12px;
}

.strategy-invest-box {
  border: 2px solid var(--klccp-teal);
  border-radius: 10px;
  padding: 16px 20px;
  background-color: rgba(43, 122, 120, 0.05);
}

.strategy-invest-box .invest-label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--klccp-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.strategy-invest-box .invest-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--klccp-teal-dark);
  display: block;
}

.strategy-col:nth-child(2) .strategy-invest-box {
  border-color: var(--klccp-green);
  background-color: rgba(63, 165, 53, 0.05);
}

.strategy-col:nth-child(2) .strategy-invest-box .invest-label {
  color: var(--klccp-green);
}

.strategy-col:nth-child(3) .strategy-invest-box {
  border-color: var(--klccp-navy);
  background-color: rgba(52, 94, 131, 0.05);
}

.strategy-col:nth-child(3) .strategy-invest-box .invest-label {
  color: var(--klccp-navy);
}

.strategy-icon {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--klccp-white);
  letter-spacing: 1px;
}

.strategy-icon.mc { background-color: var(--klccp-teal); }
.strategy-icon.eb { background-color: var(--klccp-green); }
.strategy-icon.so { background-color: var(--klccp-navy); }

.strategy-purpose {
  text-align: center;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Fix: Stat prefix
   -------------------------------------------------------------------------- */

.stat-box .stat-prefix {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin-bottom: 8px;
}

.stat-box .stat-value .running {
  color: var(--klccp-orange);
}

.stat-box .highlight-text {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--klccp-orange);
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   Fix: Tab nav active state
   -------------------------------------------------------------------------- */

.tab-nav li.current.light-blue a {
  color: var(--klccp-white);
  background: #67C9B5;
}

.tab-nav li.current.green a {
  color: var(--klccp-white);
  background: #B9DC9C;
}

.tab-nav li.current.blue a {
  color: var(--klccp-white);
  background: var(--klccp-blue);
}

/* --------------------------------------------------------------------------
   Fix: AGM meeting blocks
   -------------------------------------------------------------------------- */

.agm-meeting {
  color: var(--klccp-white);
  text-align: center;
}

.agm-meeting .agm-ordinal {
  display: block;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--klccp-orange);
  margin-bottom: 8px;
  line-height: 1;
}

.agm-meeting .agm-ordinal sup {
  font-size: 0.45em;
  vertical-align: super;
}

.agm-meeting .agm-company {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  max-width: 300px;
}

/* Timer num/label (label is inside .num box) */
.timer-unit .num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 25px 20px;
  min-width: 150px;
  font-size: 3.5em;
  font-weight: 700;
  color: var(--klccp-white);
  line-height: 1;
  text-align: center;
  background: #2B92A7;
  border: 1px solid var(--klccp-green);
  box-shadow: -3px 9px 6px 3px rgba(0, 0, 0, 0.1);
}

.timer-unit .num .num-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--klccp-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.timer-sep {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--klccp-white);
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Fix: Downloads section elements
   -------------------------------------------------------------------------- */

.downloads-books .book-img {
  max-width: 260px;
}

.downloads-books .book-ir {
  text-align: center;
  color: var(--klccp-white);
  padding: 16px 20px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.downloads-books .book-sr {
  text-align: center;
  color: var(--klccp-white);
  padding: 16px 20px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.download-list {
  margin-bottom: 2rem;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 1rem;
  color: var(--klccp-white);
  cursor: pointer;
}

.download-item input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background-color var(--transition-speed) var(--transition-ease),
              border-color var(--transition-speed) var(--transition-ease);
}

.download-item input[type="checkbox"]:checked {
  background-color: var(--klccp-blue);
  border-color: var(--klccp-blue);
}

.download-item input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--klccp-white);
  font-size: 14px;
  font-weight: 700;
}

.download-item.fade-in:nth-child(1) { transition-delay: 0s; }
.download-item.fade-in:nth-child(2) { transition-delay: 0.1s; }
.download-item.fade-in:nth-child(3) { transition-delay: 0.2s; }
.download-item.fade-in:nth-child(4) { transition-delay: 0.3s; }
.download-item.fade-in:nth-child(5) { transition-delay: 0.4s; }

.downloads-content .btn-download.fade-in { transition-delay: 0.5s; }
.downloads-content .btn-download.fade-in + .fade-in { transition-delay: 0.6s; }

.download-item .checkmark {
  display: none;
}

.site-footer {
  text-align: center;
  padding: 24px 0 0 15px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Popup Overlay (generated by JS)
   -------------------------------------------------------------------------- */

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s var(--transition-ease);
}

.popup-overlay.active {
  opacity: 1;
}

.popup-container {
  background: var(--klccp-white);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s var(--transition-ease);
}

.popup-overlay.active .popup-container {
  transform: translateY(0);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 24px 68px;
  border-bottom: 1px solid #eee;
}

.popup-header h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--klccp-dark);
}

.popup-header .btn-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  transition: background var(--transition-speed) var(--transition-ease),
              color var(--transition-speed) var(--transition-ease);
}

.popup-header .btn-close:hover {
  background: #f5f5f5;
  color: var(--klccp-dark);
}

.popup-body {
  padding: 32px;
  overflow-y: auto;
  line-height: 1.8;
  color: var(--klccp-dark);
}

.popup-body p {
  margin-bottom: 1rem;
}

/* VCM Modal — wide card grid */
.vcm-modal-wide {
  max-width: 1060px;
}

.vcm-modal-wide .popup-header {
  background: #d4eef6;
  border-bottom: none;
}

.vcm-modal-wide .popup-header h3 {
  width: auto;
  text-align: center;
  color: var(--klccp-white);
  background: #006E87;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 900;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.vcm-modal-wide .popup-body {
  background: #d4eef6;
  padding: 0 32px 32px;
}

.vcm-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vcm-modal-card {
  background: var(--klccp-white);
  border-radius: 12px;
  padding: 24px;
}

.vcm-modal-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 900;
  color: #006E87;
  margin-bottom: 8px;
}

.vcm-modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 20%;
  transform: rotate(45deg);
  text-transform: rotate(45deg);
  background: #F89C1B;
  color: var(--klccp-white);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.vcm-modal-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}

.vcm-modal-card ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
}

.vcm-outcomes-list {
  list-style: none !important;
}

/* --- VCM Output stat grid --- */

.vcm-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 16px;
}

.vcm-stat-item {
  padding-top: 10px;
}

.vcm-stat-item h5 {
  font-size: 0.85rem;
  font-weight: 900;
  color: #F79427;
  margin-bottom: 4px;
  border-bottom: 2px dotted #000;
}

.vcm-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 2px;
}

.vcm-stat-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.1;
}

.vcm-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, var(--klccp-blue), var(--klccp-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vcm-cyan-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #77A9CA;
}

.vcm-stat-number-unit {
  background: linear-gradient(90deg, var(--klccp-blue), var(--klccp-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vcm-stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}

.vcm-stat-unit {
  font-size: 0.82rem;
  font-weight: 900;
  color: #333;
  line-height: 1;
}

.vcm-stat-prev {
  font-size: 0.78rem;
  line-height: 1.2;
  color: #666;
}

.vcm-stat-desc {
  font-size: 0.78rem;
  color: #333;
  line-height: 1.5;
  margin-top: 2px;
}

.vcm-stat-sup {
  margin-top: 5px;
  font-size: 0.65em;
  line-height: 1;
}

.vcm-stat-footnote {
  font-size: 0.75rem;
  color: #666;
  margin-top: 12px;
  margin-bottom: 0;
}

/* --- Value indicators for OUTCOMES modal --- */

.vcm-outcomes-list {
  list-style: none;
  padding-left: 0;
}

.vcm-outcomes-list li {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.vcm-outcomes-list li > img {
  flex-shrink: 0;
  position: relative;
  top: 2px;
}

.vcm-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: #000;
}

.vcm-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vcm-modal-card .vcm-sub-item {
  display: list-item !important;
  list-style: disc !important;
  margin-left: 22px;
}

.popup-exec-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Responsive fixes for menu mobile
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .menu-nav-side {
    flex: 1;
    border-radius: 0;
    border: none;
  }
}

@media (max-width: 768px) {
  .menu-nav-list ul li a {
    font-size: 18px;
  }
}
