/* 
   eMagazine Style - Premium Business Agriculture 
   Inspired by Financial Times, Bloomberg Businessweek, Nikkei Asia
*/

@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --primary-green: #0E4429;
  /* Xanh nông nghiệp đậm, sang trọng */
  --medium-green: #1B5E3A;
  /* Xanh trung cấp */
  --light-green: #E8F5E9;
  /* Nền xanh rất nhạt cho quote card */
  --olive-green: #556B2F;
  /* Xanh olive */
  --cream-bg: #FCFBF7;
  /* Vàng nhạt kem cho nền tạp chí */
  --white: #FFFFFF;
  --gray-bg: #F4F6F4;
  /* Ghi sáng */
  --gray-border: #E2E8F0;
  --text-main: #000304;
  /* Màu chữ chính (Charcoal) dễ đọc, sang trọng */
  --text-light: #5A6A72;
  --accent-gradient: linear-gradient(135deg, #10B981, #06B6D4);
  /* Xanh lá -> Xanh ngọc */
  --accent-gradient-text: linear-gradient(90deg, #0E4429, #10B981);

  /* Fonts */
  --font-title: 'Encode Sans', sans-serif;
  --font-body: 'Encode Sans', sans-serif;
  --font-sans: 'Encode Sans', sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-quick: all 0.2s ease;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  background-color: var(--cream-bg);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

/* Line & Divider Decor */
.thin-line {
  height: 1px;
  background-color: rgba(14, 68, 41, 0.1);
  width: 100%;
  margin: 2rem 0;
}

.gradient-line {
  height: 3px;
  background: var(--accent-gradient);
  width: 60px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* HEADER - TYPOGRAPHY ART - NO HERO IMAGE */
.emag-header {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem 2rem;
  background-color: var(--cream-bg);
  position: relative;
}

.emag-meta {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--olive-green);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.emag-meta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.emag-title-wrapper {
  max-width: 1000px;
  margin-bottom: 3rem;
  position: relative;
}

.emag-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-green);
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.emag-title span.gradient-highlight {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  font-weight: 900;
}

.emag-title span.gradient-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0.3;
  border-radius: 2px;
}

.deco-leaf {
  display: inline-block;
  width: 45px;
  height: 45px;
  color: var(--medium-green);
  vertical-align: middle;
  margin: 0 10px;
  animation: float 4s ease-in-out infinite;
}

/* SAPO SECTION */
.sapo-section {
  background-color: var(--white);
  padding: 5rem 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  position: relative;
}

.sapo-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.sapo-container::before {
  content: "“";
  font-family: var(--font-title);
  font-size: 8rem;
  color: var(--light-green);
  position: absolute;
  top: -50px;
  left: -20px;
  line-height: 1;
  font-weight: 900;
  z-index: 1;
}

.sapo-text {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.85;
  color: var(--text-main);
  font-weight: 500;
  position: relative;
  z-index: 2;
  text-align: justify;
}

.sapo-text p {
  margin-bottom: 1.5rem;
}

.sapo-text p:last-child {
  margin-bottom: 0;
}

/* ARTICLE STRUCTURE - SPLIT LAYOUT FOR MAGAZINE FEEL */
.magazine-body {
  background-color: var(--cream-bg);
  position: relative;
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .magazine-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .magazine-sidebar {
    width: 30%;
    position: sticky;
    top: 6rem;
    padding-top: 1rem;
  }

  .magazine-content {
    width: 70%;
    padding-left: 3rem;
    border-left: 1px solid rgba(14, 68, 41, 0.08);
  }
}

/* SECTION TITLE BLOCKS */
.title-block-sticky {
  position: relative;
}

.title-number {
  font-family: var(--font-title);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(14, 68, 41, 0.12) 0%, rgba(14, 68, 41, 0.01) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  margin-bottom: -1.5rem;
  margin-left: -5px;
}

.title-block-sticky h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.title-decor-line {
  width: 80px;
  height: 2px;
  background-color: var(--medium-green);
  margin-top: 1rem;
  position: relative;
}

.title-decor-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  background-color: var(--olive-green);
  border-radius: 50%;
}

/* CONTENT TEXT STYLING */
.editorial-text {
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.9;
  color: var(--text-main);
  text-align: justify;
}

.editorial-text p {
  margin-bottom: 2rem;
}

.editorial-text p:last-child {
  margin-bottom: 0;
}

/* QUOTE CARDS - PREMIUM MAGAZINE DESIGN */
.quote-card {
  background-color: var(--white);
  border-left: 4px solid var(--medium-green);
  border-radius: 0 16px 16px 0;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 15px 35px rgba(14, 68, 41, 0.02);
  position: relative;
  transition: var(--transition-smooth);
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(14, 68, 41, 0.05);
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  color: rgba(27, 94, 32, 0.08);
}

.quote-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  position: relative;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-author-line {
  width: 25px;
  height: 1px;
  background-color: var(--olive-green);
}

.quote-author-info {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.quote-author-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.2rem;
}

/* HIGHLIGHT BOX - KPI CARD BLOCK */
.kpi-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.kpi-card {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(14, 68, 41, 0.04);
}

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

.kpi-num {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

.kpi-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 1rem auto;
  color: var(--olive-green);
}

/* REAL IMAGES STYLING */
.inline-image-wrapper {
  margin: 3.5rem 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  position: relative;
}

.inline-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.image-caption {
  padding: 1.2rem 2rem;
  background-color: var(--white);
  border-top: 1px solid var(--gray-border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.image-caption svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--medium-green);
}

/* INFOGRAPHICS WRAPPERS */
.infographic-wrapper {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  margin: 4rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow-x: auto;
}

.info-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.info-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.info-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Badge Container for Info */
.info-badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.info-badge {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--medium-green);
  background-color: var(--light-green);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(27, 94, 32, 0.15);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.info-badge svg {
  width: 14px;
  height: 14px;
}

/* INFOGRAPHIC 1 - FLOW NGANG (LANDSCAPE) */
.flow-container-horizontal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  min-width: 1300px;
  /* Force landscape scrolling on tiny viewports */
}

.flow-step {
  flex: 1;
  background-color: var(--gray-bg);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.flow-step:hover {
  transform: translateY(-5px);
  background-color: var(--light-green);
  border-color: rgba(27, 94, 32, 0.2);
  box-shadow: 0 10px 20px rgba(14, 68, 41, 0.05);
}

.flow-step-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
  color: var(--medium-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-text {
  font-family: var(--font-sans);
  font-size: 21px;
  /* Tăng cỡ chữ infographic thêm 2px (tối thiểu 19px) */
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.3;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--olive-green);
  flex-shrink: 0;
  animation: pulse-arrow 2s infinite;
}

.flow-arrow svg {
  width: 24px;
  height: 24px;
}

/* INFOGRAPHIC 2 - GREENLIFE HARVEST PROCESS */
.greenlife-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .greenlife-info-grid {
    grid-template-columns: 1.2fr 2fr 1.2fr;
  }
}

.greenlife-col {
  background-color: var(--gray-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--gray-border);
}

.greenlife-col.highlight-col {
  background-color: var(--white);
  border: 1.5px solid var(--medium-green);
  box-shadow: 0 10px 30px rgba(14, 68, 41, 0.03);
}

.col-header {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(14, 68, 41, 0.1);
  padding-bottom: 0.8rem;
}

.farm-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.farm-visual svg {
  width: 80px;
  height: 80px;
  color: var(--medium-green);
}

.farm-title {
  font-family: var(--font-sans);
  font-size: 21px;
  /* Tăng cỡ chữ infographic thêm 2px (tối thiểu 19px) */
  font-weight: 700;
  color: var(--primary-green);
}

.process-flow-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.process-node {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition-smooth);
}

.process-node:hover {
  border-color: var(--medium-green);
  transform: translateX(5px);
}

.process-node-num {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(27, 94, 32, 0.2);
  line-height: 1;
}

.process-node-icon {
  width: 36px;
  height: 36px;
  color: var(--olive-green);
}

.process-node-title {
  font-family: var(--font-sans);
  font-size: 21px;
  /* Tăng cỡ chữ infographic thêm 2px (tối thiểu 19px) */
  font-weight: 700;
  color: var(--primary-green);
}

.market-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.market-item {
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.market-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.market-flag {
  font-size: 2rem;
  line-height: 1;
}

.market-name {
  font-family: var(--font-sans);
  font-size: 21px;
  /* Tăng cỡ chữ infographic thêm 2px (tối thiểu 19px) */
  font-weight: 700;
  color: var(--primary-green);
}

/* INFOGRAPHIC 3 - HỆ SINH THÁI HÌNH TRÒN */
.ecosystem-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
  position: relative;
  padding: 2rem 0;
  min-width: 800px;
  /* Bảo đảm hiển thị dạng landscape */
}

.ecosystem-svg-bg {
  position: absolute;
  width: 580px;
  height: 580px;
  z-index: 1;
  pointer-events: none;
}

.ecosystem-center {
  width: 150px;
  height: 150px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  z-index: 10;
  padding: 1rem;
  position: relative;
  transition: var(--transition-smooth);
}

.ecosystem-center:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.ecosystem-center-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.ecosystem-center-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.ecosystem-branch {
  position: absolute;
  width: 170px;
  background-color: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  /* Tránh ngắt chữ */
  white-space: normal;
}

.ecosystem-branch:hover {
  transform: translateY(-8px);
  border-color: var(--medium-green);
  box-shadow: 0 15px 35px rgba(14, 68, 41, 0.08);
}

.ecosystem-branch-icon {
  width: 32px;
  height: 32px;
  color: var(--medium-green);
  margin-bottom: 0.5rem;
}

.ecosystem-branch-text {
  font-family: var(--font-sans);
  font-size: 21px;
  /* Tăng cỡ chữ infographic thêm 2px (tối thiểu 19px) */
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.3;
}

/* Định vị 9 nhánh bao quanh hình tròn bán kính ~240px */
/* Công thức góc: i * (360 / 9) = i * 40 độ */
.branch-0 {
  transform: translate(0px, -240px);
}

.branch-1 {
  transform: translate(154px, -184px);
}

.branch-2 {
  transform: translate(236px, -42px);
}

.branch-3 {
  transform: translate(184px, 154px);
}

.branch-4 {
  transform: translate(42px, 236px);
}

.branch-5 {
  transform: translate(-120px, 208px);
}

.branch-6 {
  transform: translate(-225px, 82px);
}

.branch-7 {
  transform: translate(-225px, -82px);
}

.branch-8 {
  transform: translate(-120px, -208px);
}

/* FOOTER */
.emag-footer {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-author {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-note {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin: 0 auto;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes pulse-arrow {
  0% {
    transform: translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0.6;
  }
}

.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* RESPONSIVE SCROLLBAR FOR LANDSCAPE INFOGRAPHICS */
.infographic-wrapper::-webkit-scrollbar {
  height: 6px;
}

.infographic-wrapper::-webkit-scrollbar-track {
  background: var(--gray-bg);
  border-radius: 10px;
}

.infographic-wrapper::-webkit-scrollbar-thumb {
  background: var(--medium-green);
  border-radius: 10px;
}

/* ==========================================
   MOBILE RESPONSIVE PRESETS 
   ========================================== */

@media (max-width: 1023px) {
  .magazine-sidebar {
    margin-bottom: 2rem;
  }
  .title-number {
    margin-bottom: -1rem;
  }
}

@media (max-width: 767px) {
  /* Layout Padding & Spacing */
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .container {
    padding: 0 1.2rem;
  }
  
  /* Typography */
  .emag-header {
    min-height: 70vh;
    padding: 4rem 1.2rem 3rem 1.2rem;
  }
  
  .emag-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.25;
  }
  
  .deco-leaf {
    width: 32px;
    height: 32px;
    margin: 0 5px;
  }
  
  /* Sapo */
  .sapo-section {
    padding: 3.5rem 0;
  }
  
  .sapo-container::before {
    font-size: 5rem;
    top: -35px;
    left: -5px;
  }
  
  .sapo-text {
    font-size: 1.15rem;
    line-height: 1.75;
  }
  
  /* Sidebar Titles on Mobile */
  .title-block-sticky h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .title-number {
    font-size: 4.5rem;
    margin-bottom: -0.8rem;
  }
  
  /* Editorial Content */
  .editorial-text {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  
  .editorial-text p {
    margin-bottom: 1.5rem;
  }
  
  /* Images */
  .inline-image-wrapper {
    margin: 2.5rem 0;
    border-radius: 16px;
  }
  
  .image-caption {
    padding: 1rem;
    font-size: 0.85rem;
  }
  
  /* Quotes */
  .quote-card {
    padding: 1.8rem 1.5rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
  }
  
  .quote-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  
  .quote-icon {
    width: 30px;
    height: 30px;
    top: 1rem;
    right: 1rem;
  }
  
  /* KPI Cards */
  .kpi-container {
    grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
    gap: 0.8rem;
    margin: 2.5rem 0;
  }
  
  .kpi-card {
    padding: 1.2rem 0.8rem;
    border-radius: 14px;
  }
  
  .kpi-num {
    font-size: 1.8rem;
  }
  
  .kpi-label {
    font-size: 0.8rem;
  }
  
  .kpi-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 0.5rem;
  }
  
  /* Infographics Wrapper */
  .infographic-wrapper {
    padding: 2rem 1.2rem;
    margin: 3rem 0;
    border-radius: 16px;
  }
  
  .info-header {
    margin-bottom: 1.8rem;
  }
  
  .info-title {
    font-size: 1.3rem;
  }
  
  .info-badge-container {
    gap: 0.5rem;
    margin-bottom: 1.8rem;
  }
  
  .info-badge {
    font-size: 13px;
    padding: 0.3rem 0.8rem;
  }
  
  /* Infographic 1 - Flow Scroll indicator */
  .infographic-wrapper::after {
    content: '➔ Vuốt ngang để xem toàn bộ sơ đồ';
    display: block;
    text-align: right;
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
  }
  
  /* Infographic 2 - process and market items spacing */
  .greenlife-col {
    padding: 1.2rem;
    border-radius: 16px;
  }
  
  .process-node {
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .process-node-title {
    font-size: 19px !important; /* Đảm bảo cỡ chữ dễ đọc trên mobile */
  }
  
  .market-name {
    font-size: 19px !important;
  }
  
  /* Infographic 3 - Ecosystem Circular to Vertical Stack on Mobile */
  .ecosystem-container {
    min-width: 100% !important;
    min-height: auto !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    padding: 1.5rem 0.2rem !important;
  }
  
  .ecosystem-svg-bg {
    display: none !important; /* Hide lines */
  }
  
  .ecosystem-center {
    position: relative !important;
    transform: none !important;
    margin: 0 auto 1.5rem auto !important;
    width: 100% !important;
    max-width: 260px !important;
    height: auto !important;
    min-height: 70px !important;
    border-radius: 50px !important;
    flex-direction: row !important;
    gap: 0.8rem !important;
    padding: 0.8rem 1.8rem !important;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2) !important;
  }
  
  .ecosystem-center-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 0 !important;
  }
  
  .ecosystem-center-title {
    font-size: 20px !important;
  }
  
  .ecosystem-branch {
    position: relative !important;
    width: 100% !important;
    max-width: 360px !important;
    transform: none !important; /* Override JS coordinates */
    margin: 0.2rem auto !important;
    padding: 0.9rem 1.2rem !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 1rem !important;
    border-radius: 14px !important;
  }
  
  .ecosystem-branch-icon {
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    width: 30px !important;
    height: 30px !important;
  }
  
  .ecosystem-branch-text {
    font-size: 19px !important; /* Cỡ chữ tối thiểu 19px cho mobile */
    line-height: 1.25 !important;
  }
}

@media (max-width: 480px) {
  .kpi-container {
    grid-template-columns: 1fr; /* Single column on very small phones */
  }
  
  .emag-title {
    font-size: 2.2rem;
  }
}