/* ===== ESG PAGE ===== */
main.esg-main { padding: 0; min-height: 0; }

.fade-up { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-light); }
.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
  max-width: none;
}
.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.25rem;
}
.btn-lg { padding: 0.8125rem 1.875rem; font-size: 1rem; border-radius: 0.5rem; }
.btn-ghost-white {
  background: transparent !important; color: #fff !important;
  border-color: rgba(255,255,255,0.55) !important;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15) !important; border-color: #fff !important; }

/* ===== HERO ===== */
.page-hero {
  background: var(--bg-dark) center / cover no-repeat;
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.2) 100%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 52rem; }
.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
  max-width: none;
}
.page-hero-sub {
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 42rem;
  margin-bottom: 2rem;
}
.esg-hero-tags { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.esg-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.3rem 0.875rem;
  border-radius: 2rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  display: inline-block;
}
.esg-tag:hover { opacity: 0.85; transform: translateY(-1px); }
.esg-tag--e { color: #4ade80; border-color: rgba(74,222,128,0.6); background: rgba(74,222,128,0.15); }
.esg-tag--s { color: #60a5fa; border-color: rgba(96,165,250,0.6); background: rgba(96,165,250,0.15); }
.esg-tag--g { color: #c084fc; border-color: rgba(192,132,252,0.6); background: rgba(192,132,252,0.15); }

/* ===== INTRO ===== */
.esg-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.esg-intro-text .section-desc { max-width: none; }

.esg-score-grid { display: flex; flex-direction: column; gap: 1rem; }
.esg-score-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1.5px solid transparent;
}
.esg-score-e { background: rgba(22,163,74,0.06); border-color: rgba(22,163,74,0.2); }
.esg-score-s { background: rgba(3,105,161,0.06); border-color: rgba(3,105,161,0.2); }
.esg-score-g { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.2); }

.esg-score-letter {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}
.esg-score-e .esg-score-letter { background: rgba(22,163,74,0.12); color: #16a34a; }
.esg-score-s .esg-score-letter { background: rgba(3,105,161,0.12); color: #0369a1; }
.esg-score-g .esg-score-letter { background: rgba(124,58,237,0.12); color: #7c3aed; }
.esg-score-label { font-size: 0.9rem; font-weight: 500; color: var(--text); max-width: none; }

/* ===== PILLAR SECTIONS ===== */
.esg-pillar-section { border-top: 1px solid var(--border); }
.esg-pillar--social { background: var(--bg-light); }

.esg-pillar-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.esg-pillar-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.esg-pillar-icon svg { width: 1.75rem; height: 1.75rem; }

.esg-pillar-icon--environmental { background: rgba(22,163,74,0.1); color: #16a34a; }
.esg-pillar-icon--social        { background: rgba(3,105,161,0.1);  color: #0369a1; }
.esg-pillar-icon--governance    { background: rgba(124,58,237,0.1); color: #7c3aed; }

.esg-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.esg-label--environmental { color: #16a34a; }
.esg-label--social        { color: #0369a1; }
.esg-label--governance    { color: #7c3aed; }

.esg-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.esg-item-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.esg-pillar--social .esg-item-card { background: #fff; }

.esg-item-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.375rem;
}
.esg-item-dot--environmental { background: #16a34a; }
.esg-item-dot--social        { background: #0369a1; }
.esg-item-dot--governance    { background: #7c3aed; }

.esg-item-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.esg-item-card p  { font-size: 0.875rem; line-height: 1.65; color: var(--text-muted); max-width: none; }

/* ===== REPORTING ===== */
.esg-reporting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.esg-reporting-text .section-desc { max-width: none; }

.esg-standards-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.esg-standards-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
}
.esg-standards-list li strong { color: var(--text); font-weight: 700; }

.esg-reporting-card {
  background: var(--bg-dark);
  border-radius: 1.25rem;
  padding: 2rem;
  color: #fff;
}
.esg-reporting-card h3 { font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; max-width: none; }
.esg-reporting-card p  { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; max-width: none; }

/* ===== CTA ===== */
.cta-banner {
  background: var(--bg-dark); color: #fff; text-align: center; padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(246,153,50,0.2) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 80% 100%, rgba(246,97,50,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .eyebrow    { margin-bottom: 1rem; }
.cta-banner .section-title { color: #fff; margin-bottom: 1rem; }
.cta-banner .section-desc  { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 64em) {
  .esg-intro-grid, .esg-reporting-grid { grid-template-columns: 1fr; }
}
@media (max-width: 48em) {
  .section { padding: 3.5rem 0; }
  .esg-pillar-header { grid-template-columns: 1fr; }
  .esg-items-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
