/* ==========================================================================
   eMagazine: Nông dân "lên sóng", Nông sản "lên hương"
   Premium Economic Magazine Scrollytelling Stylesheet (Full-Width Image & Text Below Layout)
   ========================================================================== */

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

:root {
  /* Color Palette */
  --navy-dark: #040d1a;
  --navy-deep: #0a192f;
  --navy-light: #172a45;
  --tea-dark: #1b4332;
  --tea-green: #2d6a4f;
  --tea-light: #40916c;
  --tea-mint: #74c69d;
  --emerald-deep: #064e3b;
  --emerald-main: #059669;
  --emerald-bright: #10b981;
  --gold-accent: #d4af37;
  --gold-light: #f3c644;
  --gold-glow: rgba(212, 175, 55, 0.25);

  --bg-cream: #f8faf8;
  --bg-card: #ffffff;
  --bg-card-alt: #f0f5f1;

  --text-dark: #0f172a;
  --text-main: #00040a;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  /* Fonts */
  --font-heading: 'Encode Sans', sans-serif;
  --font-body: 'Encode Sans', sans-serif;
  --font-quote: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 20px 40px -15px rgba(4, 13, 26, 0.08);
  --shadow-hover: 0 30px 60px -12px rgba(4, 13, 26, 0.16);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  /* Requirement: Min font size 18px */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tea-light), var(--emerald-main), var(--gold-accent));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Typography Defaults */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

p {
  font-size: 1.125rem;
  /* 18px */
  margin-bottom: 1.8rem;
  color: var(--text-main);
  font-weight: 400;
}

strong {
  color: var(--navy-dark);
  font-weight: 700;
}

/* Common Section Styling */
.emag-section {
  position: relative;
  padding: 6rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  background: var(--navy-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(4, 13, 26, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-header-block {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  /* 42px to ~72px */
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-title span.highlight {
  background: linear-gradient(120deg, var(--tea-green), var(--emerald-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FULL-WIDTH VISUAL BANNERS (No side-by-side) */
.fullwidth-visual-banner {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 3.5rem;
  transition: var(--transition-smooth);
}

.fullwidth-visual-banner:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.fullwidth-visual-banner img {
  width: 100%;
  height: clamp(380px, 55vh, 680px);
  object-fit: cover;
  display: block;
}

.banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(4, 13, 26, 0.95) 0%, rgba(4, 13, 26, 0.6) 70%, transparent 100%);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

/* FULL-WIDTH EDITORIAL TEXT LAYOUT (Text Below Image) */
.editorial-fullwidth-text {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  font-size: 1.125rem;
}

.editorial-fullwidth-text p:first-of-type::first-letter {
  font-size: 4.5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: 0.85rem;
  margin-top: 0.2rem;
  color: var(--tea-green);
}

/* Mid-Article Inline Image Banner */
.inline-visual-banner {
  position: relative;
  width: 100%;
  max-width: 1050px;
  margin: 3.5rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.inline-visual-banner img {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 800px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* Floating Fullwidth Quotes */
.pull-quote {
  position: relative;
  max-width: 950px;
  margin: 4rem auto;
  padding: 3rem;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-deep));
  border-radius: 24px;
  color: #ffffff;
  border-left: 8px solid var(--gold-accent);
  box-shadow: var(--shadow-gold);
  text-align: center;
}

.pull-quote::before {
  content: '“';
  font-family: var(--font-quote);
  font-size: 8rem;
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  pointer-events: none;
}

.pull-quote blockquote {
  font-family: var(--font-quote);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-style: italic;
  line-height: 1.5;
  color: #f8fafc;
  position: relative;
  z-index: 1;
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy-dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transform: scale(1.05);
  transition: transform 1.5s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(4, 13, 26, 0.4) 0%,
      rgba(4, 13, 26, 0.75) 60%,
      rgba(4, 13, 26, 0.98) 100%);
  z-index: 2;
}

/* Hero Digital Layers */
.hero-digital-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.live-wave {
  position: absolute;
  top: 25%;
  right: 12%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(16, 185, 129, 0.6);
  animation: pulseWave 3s infinite ease-out;
}

.live-wave::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  animation: pulseWave 3s infinite ease-out 1s;
}

@keyframes pulseWave {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Floating Tech Badges */
.floating-badge {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: rgba(10, 25, 47, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.floating-badge.badge-live {
  top: 22%;
  right: 15%;
  background: rgba(220, 38, 38, 0.85);
  border-color: #f87171;
  animation-delay: 0s;
}

.floating-badge.badge-ai {
  top: 38%;
  left: 8%;
  border-color: rgba(16, 185, 129, 0.6);
  animation-delay: 1s;
}

.floating-badge.badge-qr {
  bottom: 25%;
  right: 8%;
  border-color: var(--gold-accent);
  animation-delay: 2s;
}

.floating-badge.badge-data {
  top: 60%;
  left: 12%;
  animation-delay: 1.5s;
}

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

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* SVG Connection Lines */
.hero-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(212, 175, 55, 0.25);
  stroke-dasharray: 6 6;
  animation: dashOffset 20s linear infinite;
}

@keyframes dashOffset {
  to {
    stroke-dashoffset: -100;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1100px;
  padding: 0 2rem;
  margin-top: 4rem;
}

.hero-main-title {
  font-size: clamp(3.2rem, 7vw, 4rem);
  /* Requirement 42 - 72px+ */
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-main-title .gold-text {
  color: var(--gold-accent);
  background: linear-gradient(135deg, #fff2b2, var(--gold-accent), #c5a059);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(248, 250, 252, 0.9);
  max-width: 860px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--gold-light);
}

.scroll-down-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.scroll-down-btn svg {
  width: 28px;
  height: 28px;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(5px);
  }
}

/* ==========================================================================
   INFOGRAPHICS COMPONENT STYLES
   ========================================================================== */
.infographic-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  margin: 4.5rem 0;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(45, 106, 79, 0.12);
  position: relative;
  overflow: hidden;
}

.infographic-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--tea-green), var(--emerald-main), var(--gold-accent));
}

.infographic-header {
  text-align: center;
  margin-bottom: 3rem;
}

.infographic-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.infographic-header p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Infographic 1: Horizontal Timeline */
.timeline-horizontal {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
}

.timeline-step {
  flex: 1;
  min-width: 130px;
  background: var(--bg-card-alt);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(45, 106, 79, 0.15);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.timeline-step:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(5, 150, 105, 0.15);
  border-color: var(--emerald-main);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tea-green), var(--emerald-main));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 15px rgba(5, 150, 105, 0.25);
}

.step-title {
  font-size: 1.05rem;
  /* Min 18px constraint */
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  font-size: 1.4rem;
  font-weight: bold;
}

/* Infographic 2: Farmer of New Era (Person Radial) */
.farmer-radial-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 550px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.farmer-center {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-deep));
  border: 4px solid var(--gold-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: var(--shadow-gold);
  color: #ffffff;
  text-align: center;
  padding: 1rem;
}

.farmer-center svg {
  width: 56px;
  height: 56px;
  stroke: var(--gold-accent);
  margin-bottom: 0.5rem;
}

.farmer-center span {
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.2;
}

.radial-node {
  position: absolute;
  background: #ffffff;
  border: 2px solid var(--tea-light);
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  z-index: 4;
}

.radial-node:hover {
  transform: scale(1.1);
  border-color: var(--gold-accent);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.25);
  background: var(--navy-dark);
  color: #ffffff;
}

.radial-node svg {
  width: 24px;
  height: 24px;
  stroke: var(--emerald-main);
}

.radial-node:hover svg {
  stroke: var(--gold-accent);
}

.radial-node span {
  font-size: 1.05rem;
  /* >= 18px */
  font-weight: 700;
  color: var(--navy-dark);
}

.radial-node:hover span {
  color: #ffffff;
}

/* Node Positioning (9 Nodes) */
.node-1 {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.node-2 {
  top: 16%;
  right: 12%;
}

.node-3 {
  top: 42%;
  right: 2%;
}

.node-4 {
  bottom: 20%;
  right: 10%;
}

.node-5 {
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.node-6 {
  bottom: 20%;
  left: 10%;
}

.node-7 {
  top: 42%;
  left: 2%;
}

.node-8 {
  top: 16%;
  left: 12%;
}

.node-9 {
  top: 62%;
  right: 25%;
}

/* Connector SVG behind radial */
.radial-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  stroke: rgba(45, 106, 79, 0.2);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

/* ==========================================================================
   TRANSITION SECTION 1: LIVE STREAM SIMULATOR (KEPT UNCHANGED AS REQUESTED)
   ========================================================================== */
.livestream-transition {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--navy-dark), #091c33, var(--navy-dark));
  color: #ffffff;
  overflow: hidden;
}

.livestream-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.phone-stream-mockup {
  position: relative;
  border-radius: 36px;
  border: 10px solid #1e293b;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(16, 185, 129, 0.2);
  max-width: 480px;
  margin: 0 auto;
}

.phone-stream-mockup img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.stream-overlay-ui {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.stream-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.streamer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.streamer-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
  color: var(--navy-dark);
}

.live-tag {
  background: #ef4444;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Flying Comments Container */
.comments-container {
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}

.comment-bubble {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: #ffffff;
  max-width: 85%;
  animation: slideComment 0.4s ease-out forwards;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-bubble .user-name {
  font-weight: 700;
  color: var(--gold-light);
  margin-right: 0.4rem;
}

@keyframes slideComment {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Floating Reactions */
.reactions-stream {
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  height: 250px;
  width: 50px;
  pointer-events: none;
}

.floating-heart {
  position: absolute;
  bottom: 0;
  font-size: 1.8rem;
  animation: floatUp 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0.8) rotate(0deg);
  }

  50% {
    opacity: 0.9;
    transform: translateY(-120px) scale(1.2) rotate(15deg);
  }

  100% {
    opacity: 0;
    transform: translateY(-250px) scale(1) rotate(-15deg);
  }
}

/* ==========================================================================
   PART 2: INFOGRAPHICS (BEFORE-AFTER & BRAND MINDMAP)
   ========================================================================== */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.ba-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.ba-card.before-card {
  background: #f1f5f9;
  border: 2px dashed #cbd5e1;
}

.ba-card.after-card {
  background: linear-gradient(145deg, #064e3b, #0a192f);
  color: #ffffff;
  border: 2px solid var(--gold-accent);
  box-shadow: var(--shadow-gold);
}

.ba-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.after-card .ba-header {
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

.ba-badge {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.before-card .ba-badge {
  background: #e2e8f0;
  color: var(--text-muted);
}

.after-card .ba-badge {
  background: var(--gold-accent);
  color: var(--navy-dark);
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ba-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  /* >= 18px */
  font-weight: 600;
}

.ba-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.before-card .ba-icon {
  background: #e2e8f0;
  color: #64748b;
}

.after-card .ba-icon {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border: 1px solid var(--gold-accent);
}

.value-multiplier-banner {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(90deg, var(--tea-green), var(--emerald-main), var(--tea-green));
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
}

/* Infographic 2: Brand Ecosystem Circular Mindmap */
.mindmap-circular-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 580px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mindmap-center {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-deep), var(--tea-green));
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  border: 4px solid var(--gold-accent);
  box-shadow: var(--shadow-gold);
  z-index: 5;
  text-align: center;
}

.mindmap-center span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mindmap-orbit-node {
  position: absolute;
  background: #ffffff;
  border: 2px solid var(--emerald-main);
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-size: 1.05rem;
  /* >= 18px */
  font-weight: 700;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.12);
  transition: var(--transition-smooth);
  z-index: 4;
}

.mindmap-orbit-node:hover {
  background: var(--emerald-deep);
  color: #ffffff;
  border-color: var(--gold-accent);
  transform: scale(1.12);
  box-shadow: 0 15px 35px rgba(6, 78, 59, 0.3);
}

.mindmap-orbit-node svg {
  width: 22px;
  height: 22px;
  stroke: var(--emerald-main);
}

.mindmap-orbit-node:hover svg {
  stroke: var(--gold-accent);
}

/* Positioning 10 Mindmap Orbit Nodes */
.mm-1 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.mm-2 {
  top: 12%;
  right: 18%;
}

.mm-3 {
  top: 32%;
  right: 5%;
}

.mm-4 {
  bottom: 32%;
  right: 5%;
}

.mm-5 {
  bottom: 12%;
  right: 18%;
}

.mm-6 {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.mm-7 {
  bottom: 12%;
  left: 18%;
}

.mm-8 {
  bottom: 32%;
  left: 5%;
}

.mm-9 {
  top: 32%;
  left: 5%;
}

.mm-10 {
  top: 12%;
  left: 18%;
}

/* Orbit SVG Line */
.orbit-svg-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(5, 150, 105, 0.25);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 6;
}

/* ==========================================================================
   PART 3: FLOW & HEXAGON INFOGRAPHICS
   ========================================================================== */
/* Flow Infographic Horizontal/Grid */
.flow-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.flow-card {
  background: var(--bg-card-alt);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(45, 106, 79, 0.15);
  transition: var(--transition-smooth);
  position: relative;
}

.flow-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-card);
}

.flow-card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.flow-card-title {
  font-size: 1.08rem;
  /* >= 18px */
  font-weight: 800;
  color: var(--navy-dark);
}

/* Hexagon Grid Infographic */
.hexagon-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 2rem auto 0 auto;
}

.hex-item {
  width: 220px;
  height: 190px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #ffffff;
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.hex-item:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--emerald-deep), var(--tea-green));
  box-shadow: var(--shadow-gold);
  z-index: 10;
}

.hex-item.hex-center {
  background: linear-gradient(135deg, var(--gold-accent), #c5a059);
  color: var(--navy-dark);
  font-weight: 900;
}

.hex-item.hex-center:hover {
  background: linear-gradient(135deg, #fff2b2, var(--gold-accent));
}

.hex-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.hex-center .hex-icon {
  color: var(--navy-dark);
}

.hex-title {
  font-size: 1.05rem;
  /* >= 18px */
  font-weight: 700;
  line-height: 1.3;
}

/* ==========================================================================
   CONCLUSION SECTION
   ========================================================================== */
.conclusion-container {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy-dark);
  color: #ffffff;
  overflow: hidden;
  text-align: center;
  padding: 6rem 2rem;
}

.conclusion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.conclusion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 26, 0.6) 0%, rgba(4, 13, 26, 0.92) 100%);
}

.conclusion-content {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: 0 auto;
}

.conclusion-quote {
  font-family: var(--font-quote);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.author-byline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.icon-strip-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 1.8rem;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
}

.icon-strip-footer span {
  transition: transform 0.3s ease;
}

.icon-strip-footer span:hover {
  transform: scale(1.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET OPTIMIZATIONS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: clamp(2.4rem, 6.5vw, 3.8rem);
    line-height: 1.3;
  }

  .timeline-horizontal {
    flex-direction: column;
  }

  .timeline-arrow {
    transform: rotate(90deg);
    margin: 0.5rem 0;
  }

  .farmer-radial-container,
  .mindmap-circular-wrapper {
    height: auto;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem 0;
  }

  .farmer-center,
  .mindmap-center {
    position: static;
    transform: none !important;
    margin: 0 auto 1.5rem auto;
    width: 150px;
    height: 150px;
  }

  .radial-node,
  .mindmap-orbit-node {
    position: static;
    transform: none !important;
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1.1rem;
    box-sizing: border-box;
  }

  .radial-svg-bg,
  .orbit-svg-line {
    display: none;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .flow-container {
    grid-template-columns: 1fr 1fr;
  }

  .livestream-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .fullwidth-visual-banner img {
    min-height: 380px;
    max-height: 600px;
  }

  .inline-visual-banner img {
    min-height: 340px;
    max-height: 520px;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 17px;
  }

  body {
    line-height: 1.75;
  }

  .emag-section {
    padding: 3.5rem 1rem;
  }

  /* Hero Mobile Enhancements */
  .hero-container {
    padding: 3rem 1rem 2rem 1rem;
  }

  .hero-content {
    padding: 0 0.5rem;
    margin-top: 2rem;
  }

  .hero-main-title {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
    line-height: 1.35;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .floating-badge {
    display: none;
    /* Hide cluttered badges on small screens */
  }

  .live-wave {
    width: 80px;
    height: 80px;
    right: 5%;
    top: 15%;
  }

  /* Section Titles & Banners Mobile */
  .section-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: 1.25rem;
  }

  .fullwidth-visual-banner {
    border-radius: 16px;
    margin-bottom: 2.5rem;
  }

  .fullwidth-visual-banner img {
    min-height: 250px;
    max-height: 420px;
    object-position: center 20%;
  }

  .banner-caption {
    padding: 1.1rem 1.25rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .inline-visual-banner {
    border-radius: 16px;
    margin: 2.5rem auto;
  }

  .inline-visual-banner img {
    min-height: 230px;
    max-height: 380px;
    object-position: center 20%;
  }

  .editorial-fullwidth-text {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
  }

  .editorial-fullwidth-text p {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
  }

  .editorial-fullwidth-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    margin-right: 0.6rem;
  }

  /* Quotes Mobile */
  .pull-quote {
    padding: 2rem 1.25rem 1.75rem 1.25rem;
    margin: 2.5rem auto;
    border-radius: 16px;
    border-left-width: 5px;
  }

  .pull-quote::before {
    font-size: 4.5rem;
    top: -0.8rem;
    left: 0.75rem;
  }

  .pull-quote blockquote {
    font-size: 1.2rem;
    line-height: 1.55;
  }

  .pull-quote cite {
    font-size: 0.88rem;
    margin-top: 1rem;
  }

  /* Infographic Boxes Mobile */
  .infographic-box {
    padding: 2rem 1rem;
    margin: 3rem 0;
    border-radius: 18px;
  }

  .infographic-header h3 {
    font-size: 1.35rem;
  }

  .infographic-header p {
    font-size: 0.9rem;
  }

  .timeline-step {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .step-title {
    font-size: 1rem;
  }

  /* Before After Mobile */
  .ba-card {
    padding: 1.5rem 1.1rem;
    border-radius: 16px;
  }

  .ba-list li {
    font-size: 1rem;
    gap: 0.75rem;
  }

  .ba-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .value-multiplier-banner {
    font-size: 1rem;
    padding: 1.1rem 0.75rem;
    border-radius: 12px;
  }

  /* Mindmap Nodes Mobile */
  .mindmap-orbit-node span {
    font-size: 0.98rem;
  }

  /* Livestream Simulator Mobile */
  .livestream-transition {
    padding: 3.5rem 1rem;
  }

  .phone-stream-mockup {
    border-width: 6px;
    border-radius: 28px;
    max-width: 100%;
  }

  .phone-stream-mockup img {
    height: 440px;
  }

  .comments-container {
    height: 180px;
  }

  .comment-bubble {
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
  }

  /* Flow Chart Mobile */
  .flow-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .flow-card-icon {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
  }

  .flow-card-title {
    font-size: 1rem;
  }

  /* Hexagon Grid Mobile */
  .hexagon-grid-wrapper {
    gap: 1rem;
  }

  .hex-item {
    width: 100%;
    clip-path: none;
    border-radius: 16px;
    height: auto;
    padding: 1.35rem 1rem;
  }

  .hex-icon {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
  }

  .hex-title {
    font-size: 1rem;
  }

  /* Conclusion Mobile */
  .conclusion-container {
    padding: 4rem 1rem;
    min-height: 80vh;
  }

  .conclusion-quote {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .author-byline {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .icon-strip-footer {
    font-size: 1.2rem;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 30px;
  }
}