/* ==========================================================================
   HTX THÙY VÂN - 41 NĂM MỘT HÀNH TRÌNH (1985 - 2026)
   Economic Magazine / Editorial Longform Design System
   ========================================================================== */

/* ----------------- CSS RESET & DESIGN TOKENS ----------------- */
:root {
  /* Color Palette: Ocean Navy - Seafoam Cyan - Pure White - Sand Gold */
  --bg-deep-ocean: #061121;
  --bg-navy-dark: #0a192f;
  --bg-navy-card: #0f233d;
  --bg-navy-light: #162f4f;
  
  --color-primary: #00b4d8;
  --color-teal: #0d9488;
  --color-teal-light: #2dd4bf;
  --color-cyan: #38bdf8;
  --color-gold: #d4af37;
  --color-sand: #e6ca65;
  --color-coral: #ff7556;
  
  --text-main: #f1f5f9;
  --text-article: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  --text-gold: #fde047;
  
  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  
  /* Editorial Geometry */
  --content-width: 820px;
  --wide-width: 1180px;
  --ultrawide-width: 1380px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep-ocean);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  font-size: 1.125rem; /* 18px min content size */
  line-height: 1.85;
  color: var(--text-article);
  background-color: var(--bg-deep-ocean);
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background: rgba(0, 180, 216, 0.35);
  color: #ffffff;
}

/* ----------------- PROGRESS INDICATOR ----------------- */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1000;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-primary), var(--color-gold));
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.8);
}

/* ----------------- LAYOUT & CONTAINER ----------------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: var(--wide-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-ultrawide {
  width: 100%;
  max-width: var(--ultrawide-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ----------------- EDITORIAL ARTICLE STYLING ----------------- */
.editorial-text {
  font-size: 1.1875rem; /* 19px */
  line-height: 1.9;
  color: #e2e8f0;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.editorial-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* Drop Cap for journalistic opening */
.editorial-text.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 4.8rem;
  float: left;
  line-height: 0.82;
  margin-right: 1rem;
  margin-top: 0.2rem;
  color: var(--color-primary);
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
}

.quote-highlight {
  position: relative;
  margin: 3.5rem 0;
  padding: 2.2rem 2.5rem;
  background: linear-gradient(135deg, rgba(15, 35, 61, 0.7) 0%, rgba(6, 17, 33, 0.9) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.quote-highlight::before {
  content: '“';
  position: absolute;
  top: -15px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(0, 180, 216, 0.2);
  pointer-events: none;
}

.quote-highlight p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #f8fafc;
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

/* ----------------- HERO SECTION ----------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.03);
  transition: transform 6s cubic-bezier(0.1, 0.8, 0.2, 1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(6, 17, 33, 0.25) 0%,
    rgba(6, 17, 33, 0.5) 45%,
    rgba(6, 17, 33, 0.88) 75%,
    var(--bg-deep-ocean) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 15vh;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-teal-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--color-teal-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-teal-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero-standfirst {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.8;
  color: #cbd5e1;
  font-weight: 400;
  max-width: 880px;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
}

/* Hero Key Visual Data Callout */
.hero-data-callout {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.8rem 2.2rem;
  background: linear-gradient(135deg, rgba(15, 35, 61, 0.85) 0%, rgba(6, 17, 33, 0.95) 100%);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 880px;
  margin-bottom: 2.5rem;
}

.hero-data-number-box {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.hero-big-number {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 50%, var(--color-sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}

.hero-number-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-sand);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-data-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 180, 216, 0.4), transparent);
}

.hero-data-timeline {
  flex: 1;
}

.hero-timeline-years {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.hero-timeline-arrow {
  color: var(--color-primary);
  font-weight: 400;
}

.hero-coastline-svg {
  width: 100%;
  height: 24px;
  overflow: visible;
}

.hero-coastline-svg path {
  stroke: var(--color-primary);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.7));
}

/* Image Captions (Outside image) */
.media-figure {
  margin: 3.5rem 0;
}

.media-image-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.media-image-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.media-image-box:hover img {
  transform: scale(1.02);
}

.photo-caption {
  margin-top: 0.9rem;
  font-size: 0.9375rem; /* ~15px */
  line-height: 1.6;
  color: var(--text-muted);
  font-style: normal;
  padding-left: 0.25rem;
  border-left: 2px solid rgba(0, 180, 216, 0.4);
  padding-left: 0.75rem;
}

.photo-caption strong {
  color: var(--color-teal-light);
  font-weight: 600;
}

.hero-caption-container {
  position: relative;
  z-index: 3;
  margin-top: 1.5rem;
}

/* ----------------- SECTION STRUCTURE ----------------- */
.article-section {
  position: relative;
  padding: 5rem 0;
}

.section-divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), rgba(212, 175, 55, 0.3), transparent);
  margin: 4rem 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-teal-light);
  margin-bottom: 0.75rem;
}

.section-heading-major {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-heading-sub {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #f1f5f9;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.2rem;
  border-left: 4px solid var(--color-gold);
}

/* ----------------- INFOGRAPHIC 1: 41 NĂM MỘT HÀNH TRÌNH ----------------- */
.infographic-wrapper {
  margin: 4.5rem 0;
  padding: 3rem 2.5rem;
  background: linear-gradient(145deg, #091c34 0%, #061324 100%);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.infographic-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.infographic-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.infographic-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Timeline Layout */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-node {
  background: rgba(15, 35, 61, 0.6);
  border: 1px solid rgba(0, 180, 216, 0.18);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-node:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 216, 0.5);
  background: rgba(15, 35, 61, 0.85);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.15);
}

.timeline-node-badge {
  display: inline-block;
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  color: var(--color-teal-light);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.timeline-node-title {
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.timeline-node-desc {
  font-size: 1.125rem; /* 18px min */
  color: var(--text-muted);
  line-height: 1.6;
}

/* Timeline Logic Flow Bar */
.logic-flow-container {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(6, 17, 33, 0.8);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.logic-flow-title {
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.logic-flow-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.flow-step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 35, 61, 0.7);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 180, 216, 0.25);
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  color: #f1f5f9;
  transition: var(--transition-fast);
}

.flow-step-item:hover {
  background: rgba(0, 180, 216, 0.15);
  border-color: var(--color-primary);
}

.flow-arrow-icon {
  color: var(--color-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

/* Stat Counters Row */
.stats-summary-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(15, 35, 61, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
}

.stat-box-num {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #ffffff, var(--color-teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box-label {
  font-size: 1.125rem; /* 18px */
  color: var(--text-muted);
  font-weight: 600;
}

/* ----------------- CLUSTER A: CỨU HỘ & DỊCH VỤ BIỂN ----------------- */
.cluster-panel {
  margin: 3.5rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(15, 35, 61, 0.7) 100%);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cluster-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.services-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.service-pill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4rem 1rem;
  background: rgba(15, 35, 61, 0.8);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.service-pill-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-teal-light);
  background: rgba(13, 148, 136, 0.2);
}

.service-pill-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.15);
  border-radius: 50%;
  color: var(--color-teal-light);
  margin-bottom: 0.8rem;
}

.service-pill-name {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  color: #ffffff;
}

.cluster-key-insight {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.6rem;
  background: rgba(6, 17, 33, 0.7);
  border-left: 4px solid var(--color-teal-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: var(--color-teal-light);
}

/* ----------------- CLUSTER B: SƠ ĐỒ CHUỖI GIÁ TRỊ ----------------- */
.value-chain-wrapper {
  margin: 4rem 0;
  padding: 3rem 2.5rem;
  background: linear-gradient(145deg, #0a1f38 0%, #061121 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.value-chain-hero-message {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), rgba(0, 180, 216, 0.15), rgba(212, 175, 55, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
}

.value-chain-hero-message h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 800;
  color: var(--color-sand);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.value-chain-hero-message p {
  font-size: 1.125rem; /* 18px */
  color: var(--text-article);
  margin: 0;
}

.value-chain-diagram-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* ----------------- INFOGRAPHIC 2: HỆ SINH THÁI DU LỊCH THÙY VÂN ----------------- */
.ecosystem-section-wrapper {
  margin: 5rem 0;
  padding: 3.5rem 2rem;
  background: linear-gradient(180deg, #071527 0%, #0a1e36 50%, #061121 100%);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  position: relative;
}

.ecosystem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.ecosystem-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.ecosystem-header p {
  font-size: 1.125rem; /* 18px */
  color: var(--text-muted);
}

/* 4 Pillar Grid Breakdown */
.ecosystem-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.pillar-card {
  padding: 2.2rem;
  border-radius: var(--radius-md);
  background: rgba(15, 35, 61, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  background: rgba(15, 35, 61, 0.95);
}

.pillar-card.pillar-business {
  border-top: 4px solid var(--color-gold);
}
.pillar-card.pillar-digital {
  border-top: 4px solid var(--color-primary);
}
.pillar-card.pillar-sustainable {
  border-top: 4px solid var(--color-teal-light);
}
.pillar-card.pillar-people {
  border-top: 4px solid var(--color-coral);
}

.pillar-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem; /* ~22px */
  font-weight: 800;
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pillar-business .pillar-title { color: var(--color-gold); }
.pillar-digital .pillar-title { color: var(--color-primary); }
.pillar-sustainable .pillar-title { color: var(--color-teal-light); }
.pillar-people .pillar-title { color: var(--color-coral); }

.pillar-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.125rem; /* 18px min */
  color: var(--text-article);
  line-height: 1.55;
}

.pillar-item-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.pillar-business .pillar-item-bullet { background: var(--color-gold); box-shadow: 0 0 6px var(--color-gold); }
.pillar-digital .pillar-item-bullet { background: var(--color-primary); box-shadow: 0 0 6px var(--color-primary); }
.pillar-sustainable .pillar-item-bullet { background: var(--color-teal-light); box-shadow: 0 0 6px var(--color-teal-light); }
.pillar-people .pillar-item-bullet { background: var(--color-coral); box-shadow: 0 0 6px var(--color-coral); }

/* SVG Radial Graphic Container */
.radial-svg-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radial-svg-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* ----------------- RECOMMENDATIONS BOX ----------------- */
.recommendations-box {
  margin: 4rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 35, 61, 0.6) 0%, rgba(6, 17, 33, 0.8) 100%);
  border: 1px solid rgba(0, 180, 216, 0.25);
  border-radius: var(--radius-lg);
}

.recommendations-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-teal-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----------------- VISUAL ENDING SCREEN ----------------- */
.ending-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0a1f38 0%, #061121 70%, #030810 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 180, 216, 0.2);
}

.ending-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.ending-years-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.ending-year-val {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 180, 216, 0.35);
}

.ending-year-val.year-start {
  color: var(--text-muted);
}

.ending-year-val.year-end {
  background: linear-gradient(135deg, #ffffff 0%, var(--color-primary) 50%, var(--color-sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ending-coastline-wave {
  width: 180px;
  height: 40px;
}

.ending-coastline-wave path {
  stroke: var(--color-primary);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(0, 180, 216, 0.8));
}

.ending-final-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.7;
  color: #f8fafc;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}

.ending-final-quote::before,
.ending-final-quote::after {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.3rem;
}

.ending-final-quote::before {
  content: '“';
  margin-right: 0.3rem;
}

.ending-final-quote::after {
  content: '”';
  margin-left: 0.3rem;
}

.ending-brand-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.ending-brand-name {
  font-size: 1.125rem; /* 18px */
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-teal-light);
}

.ending-brand-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ----------------- RESPONSIVE MEDIA QUERIES ----------------- */
@media (max-width: 992px) {
  .ecosystem-pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-summary-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75;
  }

  .editorial-text {
    font-size: 1.125rem; /* 18px */
  }

  .hero-data-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
  }

  .hero-data-divider {
    display: none;
  }

  .hero-coastline-svg {
    width: 100%;
  }

  .infographic-wrapper,
  .value-chain-wrapper,
  .ecosystem-section-wrapper {
    padding: 2rem 1.25rem;
  }

  .logic-flow-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-arrow-icon {
    justify-content: center;
    transform: rotate(90deg);
    margin: 0.2rem 0;
  }

  .ending-years-wrapper {
    gap: 1.2rem;
  }

  .ending-coastline-wave {
    width: 80px;
  }
}

/* Print Stylesheet */
@media print {
  body {
    background: #ffffff;
    color: #111111;
  }
  .hero-section {
    min-height: auto;
    color: #000000;
  }
}
