/* ==========================================================================
   VNBUSINESS PREMIUM × BLOOMBERG × FINANCIAL TIMES SCROLLYTELLING STYLES
   ========================================================================== */

:root {
    /* Primary Color Palette */
    --color-green-primary: #2E7D32;
    --color-green-agri: #43A047;
    --color-green-light: #E8F5E9;
    --color-green-dark: #1B5E20;

    --color-gold-wheat: #F9A825;
    --color-gold-light: #FFF8E1;
    --color-gold-dark: #F57F17;

    --color-dark-bg: #0A1912;
    --color-dark-panel: #12261B;
    --color-dark-text: #1C2826;

    --color-bg-paper: #FAF8F5;
    --color-bg-card: #FFFFFF;
    --color-bg-alt: #F3F6F3;

    --color-border: #E0E7E1;
    --color-border-accent: #A5D6A7;

    --color-text-body: #000000;
    --color-text-muted: #5A6E63;

    /* Fonts */
    --font-title: 'Encode Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Encode Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-number: 'Outfit', sans-serif;

    /* Spacing & Layout */
    --max-article-width: 820px;
    --max-graphic-width: 1140px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Transitions */
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Mode / High Contrast Option toggle */
body.dark-mode {
    --color-bg-paper: #08120C;
    --color-bg-card: #122218;
    --color-bg-alt: #162B1F;
    --color-text-body: #E2ECE5;
    --color-text-muted: #9BB0A3;
    --color-border: #233D2D;
}

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

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

body {
    background-color: var(--color-bg-paper);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--color-green-light);
    color: var(--color-green-dark);
}

/* ==========================================================================
   HEADER & NAVIGATION (Header removed as requested)
   ========================================================================== */
.site-header {
    display: none !important;
}

.reading-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-green-primary), var(--color-gold-wheat));
    width: 0%;
    transition: width 0.1s linear;
}

/* Sticky Table of Contents Bar */
.sticky-toc-bar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(243, 246, 243, 0.95);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
    backdrop-filter: blur(8px);
}

.toc-container {
    max-width: var(--max-graphic-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
}

.toc-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-green-dark);
    white-space: nowrap;
}

.toc-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.toc-link:hover,
.toc-link.active {
    color: var(--color-green-primary);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-num {
    font-family: var(--font-number);
    font-weight: 800;
    color: var(--color-gold-wheat);
    margin-right: 4px;
}

/* ==========================================================================
   FULLSCREEN TYPOGRAPHY HERO (NO PHOTO BANNER)
   ========================================================================== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px 24px;
    background: radial-gradient(circle at 50% 30%, #FFFFFF 0%, var(--color-bg-paper) 70%, #EEF4EF 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.hero-bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-svg-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Line Keyframes */
.hero-animated-line {
    stroke-dashoffset: 100;
    animation: dashLoop 20s linear infinite;
}

@keyframes dashLoop {
    from {
        stroke-dashoffset: 200;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    text-align: center;
    margin: 0 auto;
}

.hero-meta-top {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-green-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.meta-dot {
    color: var(--color-gold-wheat);
}

/* 3-Line Fullscreen Typography Header */
.hero-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    overflow: visible;
}

.hero-title-line {
    font-family: var(--font-title);
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    display: inline-block;
    padding: 0.15em 0.05em;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-title-line.line-1 {
    font-size: clamp(2.6rem, 9vw, 7.5rem);
    color: #2E7D32;
    background: linear-gradient(135deg, #1B5E20 0%, #43A047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
}

.hero-title-line.line-2 {
    font-size: clamp(1.35rem, 4vw, 3.6rem);
    color: var(--color-dark-panel);
    letter-spacing: 0px;
}

.hero-title-line.line-3 {
    font-size: clamp(1.2rem, 3.5vw, 3.1rem);
    color: #D87D00;
    background: linear-gradient(135deg, #D87D00 0%, #F9A825 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.7;
    color: var(--color-text-body);
    max-width: 860px;
    margin: 0 auto 40px auto;
    font-weight: 500;
}

.hero-lead p+p {
    margin-top: 16px;
}

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

.scroll-chevron {
    animation: bounce 2s infinite;
    color: var(--color-green-primary);
}

@keyframes bounce {

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

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

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

/* ==========================================================================
   ARTICLE MAIN CONTENT & SCROLLYTELLING CONTAINER
   ========================================================================== */
.article-container {
    padding: 60px 24px 100px 24px;
}

.scrolly-section {
    max-width: var(--max-graphic-width);
    margin: 0 auto 120px auto;
}

.section-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-gold-wheat);
    background: var(--color-dark-panel);
    padding: 4px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-green-dark);
    line-height: 1.25;
    text-transform: uppercase;
}

.title-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green-primary), var(--color-gold-wheat));
    margin: 18px auto 0 auto;
    border-radius: 2px;
}

/* Editorial Article Text Paragraphs (75-80% layout container width) */
.article-text-col {
    max-width: var(--max-article-width);
    margin: 0 auto;
}

.paragraph {
    font-size: clamp(1.2rem, 1.4vw, 1.35rem);
    line-height: 1.85;
    color: var(--color-text-body);
    margin-bottom: 28px;
    letter-spacing: 0.1px;
}

.paragraph.dropcap::first-letter {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 4px;
    color: var(--color-green-primary);
}

.mt-large {
    margin-top: 50px;
}

/* Editorial Quotes (Financial Times Style) */
.editorial-quote {
    margin: 40px 0;
    padding: 28px 32px;
    background: var(--color-bg-alt);
    border-left: 5px solid var(--color-green-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-text {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-dark-panel);
    line-height: 1.6;
}

/* ==========================================================================
   INFOGRAPHICS STYLING & STRICT FONT RULES (FONT SIZE ≥ 18PX, PRIORITY 20-28PX)
   ========================================================================== */
.infographic-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 60px auto;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-wrapper:hover {
    box-shadow: 0 20px 50px rgba(46, 125, 50, 0.08);
}

.infographic-header {
    margin-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.info-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-green-primary);
    text-transform: uppercase;
}

.info-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 800;
    color: var(--color-dark-panel);
    margin-top: 4px;
}

.info-subtitle {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    /* ≥ 18px */
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 1: Flow Diagram
   -------------------------------------------------------------------------- */
.flow-diagram-container {
    position: relative;
    padding: 30px 0;
}

.flow-lines-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.flow-nodes-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding: 20px 10px;
}

.flow-node-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.flow-node-card.highlight {
    border-color: var(--color-green-primary);
    background: var(--color-green-light);
    transform: scale(1.05);
}

.flow-node-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-wheat);
}

.node-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px auto;
}

.svg-icon {
    width: 100%;
    height: 100%;
}

.node-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* 20px */
    font-weight: 800;
    color: var(--color-dark-panel);
    display: block;
}

.flow-arrow {
    font-size: 1.6rem;
    color: var(--color-gold-wheat);
    font-weight: bold;
}

.flow-sublabels-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px stroke var(--color-border);
}

.sublabel-item {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* 20px */
    font-weight: 700;
    color: var(--color-green-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg-alt);
    padding: 8px 18px;
    border-radius: 30px;
}

.sub-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold-wheat);
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 2: HTX Tâm Thành Dashboard Card
   -------------------------------------------------------------------------- */
.dashboard-card-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: center;
}

.central-badge-box {
    background: var(--color-dark-panel);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 12px 30px rgba(18, 38, 27, 0.2);
}

.coffee-bean-glow {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px auto;
}

.coffee-svg-large {
    width: 100%;
    height: 100%;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    /* 22px */
    font-weight: 900;
    color: var(--color-gold-wheat);
    display: block;
    letter-spacing: 0.5px;
}

.badge-sub {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* 18px */
    color: #A5D6A7;
    margin-top: 4px;
    display: block;
}

.kpi-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.kpi-card {
    background: var(--color-bg-paper);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    transition: transform 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-green-primary);
}

.kpi-card.highlight-gold {
    background: var(--color-gold-light);
    border-color: var(--color-gold-wheat);
}

.kpi-card.highlight-green {
    background: var(--color-green-light);
    border-color: var(--color-green-agri);
}

.kpi-value {
    font-family: var(--font-number);
    font-size: 2.2rem;
    /* 35px */
    font-weight: 900;
    color: var(--color-green-dark);
    line-height: 1.1;
}

.kpi-unit {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    /* 18px */
    font-weight: 700;
    color: var(--color-text-muted);
}

.kpi-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    /* 18px+ */
    font-weight: 700;
    color: var(--color-dark-panel);
    margin-top: 6px;
}

.kpi-value-badge {
    font-family: var(--font-number);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-gold-dark);
}

.partners-card {
    grid-column: 1 / -1;
    background: var(--color-dark-panel);
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.partner-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* 20px */
    font-weight: 800;
    color: var(--color-gold-wheat);
}

.partner-tags {
    display: flex;
    gap: 12px;
}

.partner-chip {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    /* 19px */
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 20px;
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 3: Horizontal Timeline
   -------------------------------------------------------------------------- */
.timeline-horizontal-container {
    position: relative;
    padding: 40px 10px;
    overflow-x: auto;
}

.timeline-track-line {
    position: absolute;
    top: 55px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green-primary), var(--color-gold-wheat));
    z-index: 1;
}

.timeline-nodes-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 900px;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
}

.step-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.step-icon-circle.gold {
    border-color: var(--color-gold-wheat);
    background: var(--color-gold-light);
}

.timeline-step:hover .step-icon-circle {
    transform: scale(1.15);
}

.timeline-svg {
    width: 32px;
    height: 32px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* 20px */
    font-weight: 800;
    color: var(--color-dark-panel);
}

.step-title.gold {
    color: var(--color-gold-dark);
}

.timeline-arrow {
    font-size: 1.4rem;
    color: var(--color-green-agri);
    font-weight: bold;
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 4: Dual Dashboard Comparison
   -------------------------------------------------------------------------- */
.dual-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dual-panel {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--color-border);
    background: var(--color-bg-paper);
}

.dual-panel.left-panel {
    border-top: 6px solid var(--color-green-primary);
}

.dual-panel.right-panel {
    border-top: 6px solid var(--color-gold-wheat);
}

.panel-header {
    margin-bottom: 24px;

}

.panel-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--color-green-dark);
    background: var(--color-green-light);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.panel-badge.gold {
    color: var(--color-gold-dark);
    background: var(--color-gold-light);
}

.panel-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    /* 28px */
    font-weight: 900;
    color: var(--color-dark-panel);
    margin-top: 6px;
}

.panel-sub {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    /* 18px */
    color: var(--color-text-muted);
}

.panel-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
}

.metric-card.full-width {
    grid-column: 1 / -1;
}

.metric-card.highlight-green {
    background: var(--color-green-light);
    border-color: var(--color-green-agri);
}

.metric-card.highlight-gold {
    background: var(--color-gold-light);
    border-color: var(--color-gold-wheat);
}

.metric-num {
    font-family: var(--font-number);
    font-size: 2.2rem;
    /* 35px */
    font-weight: 900;
    color: var(--color-green-dark);
    display: block;
    line-height: 1.1;
}

.metric-num small {
    font-size: 1.25rem;
    font-weight: 700;
}

.metric-desc {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    /* 19px */
    font-weight: 700;
    color: var(--color-dark-panel);
    margin-top: 4px;
    display: block;
}

.award-card-block {
    grid-column: 1 / -1;
    background: var(--color-dark-panel);
    color: white;
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    /* 21px */
    font-weight: 800;
    color: var(--color-gold-wheat);
}

.award-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    /* 18px */
    color: #A5D6A7;
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 5: Multi-layer Rotating Gears System
   -------------------------------------------------------------------------- */
.gear-system-container {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.gear-center-hub {
    position: absolute;
    z-index: 10;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--color-dark-panel);
    border: 4px solid var(--color-gold-wheat);
    box-shadow: 0 0 30px rgba(249, 168, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hub-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    /* 23px */
    font-weight: 900;
    color: white;
    display: block;
}

.hub-sub {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    /* 18px */
    color: var(--color-gold-wheat);
    font-weight: 800;
}

.gears-orbit {
    position: relative;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 2px stroke var(--color-border);
    animation: rotateSlow 40s linear infinite;
}

.gear-system-container:hover .gears-orbit {
    animation-play-state: paused;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gear-node {
    position: absolute;
    background: white;
    border: 2px solid var(--color-green-primary);
    border-radius: 30px;
    padding: 10px 22px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.gear-node:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-wheat);
    transform: scale(1.15) !important;
}

.gear-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    /* 21px */
    font-weight: 800;
    color: var(--color-green-dark);
    white-space: nowrap;
}

/* Gear positions around circle */
.gear-1 {
    top: -20px;
    left: 160px;
}

.gear-2 {
    top: 20px;
    right: 30px;
}

.gear-3 {
    top: 120px;
    right: -40px;
}

.gear-4 {
    top: 240px;
    right: -40px;
}

.gear-5 {
    bottom: 20px;
    right: 30px;
}

.gear-6 {
    bottom: -20px;
    left: 160px;
}

.gear-7 {
    bottom: 20px;
    left: 30px;
}

.gear-8 {
    top: 240px;
    left: -40px;
}

.gear-9 {
    top: 120px;
    left: -40px;
}

.gear-10 {
    top: 20px;
    left: 30px;
}

/* Counteract label rotation inside orbit */
.gears-orbit .gear-node {
    animation: counterRotate 40s linear infinite;
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 6: Smart Agriculture Dashboard
   -------------------------------------------------------------------------- */
.smart-dashboard-container {
    position: relative;
    padding: 40px 20px;
}

.smart-center-node {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-green-agri);
    animation: pulseExpand 3s infinite ease-out;
}

.pulse-ring.delay-1 {
    animation-delay: 1.5s;
}

@keyframes pulseExpand {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

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

.smart-core {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-green-primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(46, 125, 50, 0.4);
}

.core-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    /* 25px */
    font-weight: 900;
}

.core-sub {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-gold-wheat);
}

.smart-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.smart-module-card {
    background: var(--color-bg-paper);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
}

.smart-module-card:hover {
    background: white;
    border-color: var(--color-gold-wheat);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mod-icon {
    font-size: 1.8rem;
}

.mod-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* 20px */
    font-weight: 800;
    color: var(--color-dark-panel);
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 7: Data Visualization (Gia Lai Numbers)
   -------------------------------------------------------------------------- */
.data-vis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--color-bg-paper);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-green-primary);
}

.stat-card.highlight-green {
    background: var(--color-green-light);
    border-color: var(--color-green-agri);
}

.stat-card.highlight-gold {
    background: var(--color-gold-light);
    border-color: var(--color-gold-wheat);
}

.stat-icon-box {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px auto;
}

.stat-svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--font-number);
    font-size: 2.5rem;
    /* 40px */
    font-weight: 900;
    color: var(--color-green-dark);
    line-height: 1.1;
}

.stat-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* 20px */
    font-weight: 800;
    color: var(--color-dark-panel);
    margin-top: 6px;
}

/* Author Byline Signature */
.author-byline {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 2px stroke var(--color-border);
    text-align: right;
}

.author-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-green-dark);
}

.publication-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ENDING VISUAL & TYPOGRAPHY SECTION
   ========================================================================== */
.ending-visual-section {
    max-width: var(--max-graphic-width);
    margin: 100px auto 40px auto;
    background: var(--color-dark-panel);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ending-graphic-canvas {
    width: 100%;
    height: 240px;
    margin-bottom: 30px;
}

.ending-svg {
    width: 100%;
    height: 100%;
}

.ending-quote-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-gold-wheat);
    margin-bottom: -20px;
}

.ending-statement {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.5;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.quote-author-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--color-gold-wheat);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #057d39;
    color: #9BB0A3;
    padding: 40px 24px;
    border-top: 1px solid #048f40;
    font-family: var(--font-heading);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    display: block;
}

.footer-copy p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE DESIGN (DESKTOP / TABLET / MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
    .dashboard-card-grid {
        grid-template-columns: 1fr;
    }

    .dual-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .gear-system-container {
        transform: scale(0.85);
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        padding: 80px 16px 40px 16px;
    }

    .hero-title-group {
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-title-line {
        line-height: 1.2;
        padding: 0.12em 0.05em;
    }

    .hero-title-line.line-1 {
        font-size: clamp(2.2rem, 11vw, 4.5rem);
    }

    .hero-title-line.line-2 {
        font-size: clamp(1.2rem, 5.5vw, 2.4rem);
    }

    .hero-title-line.line-3 {
        font-size: clamp(1.1rem, 5vw, 2.2rem);
    }

    .header-center {
        display: none;
    }

    .infographic-wrapper {
        padding: 24px 16px;
    }

    .gear-system-container {
        transform: scale(0.65);
        margin: -50px 0;
    }

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

    .flow-nodes-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 6px 0;
    }

    .flow-lines-svg {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-line.line-1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }
    .hero-title-line.line-2 {
        font-size: clamp(1.1rem, 5vw, 1.8rem);
    }
    .hero-title-line.line-3 {
        font-size: clamp(1rem, 4.5vw, 1.6rem);
    }
}