/* ROOT DESIGN TOKENS */
:root {
  --color-green-dark: #1e4620;
  --color-green-mid: #2d6a4f;
  --color-green-light: #52b788;
  --color-green-bg: #122c13;
  --color-orange: #f2a03f;
  --color-orange-dark: #e76f51;
  --color-red: #a90f1a;
  --color-red-dark: #8b0000;
  --color-bg-light: #fdfbf7;
  --color-bg-grey: #f5f5f3;
  --color-text-dark: #1a2f20;
  --color-text-light: #fdfbf7;
  --color-text-muted: #839788;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans: 'Encode Sans', system-ui, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* READING PROGRESS BAR */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  transition: width 0.1s ease-out;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.container-narrow {
  max-width: 800px;
}

/* HERO COVER */
.hero-cover {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.05);
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(30, 70, 32, 0.5) 0%, rgba(18, 44, 19, 0.85) 70%, rgba(18, 44, 19, 0.95) 100%);
  z-index: 2;
}

.hero-map-overlay {
  position: absolute;
  right: 5%;
  top: 10%;
  width: 300px;
  height: 300px;
  z-index: 3;
  opacity: 0.8;
  pointer-events: none;
}

.hero-qr-overlay {
  position: absolute;
  left: 5%;
  bottom: 8%;
  z-index: 3;
  opacity: 0.85;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(18, 44, 19, 0.6);
  border: 1px solid rgba(242, 160, 63, 0.3);
  padding: 12px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.svg-qr {
  width: 80px;
  height: 80px;
  animation: qrPulse 2.5s infinite alternate;
}

.qr-container span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--color-orange);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 90%;
  max-width: 1000px;
  text-align: center;
  padding: 40px 20px;
}

.badge-economic {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 4px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(169, 15, 26, 0.4);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
  color: var(--color-text-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* STATS CARDS */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-orange);
  display: inline-block;
}

.stat-suffix {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-orange);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  margin-top: 8px;
  opacity: 0.85;
  color: var(--color-text-light);
}

/* MOUSE SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.mouse-scroll {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-text-light);
  border-radius: 12px;
  position: relative;
}

.mouse-scroll .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

.scroll-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* INTRO SECTION */
.section-intro {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.panorama-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 50px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.panorama-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s ease;
}

.panorama-wrapper:hover .panorama-img {
  transform: scale(1.03);
}

.panorama-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: var(--color-text-light);
  padding: 20px;
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

.lead-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.8;
  color: #2b3a30;
  text-align: justify;
}

.drop-cap {
  font-size: 4.2rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--color-green-dark);
}

/* PART HEADER SECTIONS */
.part-header-bg {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--color-text-light);
  text-align: center;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 44, 19, 0.7) 0%, rgba(18, 44, 19, 0.9) 100%);
  z-index: 1;
}

.part-header-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.part-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.part-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.part-desc {
  font-size: 1.05rem;
  opacity: 0.85;
  font-weight: 300;
}

/* SECTION SPECIFICS */
.section-dark-green {
  background-color: var(--color-green-bg);
  color: rgba(255,255,255,0.9);
}

.section-dark-green .container {
  padding-top: 80px;
}

.editor-content-block {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.15rem;
  line-height: 1.75;
  text-align: justify;
}

.editor-content-block.text-dark {
  color: var(--color-text-dark);
}

/* GRID LAYOUTS */
.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-light-grey .info-card {
  background: var(--color-text-light);
  border: 1px solid rgba(0,0,0,0.05);
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.section-light-grey .info-card h3 {
  border-bottom-color: rgba(0,0,0,0.08);
}

.svg-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.svg-infographic-map, .svg-nature-factors, .svg-value-chain, .svg-process-path, .svg-dashboard-mock, .svg-pyramid {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.card-caption {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.7;
  text-align: center;
  margin-top: 10px;
}

.callout-quote-small {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-orange);
  text-align: center;
  font-style: italic;
  margin-top: 15px;
  padding: 15px;
  border-left: 3px solid var(--color-orange);
  background: rgba(242, 160, 63, 0.05);
}

/* PORTRAITS */
.row-story {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.story-text {
  flex: 1 1 500px;
}

.story-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-align: justify;
}

.portrait-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.avatar-mockup {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-green-mid), var(--color-orange));
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-mockup.dark {
  background: linear-gradient(135deg, var(--color-green-dark), var(--color-red));
}

.avatar-initials {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-text-light);
}

.avatar-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 102px;
  height: 102px;
  border: 2px solid var(--color-orange);
  border-radius: 50%;
  opacity: 0.6;
}

.portrait-meta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.portrait-meta .age {
  font-size: 0.85rem;
  opacity: 0.7;
  display: block;
  margin-bottom: 15px;
}

.portrait-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.9;
  position: relative;
  padding: 0 10px;
}

.portrait-quote::before {
  content: '“';
  font-size: 3rem;
  position: absolute;
  top: -20px;
  left: -5px;
  color: var(--color-orange);
  opacity: 0.3;
}

/* TIMELINES */
.timeline-horizontal {
  background: rgba(0,0,0,0.2);
  padding: 40px;
  border-radius: 12px;
  margin: 60px 0;
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--color-orange);
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.timeline-track {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.timeline-node {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-green-mid);
  border: 3px solid var(--color-orange);
  color: var(--color-text-light);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-node {
  background: var(--color-orange);
  transform: scale(1.15);
}

.timeline-content h4 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.75;
}

/* BEFORE VS AFTER BOX */
.before-after-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  margin: 60px 0;
}

.before-after-box h3 {
  font-size: 1.2rem;
  color: var(--color-orange);
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 30px;
}

.ba-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.ba-side {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
  background: rgba(0,0,0,0.15);
  min-height: 250px;
}

.ba-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.badge-red {
  background-color: var(--color-red);
  color: var(--color-text-light);
}

.badge-green {
  background-color: var(--color-green-mid);
  color: var(--color-text-light);
}

.ba-side ul {
  list-style: none;
}

.ba-side li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.ba-side .icon {
  font-weight: bold;
  font-size: 1.1rem;
}

.before-side .icon {
  color: #ef476f;
}

.after-side .icon {
  color: var(--color-green-light);
}

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CALLOUT FOCUS */
.callout-focus-box {
  position: relative;
  background: rgba(242, 160, 63, 0.05);
  border: 1px solid rgba(242, 160, 63, 0.15);
  padding: 30px;
  border-radius: 8px;
  margin: 50px 0;
}

.accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-orange);
  border-radius: 4px 0 0 4px;
}

.callout-focus-box p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* SECTION 2 SPECIFICS - LIGHT GREY */
.section-light-grey {
  background-color: var(--color-bg-grey);
  color: var(--color-text-dark);
}

.subtitle-large {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-green-dark);
  margin-bottom: 20px;
  text-align: center;
}

.value-chain-card {
  background: var(--color-text-light);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  margin: 50px 0;
}

.value-chain-card h3 {
  font-size: 1.15rem;
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: 1px;
}

.flow-line {
  stroke-dashoffset: 100;
  animation: strokeFlow 4s linear infinite;
}

/* COOP SHOWCASE */
.coop-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  margin: 60px 0;
}

.coop-brand-card {
  background: linear-gradient(135deg, var(--color-green-dark), #122c13);
  color: var(--color-text-light);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(30,70,32,0.25);
}

.coop-brand-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(242, 160, 63, 0.05);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
}

.brand-inner {
  position: relative;
  z-index: 2;
}

.brand-tag {
  display: inline-block;
  background-color: var(--color-orange);
  color: #122c13;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.coop-brand-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.coop-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

.brand-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.b-stat {
  border-left: 2px solid var(--color-orange);
  padding-left: 15px;
}

.b-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-orange);
  display: block;
}

.b-lbl {
  font-size: 0.8rem;
  opacity: 0.8;
}

.coop-founder-card {
  background: var(--color-text-light);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.founder-avatar-block {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 25px;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #3b4d40;
  line-height: 1.7;
}

.coop-founder-card .role {
  font-size: 0.8rem;
  color: var(--color-green-mid);
  font-weight: bold;
}

.coop-founder-card .name {
  color: var(--color-green-dark);
}

/* FARMING PRACTICES GRID */
.farming-practices-grid {
  margin: 80px 0;
}

.grid-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.practices-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.practice-box {
  background: var(--color-text-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.practice-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-color: var(--color-green-mid);
}

.practice-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.05);
  border: 1px solid rgba(45, 106, 79, 0.12);
  transition: var(--transition-smooth);
}

.practice-box:hover .practice-icon {
  background: rgba(242, 160, 63, 0.08);
  border-color: rgba(242, 160, 63, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.practice-box h4 {
  font-size: 1.1rem;
  color: var(--color-green-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.practice-box p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4a5c50;
}

/* VERTICAL TIMELINE */
.timeline-vertical-box {
  background: var(--color-text-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 40px;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.timeline-vertical-box h3 {
  font-size: 1.15rem;
  color: var(--color-green-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}

.v-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.v-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(45, 106, 79, 0.15);
  top: 0;
  bottom: 0;
  left: 90px;
}

.v-time-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.v-time-badge {
  width: 70px;
  height: 36px;
  background-color: var(--color-green-mid);
  color: var(--color-text-light);
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.v-time-item:hover .v-time-badge {
  background-color: var(--color-orange);
}

.v-time-content {
  margin-left: 50px;
  background-color: var(--color-bg-grey);
  border-radius: 8px;
  padding: 20px 25px;
  flex: 1;
  position: relative;
}

.v-time-content::after {
  content: '';
  position: absolute;
  top: 10px;
  left: -10px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent var(--color-bg-grey) transparent transparent;
}

.v-time-content h4 {
  font-size: 1.05rem;
  color: var(--color-green-dark);
  margin-bottom: 6px;
}

.v-time-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #3b4d40;
}

/* ANALYSIS BOX */
.analysis-box {
  background: rgba(45, 106, 79, 0.05);
  border: 1px solid rgba(45, 106, 79, 0.12);
  border-radius: 8px;
  padding: 30px;
  margin: 50px 0;
}

.analysis-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-dark);
}

/* SECTION 3 - TECH BACKGROUND */
.section-tech {
  background-color: #0d1b15;
  color: rgba(255,255,255,0.85);
}

.text-gold {
  color: var(--color-orange);
}

/* PROCESS PATH */
.process-path-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  border-radius: 12px;
  margin: 50px 0;
  text-align: center;
}

.process-path-block h3 {
  font-size: 1.15rem;
  color: var(--color-orange);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.glow-node {
  animation: pulseNode 2s infinite alternate;
}

/* EXPLAIN TECH CODES CARD */
.tech-explain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.card-accent-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 15px;
}

.bg-orange {
  background-color: var(--color-orange);
  color: #122c13;
}

.bg-red {
  background-color: var(--color-red);
  color: var(--color-text-light);
}

.tech-explain-card h4 {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.explain-text {
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 15px;
}

.explain-list {
  padding-left: 20px;
}

.explain-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* DASHBOARD SIMULATOR */
.digital-dashboard-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  margin: 60px 0;
}

.digital-dashboard-card h3 {
  font-size: 1.2rem;
  color: var(--color-orange);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.db-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.db-details h4 {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

.db-details p {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

.db-feature-list {
  list-style: none;
}

.db-feature-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.6;
}

.db-feature-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.65rem;
  color: var(--color-orange);
}

.db-feature-list strong {
  color: var(--color-orange);
  display: block;
}

/* CALLOUT QUOTE */
.callout-quote-large {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-orange);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 80px auto;
  padding: 0 40px;
  border-left: 4px solid var(--color-orange);
  border-right: 4px solid var(--color-orange);
  font-style: italic;
}

/* FUTURE & OCOP BLOCK */
.future-ocop-block {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  margin: 60px 0;
}

.future-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
}

.future-card h4 {
  font-size: 1.15rem;
  color: var(--color-orange);
  margin-bottom: 25px;
  letter-spacing: 1.5px;
}

.bullet-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  border-left: 3px solid var(--color-green-mid);
}

.ocop-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.svg-ocop-badge {
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(242, 160, 63, 0.3));
}

.ocop-card h4 {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  font-weight: bold;
}

.ocop-card p {
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* CONCLUSION SECTION */
.section-conclusion {
  position: relative;
  color: var(--color-text-light);
  padding: 120px 0;
  overflow: hidden;
}

.conclusion-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.02);
}

.conclusion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 27, 21, 0.95) 0%, rgba(18, 44, 19, 0.98) 100%);
  z-index: 2;
}

.section-conclusion .container-narrow {
  position: relative;
  z-index: 3;
}

.conclusion-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
}

/* PYRAMID CHART */
.pyramid-block {
  margin-bottom: 60px;
  text-align: center;
}

.pyramid-title {
  font-size: 1.1rem;
  color: var(--color-orange);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.pyramid-level {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pyramid-level:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.conclusion-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  text-align: center;
  font-style: italic;
  color: var(--color-text-light);
  margin: 50px 0;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
}

.conclusion-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  text-align: justify;
  margin-bottom: 30px;
}

/* FOOTER */
.emag-footer {
  margin-top: 80px;
  text-align: center;
}

.footer-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
  margin-bottom: 40px;
}

.author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.author-block .role {
  font-size: 0.8rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.author-block .name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-orange);
}

.footer-cop {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* KEYFRAMES FOR ANIMATIONS */
@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  50% { opacity: 0.5; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

@keyframes qrPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(242, 160, 63, 0.2)); }
  100% { transform: scale(1.04); filter: drop-shadow(0 0 10px rgba(242, 160, 63, 0.6)); }
}

@keyframes strokeFlow {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulseNode {
  0% { r: 10; fill-opacity: 0.8; stroke: rgba(255,255,255,0.2); stroke-width: 0px; }
  100% { r: 14; fill-opacity: 1; stroke: rgba(255,255,255,0.4); stroke-width: 8px; }
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-map-overlay {
    display: none; /* Hide map on tablets and smaller to avoid clutter */
  }
  
  .coop-showcase {
    grid-template-columns: 1fr;
  }
  
  .db-wrapper {
    grid-template-columns: 1fr;
  }
  
  .future-ocop-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-qr-overlay {
    position: relative;
    left: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .ba-grid {
    flex-direction: column;
  }
  
  .ba-divider {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .v-timeline::after {
    left: 20px;
  }
  
  .v-timeline {
    padding-left: 0;
  }
  
  .v-time-item {
    flex-direction: column;
  }
  
  .v-time-badge {
    margin-bottom: 15px;
  }
  
  .v-time-content {
    margin-left: 20px;
  }
  
  .v-time-content::after {
    top: -16px;
    left: 10px;
    border-color: transparent transparent var(--color-bg-grey) transparent;
  }
  
  .timeline-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-track {
    display: none;
  }
  
  .timeline-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
