/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-24);
  position: relative;
  overflow: hidden;
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
}

.hero__bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background: radial-gradient(
    ellipse at 70% 50%,
    var(--color-teal) 0%,
    transparent 60%
  );
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  position: relative;
}

.hero__content {
  flex: 1;
  max-width: 576px;
}

.hero__eyebrow {
  margin-bottom: var(--space-5);
  color: var(--color-teal-figma);
  font-size: 16px;
  font-weight: var(--fw-regular);
  letter-spacing: -0.16px;
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.125rem);
  font-weight: var(--fw-medium);
  color: var(--color-announcement-bar-text-main);
  line-height: 1.32;
  letter-spacing: -1.28px;
  margin-bottom: var(--space-6);
}

.hero__desc {
  font-size: 20px;
  color: var(--color-announcement-bar-text-main);
  line-height: 1.4;
  letter-spacing: -0.2px;
  margin-bottom: var(--space-10);
  max-width: 576px;
}

.hero__media {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 489px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero carousel */
.hero__media--carousel {
  position: relative;
}

.hero__carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.hero__carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero__carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__carousel-nav {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 2;
}

.hero__carousel-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero__carousel-arrow:hover {
  background: var(--color-white);
  transform: scale(1.05);
}

.hero__carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.hero__carousel-dots {
  display: flex;
  gap: var(--space-2);
}

.hero__carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero__carousel-dot:hover,
.hero__carousel-dot.active {
  background: var(--color-white);
}

.hero__carousel-dot.active {
  transform: scale(1.2);
}

/* ════════════════════════════════════════════
   TRUSTED BY / LOGO CLOUD
   ════════════════════════════════════════════ */
.trusted {
  padding-block: var(--space-10);
}

.trusted__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.trusted__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  letter-spacing: -0.16px;
  text-transform: uppercase;
  color: var(--color-teal-figma);
  white-space: nowrap;
}

.trusted__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
}

.trusted__logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.trusted__logo-cell img {
  max-height: 80px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.trusted__logo-cell:hover img {
  opacity: 1;
}

/* Home page trusted section — larger logos */
#customers.trusted .trusted__logo-cell {
  height: 110px;
}

#customers.trusted .trusted__logo-cell img {
  max-height: 110px;
  max-width: 200px;
}

/* ════════════════════════════════════════════
   ESG LEADER RECOGNITION
   ════════════════════════════════════════════ */
.recognition {
  padding-block: var(--space-16);
}

.recognition__inner {
  display: flex;
  gap: var(--space-12);
  border-top: 2px dashed var(--color-figma-border);
  padding-top: var(--space-12);
}

.recognition__media {
  flex: 1;
  max-width: 50%;
  display: flex;
  min-height: 0;
}

.recognition__awards {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition__awards .recognition__award-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.recognition__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recognition__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-announcement-bar-text-main);
  line-height: 1.25;
  letter-spacing: -0.14px;
  margin-bottom: var(--space-6);
}

.recognition__desc {
  font-size: 18px;
  color: var(--color-announcement-bar-text-main);
  line-height: 1.56;
  letter-spacing: -0.2px;
  margin-bottom: var(--space-8);
}

.recognition__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-teal-figma);
  font-size: 20px;
  letter-spacing: -0.4px;
}

.recognition__cta-icon {
  width: 24px;
  height: 24px;
  color: var(--color-teal-figma);
}

/* ════════════════════════════════════════════
   CLIMATE RISK STATS
   ════════════════════════════════════════════ */
.climate-risk {
  padding-block: 0;
}

.climate-risk__outer {
  position: relative;
  padding-inline: var(--space-6);
}

.climate-risk__container {
  border-left: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  padding: var(--space-6);
}

.climate-risk__header {
  position: relative;
  text-align: center;
  padding: var(--space-10) 0;
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.climate-risk__headline {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  max-width: 800px;
  margin-inline: auto;
}

.climate-risk__tab-section {
  margin-bottom: var(--space-4);
}

.climate-risk__tab-content {
  padding: var(--space-6);
}

.climate-risk__tab-title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.climate-risk__tab-desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.climate-risk__progress {
  height: 3px;
  background: var(--color-gray-200);
  width: 100%;
  margin-top: var(--space-4);
}

.climate-risk__progress-bar {
  height: 100%;
  background: var(--color-teal);
  width: 0%;
  transition: width 50ms linear;
}

.climate-risk__quote-bar {
  background: var(--color-navy);
  padding: var(--space-4) var(--space-8);
  text-align: center;
  border-radius: var(--radius-sm);
}

.climate-risk__quote-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
}

.climate-risk__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.climate-risk__stat {
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
}

.climate-risk__stat-value {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: var(--color-teal);
  margin-bottom: var(--space-3);
}

.climate-risk__stat-label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

/* ════════════════════════════════════════════
   THE PLATFORM SECTION
   ════════════════════════════════════════════ */
.platform {
  padding-block: var(--space-20);
  position: relative;
}

.platform__outer {
  position: relative;
}

.platform__container {
  border-left: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  padding: var(--space-6);
}

.platform__header {
  position: relative;
  /* margin-bottom: var(--space-12); */
  padding: var(--space-10) var(--space-6);
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.platform__headline {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
}

.platform__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.platform__stage {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.platform__steps {
  flex: 1;
  max-width: 50%;
}

.platform__step {
  padding: var(--space-4) var(--space-6);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition-base);
  border-left: 2px solid transparent;
}

.platform__step.active {
  opacity: 1;
  border-left-color: var(--color-teal);
  background: var(--color-gray-50);
}

.platform__step-number {
  font-size: var(--fs-xs);
  color: var(--color-teal);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-1);
}

.platform__step-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.platform__step-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  display: block;
}

.platform__step-progress {
  height: 3px;
  background: var(--color-gray-200);
  margin-top: var(--space-3);
  display: none;
}

.platform__step-progress-bar {
  height: 100%;
  background: var(--color-teal);
  width: 0;
  transition: width 50ms linear;
}

.platform__preview {
  flex: 1;
  max-width: 50%;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform__features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* ════════════════════════════════════════════
   AI INTELLIGENCE SECTION
   ════════════════════════════════════════════ */
.ai-section {
  padding-block: var(--space-20);
  position: relative;
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ai-section__outer {
  position: relative;
}

.ai-section__container {
  border-left: 1px solid var(--color-gray-200);
  border-right: 1px solid var(--color-gray-200);
  padding: var(--space-6);
}

.ai-section__inner {
  display: flex;
  gap: var(--space-12);
}

.ai-section__left {
  flex: 1;
  max-width: 45%;
  position: sticky;
  top: calc(var(--header-main-height) + var(--space-8));
  align-self: flex-start;
}

.ai-section__headline {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
}

.ai-section__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.ai-section__illustration {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ai-section__illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-section__right {
  flex: 1;
}

.ai-feature-block {
  padding: var(--space-8);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
}

.ai-feature-block:last-child {
  border-bottom: none;
}

.ai-feature-block__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.ai-feature-block__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.ai-feature-block__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transition: opacity var(--transition-fast);
}

.ai-feature-block__tag:hover {
  /* opacity: 0.8; */
}

.ai-feature-block__tag svg {
  width: 14px;
  height: 14px;
}

.ai-feature-block__tag--calculated {
  color: #10b981;
}
.ai-feature-block__tag--drafted {
  color: #f59e0b;
}
.ai-feature-block__tag--surfaced {
  color: #ef4444;
}
.ai-feature-block__tag--managed {
  color: #3b82f6;
}
.ai-feature-block__tag--monitored {
  color: #f97316;
}
.ai-feature-block__tag--modelled {
  color: #6366f1;
}

/* ════════════════════════════════════════════
   GLOBAL ESG DISCLOSURE
   ════════════════════════════════════════════ */
.esg-disclosure {
  overflow: hidden;
}

.esg-disclosure__inner {
  display: flex;
  min-height: 435px;
}

.esg-disclosure__logos {
  flex: 1;
  padding: var(--space-16) var(--space-8);
  background: var(--color-white);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.esg-disclosure__logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 680px;
  min-height: 340px;
}

.esg-disclosure__logo-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);
  padding: var(--space-6);
  background: var(--color-white);
}

.esg-disclosure__logo-cell:nth-child(even) {
  background: rgba(255, 237, 213, 0.15);
}

.esg-disclosure__logo-cell img {
  max-height: 85px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.esg-disclosure__content {
  flex: 1;
  background: var(--color-navy);
  background-image: url('../assets/allImages/gradient2.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.esg-disclosure__eyebrow {
  margin-bottom: var(--space-5);
  /* color: var(--color-teal-light); */
}

.esg-disclosure__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
}

.esg-disclosure__desc {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  max-width: 480px;
}

/* ════════════════════════════════════════════
   PLATFORM CAPABILITIES (2x3)
   ════════════════════════════════════════════ */
.capabilities {
  padding-block: var(--space-20);
  position: relative;
}

.capabilities__outer {
  position: relative;
}

.capabilities__header {
  position: relative;
  margin-bottom: var(--space-12);
  padding: var(--space-10) var(--space-6);
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.capabilities__headline {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.capabilities__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

/* ════════════════════════════════════════════
   WHY BHARAT CARBON
   ════════════════════════════════════════════ */
.why-section {
  padding-block: var(--space-20);
  position: relative;
}

.why-section__outer {
  position: relative;
}

.why-section__header {
  position: relative;
  margin-bottom: var(--space-12);
  padding: var(--space-10) var(--space-6);
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-section__headline {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.why-section__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
}

.why-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

/* ════════════════════════════════════════════
   OUR MISSION
   ════════════════════════════════════════════ */
.mission {
  overflow: hidden;
}

.mission__inner {
  display: flex;
  min-height: 400px;
}

.mission__media {
  flex: 1;
  background: var(--color-gray-100);
  overflow: hidden;
}

.mission__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission__content {
  flex: 1;
  background: var(--color-navy);
  background-image: url('../assets/allImages/gradient2.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission__eyebrow {
  /* color: var(--color-teal-light); */
  margin-bottom: var(--space-6);
}

.mission__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
}

.mission__desc {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  max-width: 520px;
}

/* ════════════════════════════════════════════
   ADVISORS CAROUSEL
   ════════════════════════════════════════════ */
.advisors {
  padding-block: var(--space-16);
}

.advisors__header {
  margin-bottom: var(--space-6);
}

.advisors__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.advisors__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
}

.advisors__carousel-wrapper {
  position: relative;
  margin-top: var(--space-8);
}

.advisors__carousel {
  display: flex;
  gap: var(--space-4);
  overflow: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.advisors__carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.advisors__controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.advisors__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-white);
  color: var(--color-navy);
  transition: all var(--transition-fast);
}

.advisors__arrow:hover {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.advisors__arrow svg {
  width: 20px;
  height: 20px;
}

/* ════════════════════════════════════════════
   THE LATEST / RESOURCES CAROUSEL
   ════════════════════════════════════════════ */
.latest {
  padding-block: var(--space-16);
  position: relative;
}

.latest__inner {
  position: relative;
}

.latest__carousel-wrapper {
  overflow: hidden;
}

.latest__carousel {
  display: flex;
  gap: var(--space-5);
  transition: transform var(--transition-slow);
}

.latest__slide {
  flex: 0 0 calc(33.333% - var(--space-5) * 2 / 3);
  min-width: 300px;
}

/* ════════════════════════════════════════════
   PRESS QUOTES
   ════════════════════════════════════════════ */
.press {
  padding-block: var(--space-16);
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer-cta {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-12) 0;
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.footer-cta__text h3 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.footer-cta__text p {
  font-size: var(--fs-base);
  color: var(--color-text-light);
}

.footer-cta__buttons {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.site-footer {
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.site-footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.site-footer__col-title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.site-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-footer__link {
  font-size: var(--fs-sm);
  color: var(--color-teal);
  transition: color var(--transition-fast);
}

.site-footer__link:hover {
  color: var(--color-navy);
}

.site-footer__badges {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.site-footer__badge,
img.site-footer__badge {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* Override base.css img[loading="lazy"] opacity:0 — initLazyImages runs only in main.js (index), not on sub-pages */
img.site-footer__badge {
  opacity: 1;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
}

.site-footer__bottom-left {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.site-footer__social {
  display: flex;
  gap: var(--space-3);
}

.site-footer__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.site-footer__social-link:hover {
  color: var(--color-navy);
}

.site-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.site-footer__legal-link {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.site-footer__legal-link:hover {
  color: var(--color-navy);
}

.site-footer__copyright {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ════════════════════════════════════════════
   OVERVIEW PAGE
   ════════════════════════════════════════════ */
.hero--overview {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--overview .hero__desc--secondary {
  margin-top: 0;
  font-size: var(--fs-base);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

/* Overview Metrics Bar */
.overview-metrics {
  background-color: #f7f9fc;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.overview-metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.overview-metrics__cell {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8);
  border-left: 1px dashed var(--color-gray-200);
}

.overview-metrics__cell:first-child {
  border-left: none;
}

.overview-metrics__value {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-teal);
  line-height: 1.2;
}

.overview-metrics__label {
  font-size: var(--fs-md);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
}

/* One Intelligent System of Record */
.overview-sor {
  padding-block: 0;
}

.overview-sor__top {
  background: var(--color-white);
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--color-figma-border);
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  padding: 0px 0px 0px var(--container-padding);
  max-width: var(--container-max);
  margin-inline: auto;
  position: relative;
}

/* .overview-sor__top::before {
  content: '';
  position: absolute;
  left: 50%;
  top: var(--space-10);
  bottom: var(--space-10);
  width: 1px;
  border-left: 1px dashed var(--color-figma-border);
  pointer-events: none;
} */

.overview-sor__top-inner {
  flex: 0 0 min(600px, 50%);
  min-width: 0;
}

.overview-sor__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: auto;
}

.overview-sor__title {
  font-size: clamp(1.75rem, 2vw + 1rem, 2rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.overview-sor__desc {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--color-navy);
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.01em;
}

.overview-sor__benefits-wrap {
  flex: 0 0 min(600px, 50%);
  padding: var(--space-5);
  border: 1px dashed var(--color-figma-border);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background-color: white;
}

.overview-sor__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.overview-sor__benefit {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-navy);
  line-height: 1.43;
}

.overview-sor__benefit-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-teal);
}

.overview-sor__benefit-text {
  flex: 1;
  min-width: 0;
}

.overview-sor__dashboard {
  border-top: 1px solid var(--color-figma-border);
  border-bottom: 1px solid var(--color-figma-border);
  position: relative;
}

.overview-sor__dashboard-inner {
  position: relative;
  background: linear-gradient(
      90deg,
      rgba(225, 243, 217, 0.2) 0%,
      rgba(225, 243, 217, 0.2) 100%
    ),
    linear-gradient(90deg, #e1f3d9 0%, #e1f3d9 100%);
  padding: var(--space-8) var(--container-padding);
}

.overview-sor__dashboard-inner::before,
.overview-sor__dashboard-inner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed var(--color-figma-border);
}

.overview-sor__dashboard-inner::before {
  left: 0px;
}

.overview-sor__dashboard-inner::after {
  right: 0px;
}

.overview-sor__sidebar-label {
  position: absolute;
  left: var(--container-padding);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-teal);
  white-space: nowrap;
}

.overview-sor__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.overview-sor__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Overview Platform Enables */
.overview-enables {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overview-enables__outer,
.overview-architecture__outer,
.overview-enterprise__outer {
  position: relative;
}

.sidebar-section__outer {
  position: relative;
}

.overview-enables__header,
.overview-architecture__header,
.overview-enterprise__header {
  margin-bottom: var(--space-10);
}

.overview-enables__title,
.overview-architecture__title,
.overview-enterprise__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.overview-enables__subtitle,
.overview-architecture__subtitle,
.overview-enterprise__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.overview-enables__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.overview-enable-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  position: relative;
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-base);
}

.overview-enable-card:hover {
  box-shadow: var(--shadow-md);
}

.overview-enable-card__badge {
  position: absolute;
  top: -1px;
  right: 0;
  background: #91c577;
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.overview-enable-card__number {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-teal);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
}

.overview-enable-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
  line-height: 1.35;
}

.overview-enable-card__desc {
  font-size: var(--fs-base);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
}

/* Platform Architecture */
.overview-architecture__layers {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--space-8);
}

.overview-architecture__layer {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-6);
}

.overview-architecture__layer:last-child {
  border-bottom: none;
}

.overview-architecture__layer-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  color: var(--color-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.overview-architecture__layer-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}

.overview-architecture__layer-desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.overview-architecture__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.overview-architecture__tag {
  background: rgba(177, 196, 207, 0.4);
  border: 1px solid var(--color-gray-200);
  color: #557f97;
  font-size: var(--fs-sm);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.overview-architecture__footer {
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

/* What This Enables for Enterprises */
.overview-enterprise {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overview-enterprise__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.overview-enterprise__card {
  background: var(--color-white);
  border-left: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 260px;
}

.overview-enterprise__card:first-child {
  border-left: none;
}

.overview-enterprise__card:last-child {
  border-right: none;
}

.overview-enterprise__icon {
  width: 50px;
  height: 50px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.overview-enterprise__icon svg {
  width: 100%;
  height: 100%;
}

.overview-enterprise__card-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: 1.35;
}

.overview-enterprise__card-desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

/* ════════════════════════════════════════════
   ESG REPORTING PAGE
   ════════════════════════════════════════════ */
.esg-mapping {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.esg-mapping__inner {
  display: flex;
  gap: var(--space-12);
  align-items: stretch;
  padding: var(--space-10) 0;
}

.esg-mapping__text {
  flex: 1;
  max-width: 600px;
}

.esg-mapping__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  line-height: var(--lh-snug);
}

.esg-mapping__desc {
  font-size: var(--fs-md);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-6);
}

.esg-mapping__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.esg-mapping__benefit {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-base);
  color: #356683;
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.esg-mapping__benefit:not(:has(.esg-mapping__benefit-icon-wrap))::before {
  content: '✓';
  color: var(--color-teal);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.esg-mapping__benefit-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--color-teal);
}

.esg-mapping__benefit-icon {
  width: 16px;
  height: 16px;
}

.esg-mapping__benefit-text {
  flex: 1;
  min-width: 0;
}

.esg-mapping__media {
  flex: 1;
  max-width: 55%;
  min-height: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-100);
  display: flex;
}

.esg-mapping__media--with-caption {
  flex-direction: column;
  gap: var(--space-4);
}

.esg-mapping__media-caption {
  flex-shrink: 0;
}

.esg-mapping__media-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0 0 var(--space-1);
}

.esg-mapping__media-subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.esg-mapping__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
}

.esg-mapping__media--with-caption .esg-mapping__img {
  height: auto;
  object-fit: contain;
}

.esg-frameworks__header {
  margin-bottom: var(--space-10);
}

.esg-frameworks__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.esg-frameworks__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.esg-frameworks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.esg-framework-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  position: relative;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.esg-framework-card:hover {
  box-shadow: var(--shadow-md);
}

.esg-framework-card__badge {
  position: absolute;
  top: -1px;
  right: 0;
  background: #91c577;
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 16px;
}

.esg-framework-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.esg-framework-card__desc {
  font-size: var(--fs-base);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
  margin: 0;
  flex: 1;
}

.esg-framework-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.esg-framework-card__tag {
  font-size: var(--fs-sm);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.esg-framework-card__tag:nth-child(3n + 1) {
  background: rgba(186, 246, 235, 0.5);
  color: var(--color-teal);
}

.esg-framework-card__tag:nth-child(3n + 2) {
  background: rgba(225, 243, 217, 0.7);
  color: #719a5d;
}

.esg-framework-card__tag:nth-child(3n) {
  background: #fff3ea;
  color: var(--color-accent-orange);
}

.esg-steps__header {
  margin-bottom: var(--space-10);
}

.esg-steps__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.esg-steps__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.esg-step {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-6);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.esg-step:hover {
  box-shadow: var(--shadow-sm);
}

.esg-step__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #91c577;
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 4px;
}

.esg-step__number {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-teal);
  letter-spacing: 0.05em;
}

.esg-step__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.esg-step__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.esg-changes {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.esg-changes__header {
  margin-bottom: var(--space-10);
}

.esg-changes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.esg-changes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.esg-change-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 280px;
}

.esg-change-card__value {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-regular);
  color: var(--color-teal);
  line-height: 1.2;
}

.esg-change-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.35;
}

.esg-change-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.esg-changes__banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--color-off-white);
  color: var(--color-announcement-bar-text-main);
  padding: var(--space-6) var(--space-8);
  margin-top: var(--space-8);
  border-radius: var(--radius-sm);
}

.esg-changes__banner-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.esg-changes__banner p {
  margin: 0;
  text-align: center;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-announcement-bar-text-main);
  line-height: var(--lh-relaxed);
}

.esg-cta {
  background: var(--color-off-white);
}

.esg-cta__inner {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.esg-cta__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.esg-cta__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.esg-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}

/* CTA split layout: text left, buttons right (CDP, CBAM pages) */
.esg-cta__inner--split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  max-width: none;
  text-align: left;
}

.esg-cta__inner--split .esg-cta__text-block {
  flex: 1;
  min-width: 280px;
}

.esg-cta__inner--split .esg-cta__title {
  margin-bottom: var(--space-3);
}

.esg-cta__inner--split .esg-cta__desc {
  margin-bottom: 0;
}

.esg-cta__inner--split .esg-cta__buttons {
  flex-shrink: 0;
  justify-content: flex-end;
  margin-bottom: 0;
}

/* ════════════════════════════════════════════
   GHG ACCOUNTING PAGE
   ════════════════════════════════════════════ */
.ghg-audit {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ghg-ingest__label,
.ghg-scopes .esg-frameworks__label,
.ghg-intelligence .esg-frameworks__label,
.ghg-changes .esg-changes__label {
  display: block;
}

.ghg-changes {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ghg-scopes__header {
  margin-bottom: var(--space-10);
}

.ghg-scopes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.ghg-scopes__subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.ghg-scopes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.ghg-scope-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ghg-scope-card:nth-child(1) {
  background-image: url('../assets/allImages/gradient2.svg');
}

.ghg-scope-card:nth-child(2) {
  background-image: url('../assets/allImages/gradient1-light.svg');
}

.ghg-scope-card:nth-child(3) {
  background-image: url('../assets/allImages/gradient1.svg');
}

.ghg-scope-card:hover {
  box-shadow: var(--shadow-md);
}

.ghg-scope-card__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: var(--color-teal);
  /* background: rgba(23, 160, 134, 0.1); */
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.ghg-scope-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.ghg-scope-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.ghg-scope-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ghg-scope-card__item {
  font-size: var(--fs-sm);
  color: var(--color-navy);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: var(--space-2);
}

.ghg-scope-card__item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-teal);
}

.ghg-intelligence__header {
  margin-bottom: var(--space-10);
}

.ghg-intelligence__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  line-height: var(--lh-tight);
}

.ghg-intelligence__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
}

.ghg-intelligence__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.ghg-intelligence-block {
  background: var(--color-white);
  border: 1px solid var(--color-figma-border);
  padding: 25px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--transition-base);
}

.ghg-intelligence-block:hover {
  box-shadow: var(--shadow-md);
}

.ghg-intelligence-block__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #17a086;
}

.ghg-intelligence-block__icon-svg {
  width: 24px;
  height: 24px;
}

.ghg-intelligence-block__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ghg-intelligence-block__title {
  font-size: 18px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: 28px;
  letter-spacing: -0.2px;
  margin: 0;
}

.ghg-intelligence-block__desc {
  font-size: 16px;
  font-weight: var(--fw-regular);
  color: #356683;
  line-height: 24px;
  letter-spacing: -0.16px;
  margin: 0;
}

.ghg-intelligence__quote {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
  margin: 0;
  text-align: center;
  padding: var(--space-8);
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
}

.ghg-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   NET ZERO STRATEGIES PAGE
   ════════════════════════════════════════════ */
.nz-sbti {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nz-section__label {
  display: block;
}

.nz-scope-cols__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.nz-scope-col {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.nz-scope-col:hover {
  box-shadow: var(--shadow-md);
}

.nz-scope-col__category {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: var(--color-teal);
  margin-bottom: var(--space-3);
}

.nz-scope-col__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0;
  letter-spacing: 0.02em;
}

.nz-scope-col__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.nz-scope-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nz-scope-col__item {
  font-size: var(--fs-sm);
  color: var(--color-navy);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: var(--space-2);
}

.nz-scope-col__item::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: var(--fw-bold);
}

.nz-scope-cols__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-100);
}

.nz-scope-cols__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* nz-plan: no media column — text uses full width */
.nz-plan .esg-mapping__text {
  max-width: none;
}

.nz-plan-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nz-plan-benefit {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.nz-plan-benefit:last-child {
  border-bottom: none;
}

.nz-plan-benefit__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--color-teal);
}

.nz-plan-benefit__icon-svg {
  width: 20px;
  height: 20px;
}

.nz-plan-benefit__content {
  flex: 1;
  min-width: 0;
}

.nz-plan-benefit__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
  line-height: var(--lh-snug);
}

.nz-plan-benefit__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.nz-plan__callout {
  margin-top: var(--space-6);
  padding: var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}

.nz-plan__callout p {
  margin: 0;
  font-size: var(--fs-md);
  color: var(--color-navy);
  text-align: center;
  /* font-style: italic; */
  line-height: var(--lh-relaxed);
}

.nz-progress {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nz-progress__header {
  margin-bottom: var(--space-10);
}

.nz-progress__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.nz-progress__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.nz-progress-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.nz-progress-card:hover {
  box-shadow: var(--shadow-md);
}

.nz-progress-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 160, 134, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius-full);
}

.nz-progress-card__icon svg {
  width: 24px;
  height: 24px;
}

.nz-progress-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.nz-progress-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.nz-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   CBAM PCF PAGE
   ════════════════════════════════════════════ */

/* Webinar banner */
.cbam-webinar-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(23, 160, 134, 0.85) 0%,
    rgba(2, 64, 100, 0.9) 100%
  );
  padding: var(--space-12) 0;
}

.cbam-webinar-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background: radial-gradient(
    ellipse at 30% 50%,
    var(--color-white) 0%,
    transparent 60%
  );
}

.cbam-webinar-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  position: relative;
}

.cbam-webinar-banner__content {
  flex: 1;
  max-width: 600px;
}

.cbam-webinar-banner__tag {
  display: inline-block;
  background: var(--color-green-100);
  color: var(--color-teal-figma);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  padding: var(--space-2) var(--space-3);
  margin-bottom: var(--space-5);
  border-radius: var(--radius-sm);
}

.cbam-webinar-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: -0.14px;
  margin: 0 0 var(--space-5);
}

.cbam-webinar-banner__desc {
  font-size: var(--fs-lg);
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: -0.2px;
  margin: 0 0 var(--space-6);
  opacity: 0.95;
}

.cbam-webinar-banner__date {
  display: block;
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin: 0;
}

.cbam-webinar-banner__media {
  flex: 1 1 320px;
  min-width: 200px;
  max-width: 480px;
  aspect-ratio: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cbam-webinar-banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Hero tags (pill-shaped) */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero__tag {
  display: inline-block;
  background: var(--color-green-100);
  border: 1px solid #b2e19c;
  color: var(--color-navy);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  letter-spacing: -0.16px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.hero--cbam {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--cbam .hero__desc--secondary {
  margin-top: calc(-1 * var(--space-4));
  margin-bottom: var(--space-6);
}

.cbam-section__label,
.cdp-section__label,
.esg-disclosure-section__label,
.materiality-section__label,
.scenario-section__label {
  display: block;
}

.cbam-trusted .trusted__title {
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.cbam-cost__header {
  margin-bottom: var(--space-10);
}

.cbam-cost__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.cbam-cost__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
}

.cbam-cost__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.cbam-cost-block {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-base);
}

.cbam-cost-block:hover {
  box-shadow: var(--shadow-md);
}

.cbam-cost-block__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.cbam-cost-block__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.cbam-platform {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
}

.cbam-outcomes__header {
  margin-bottom: var(--space-10);
}

.cbam-outcomes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.cbam-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.cbam-outcome-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.cbam-outcome-card:hover {
  box-shadow: var(--shadow-md);
}

.cbam-outcome-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 160, 134, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius-full);
}

.cbam-outcome-card__icon svg {
  width: 24px;
  height: 24px;
}

.cbam-outcome-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.cbam-outcome-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.cbam-outcomes__tagline {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  margin: 0;
}

.cbam-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   CDP SBTI PAGE
   ════════════════════════════════════════════ */
.cdp-section__label {
  display: block;
}

.cdp-platform {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--cdp {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cdp-trusted .trusted__title {
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.cdp-competitive__header {
  margin-bottom: var(--space-10);
}

.cdp-competitive__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
}

.cdp-competitive__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
}

.cdp-competitive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.cdp-competitive-block {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-base);
}

.cdp-competitive-block:hover {
  box-shadow: var(--shadow-md);
}

.cdp-competitive-block__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.cdp-competitive-block__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.cdp-outcomes__header {
  margin-bottom: var(--space-10);
}

.cdp-outcomes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.cdp-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.cdp-outcome-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.cdp-outcome-card:hover {
  box-shadow: var(--shadow-md);
}

.cdp-outcome-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 160, 134, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius-full);
}

.cdp-outcome-card__icon svg,
.cdp-outcome-card__icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cdp-outcome-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.cdp-outcome-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.cdp-outcomes__tagline {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  margin: 0;
}

.cdp-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   ESG DISCLOSURE PAGE (GRI, BRSR, TCFD, SASB, CSRD)
   ════════════════════════════════════════════ */
.esg-mapping__inner--reversed {
  flex-direction: row-reverse;
}

.hero--esg-disclosure {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--esg-disclosure .hero__desc--secondary {
  margin-top: calc(-1 * var(--space-4));
  margin-bottom: var(--space-6);
}

.esg-disclosure-platform {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.esg-disclosure-regimes__header {
  margin-bottom: var(--space-10);
}

.esg-disclosure-regimes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-5);
}

.esg-disclosure-regimes__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
  margin: 0 0 var(--space-10);
}

.esg-disclosure-regimes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.esg-disclosure-block {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-base);
}

.esg-disclosure-block:hover {
  box-shadow: var(--shadow-md);
}

.esg-disclosure-block__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.esg-disclosure-block__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.esg-disclosure-frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: var(--space-8);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.esg-disclosure-framework {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  min-width: 120px;
  padding: var(--space-6);
  background: var(--color-white);
  border-right: 1px solid var(--color-border-light);
}

.esg-disclosure-framework:last-child {
  border-right: none;
}

.esg-disclosure-framework__region {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.esg-disclosure-framework__logo {
  height: 48px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.esg-disclosure-framework__name {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
}

.esg-disclosure-framework__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.4;
}

.esg-disclosure-outcomes__header {
  margin-bottom: var(--space-10);
}

.esg-disclosure-outcomes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.esg-disclosure-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.esg-disclosure-outcome-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.esg-disclosure-outcome-card:hover {
  box-shadow: var(--shadow-md);
}

.esg-disclosure-outcome-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 160, 134, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius-full);
}

.esg-disclosure-outcome-card__icon svg {
  width: 24px;
  height: 24px;
}

.esg-disclosure-outcome-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.esg-disclosure-outcome-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.esg-disclosure-outcomes__tagline {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  margin: 0;
}

.esg-disclosure-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   MATERIALITY ASSESSMENT PAGE
   ════════════════════════════════════════════ */
.hero--materiality {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.materiality-trusted .trusted__title {
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.materiality-platform {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.materiality-imperative__header {
  margin-bottom: var(--space-10);
}

.materiality-imperative__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-5);
}

.materiality-imperative__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
  margin: 0 0 var(--space-10);
}

.materiality-imperative__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.materiality-block {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-base);
}

.materiality-block:hover {
  box-shadow: var(--shadow-md);
}

.materiality-block__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.materiality-block__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.materiality-outcomes__header {
  margin-bottom: var(--space-10);
}

.materiality-outcomes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.materiality-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.materiality-outcome-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.materiality-outcome-card:hover {
  box-shadow: var(--shadow-md);
}

.materiality-outcome-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 160, 134, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius-full);
}

.materiality-outcome-card__icon svg {
  width: 24px;
  height: 24px;
}

.materiality-outcome-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.materiality-outcome-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.materiality-outcomes__tagline {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  margin: 0;
}

.materiality-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   SCENARIO PLANNING PAGE
   ════════════════════════════════════════════ */
.hero--scenario {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.scenario-platform {
  background-image: url('../assets/allImages/gradient1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--scenario .hero__desc--secondary {
  margin-top: calc(-1 * var(--space-4));
  margin-bottom: var(--space-6);
}

.scenario-trusted .trusted__title {
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.scenario-challenge__header {
  margin-bottom: var(--space-10);
}

.scenario-challenge__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-5);
}

.scenario-challenge__desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  max-width: 720px;
  margin: 0 0 var(--space-10);
}

.scenario-challenge__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.scenario-block {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  transition: box-shadow var(--transition-base);
}

.scenario-block:hover {
  box-shadow: var(--shadow-md);
}

.scenario-block__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-3);
}

.scenario-block__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.scenario-outcomes__header {
  margin-bottom: var(--space-10);
}

.scenario-outcomes__title {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.scenario-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.scenario-outcome-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  padding: var(--space-8);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: box-shadow var(--transition-base);
}

.scenario-outcome-card:hover {
  box-shadow: var(--shadow-md);
}

.scenario-outcome-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 160, 134, 0.15);
  color: var(--color-teal);
  border-radius: var(--radius-full);
}

.scenario-outcome-card__icon svg {
  width: 24px;
  height: 24px;
}

.scenario-outcome-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.scenario-outcome-card__desc {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.scenario-outcomes__conclusion {
  font-size: var(--fs-lg);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
  width: 100%;
  margin: 0 0 var(--space-6);
  text-align: center;
  background-color: var(--color-off-white);
}

.scenario-outcomes__tagline {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  margin: 0;
}

.scenario-cta {
  background: var(--color-off-white);
}

/* ════════════════════════════════════════════
   CUSTOMERS PAGE (Figma: Bharat Carbon node 30136:2082)
   ════════════════════════════════════════════ */
.hero--customers {
  border-bottom: 1px solid var(--color-gray-300);
}

.hero__eyebrow {
  display: block;
  font-size: 16px;
  font-weight: var(--fw-regular);
  letter-spacing: -0.16px;
  color: var(--color-teal-figma);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.hero__title--customers {
  font-size: clamp(2rem, 3vw + 1.5rem, 50px);
  font-weight: var(--fw-medium);
  line-height: 1.32;
  letter-spacing: -1.28px;
}

.hero__desc--customers {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 0;
}

.hero--customers .hero__desc {
  margin-bottom: 0;
}

/* Logos Strip */
.customers-logos-strip {
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-border-light);
}

.customers-logos-strip__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.customers-logos-strip__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 0 10px;
}

.customers-logos-strip__img {
  max-height: 110px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.hero__media--customers {
  max-width: 100%;
  aspect-ratio: 16 / 10;
}

.hero__video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-gray-200);
}

.hero__video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.hero__play-btn:hover {
  transform: scale(1.08);
}

.hero__play-btn svg {
  width: 100%;
  height: 100%;
}

.hero__partners {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero__partner-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.hero__partner-logos {
  display: flex;
  gap: var(--space-6);
}

.hero__partner-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

/* Customer Stories */
.customers-stories {
  padding-block: var(--space-16);
}

.customers-stories__inner {
  position: relative;
}

.customers-stories__label {
  margin-bottom: var(--space-6);
}

.customers-stories__carousel-wrapper {
  overflow: hidden;
}

.customers-stories__carousel {
  display: flex;
  gap: var(--space-6);
  transition: transform var(--transition-slow);
}

.customers-story-card {
  flex: 0 0 calc(33.333% - var(--space-6) * 2 / 3);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-navy);
  border-radius: 0;
  overflow: hidden;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.customers-story-card:hover {
  border-color: var(--color-teal-figma);
  box-shadow: 0 4px 12px rgba(2, 64, 100, 0.08);
}

.customers-story-card__img-wrap {
  aspect-ratio: 384.66 / 201.33;
  overflow: hidden;
  background: var(--color-gray-100);
}

.customers-story-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customers-story-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: var(--space-4) 0 0;
}

.customers-story-card__title {
  font-size: 24px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 32px;
  letter-spacing: -0.4px;
}

.customers-story-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  font-size: 14px;
  color: var(--color-navy);
  letter-spacing: -0.16px;
}

.customers-story-card__company {
  font-weight: var(--fw-regular);
}

.customers-story-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 14px;
  color: var(--color-navy);
  transition: gap var(--transition-fast);
}

.customers-story-card:hover .customers-story-card__link {
  gap: var(--space-2);
}

.customers-story-card__link svg {
  width: 16px;
  height: 16px;
  transform: rotate(180);
}

.customers-stories__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

/* Customers Logos */
.customers-logos__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.customers-logos__title {
  font-size: 40px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.14px;
}

.customers-logos__filters {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.customers-logos__filter-group {
  position: relative;
}

.customers-logos__filter-label {
  position: absolute;
  top: -9px;
  left: 14px;
  padding: 0 2px;
  font-size: 12px;
  color: var(--color-navy);
  background: var(--color-white);
  letter-spacing: -0.16px;
  z-index: 2;
}

.customers-logos__select {
  padding: 12px 16px;
  padding-right: 40px;
  font-size: 18px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 0;
  cursor: pointer;
  min-width: 120px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23024064' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 24px;
}

.customers-logos__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-8);
}

.customers-logos__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: var(--space-4);
  background: var(--color-white);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition-fast);
}

.customers-logos__cell:hover {
  box-shadow: var(--shadow-sm);
}

.customers-logos__img {
  max-height: 48px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
}

/* Customers Testimonial */
.customers-testimonial {
  padding-block: var(--space-16);
}

.customers-testimonial__wrap {
  min-height: 280px;
}

.customers-testimonial__card {
  background: linear-gradient(
    246deg,
    rgba(228, 255, 248, 0.5) 0%,
    rgba(255, 238, 219, 0.5) 100%
  );
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  text-align: center;
}

.customers-testimonial__source {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-6);
}

.customers-testimonial__quote {
  font-size: 24px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: 36px;
  letter-spacing: -0.4px;
  margin: 0 0 var(--space-8);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.customers-testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.customers-testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.customers-testimonial__author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.customers-testimonial__author-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
}

.customers-testimonial__author-title {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.customers-testimonial__dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

/* ════════════════════════════════════════════
   BLOG PAGE (Figma: Bharat Carbon node 30267:7077)
   ════════════════════════════════════════════ */
.blog-filters {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.blog-filters__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.blog-filters__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filters__tab {
  padding: 6px 10px;
  font-size: 16px;
  font-weight: var(--fw-regular);
  letter-spacing: -0.18px;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--color-green-100);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: color var(--transition-fast),
    background-color var(--transition-fast);
}

.blog-filters__tab:hover {
  background: var(--color-teal-bg);
}

.blog-filters__tab--active {
  color: var(--color-white);
  background: var(--color-teal-figma);
}

.blog-filters__search {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-filters__input {
  padding: 4px 28px 4px 10px;
  font-size: 14px;
  color: var(--color-navy);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-navy);
  border-radius: 0;
  min-width: 164px;
}

.blog-filters__input::placeholder {
  color: var(--color-navy);
  opacity: 0.7;
}

.blog-filters__search-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-navy);
  pointer-events: none;
}

/* Blog Featured (horizontal layout) */
.blog-featured {
  padding-top: 0;
}

.blog-card--featured .blog-card__link--horizontal {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.blog-card--featured .blog-card__img-wrap--featured {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 384.66 / 201.33;
}

.blog-card--featured .blog-card__body--featured {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  justify-content: center;
}

.blog-card--featured .blog-card__title--featured {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.14px;
  margin: 0;
}

.blog-card--featured .blog-card__category {
  font-size: 16px;
  color: var(--color-teal-figma);
  margin-bottom: 0;
}

.blog-card--featured .blog-card__date {
  font-size: 16px;
  color: var(--color-teal-figma);
  margin-bottom: 0;
}

.blog-card--featured .blog-card__excerpt {
  font-size: 16px;
  color: var(--color-navy);
  line-height: 24px;
  margin: 0;
}

/* Blog Newsletter */
.blog-newsletter {
  background: var(--color-white);
  border-top: 1px dashed var(--color-gray-300);
  border-bottom: 1px dashed var(--color-gray-300);
  padding: 40px 0;
}

.blog-newsletter__inner {
  max-width: none;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.blog-newsletter__content {
  flex: 0 0 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.blog-newsletter__title {
  font-size: 40px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.14px;
}

.blog-newsletter__desc {
  font-size: 16px;
  color: var(--color-navy);
  margin: 0;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.blog-newsletter__form-wrap {
  flex: 1 1 0;
  min-width: 280px;
}

.blog-newsletter__form {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: var(--space-2);
}

.blog-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  font-size: 18px;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-right: none;
  border-radius: 0;
}

.blog-newsletter__input::placeholder {
  color: var(--color-navy);
  opacity: 0.3;
}

.blog-newsletter__btn {
  padding: 16px 20px;
  font-size: 18px;
  letter-spacing: -0.18px;
  border-radius: 0;
  white-space: nowrap;
}

.blog-newsletter__note {
  font-size: 14px;
  color: var(--color-navy);
  line-height: 20px;
  letter-spacing: -0.16px;
  margin: 0;
}

.blog-newsletter__note a {
  color: var(--color-navy);
  text-decoration: underline;
}

/* ════════════════════════════════════════════
   BLOG DETAIL PAGE (Figma: node 31400:11594)
   ════════════════════════════════════════════ */
.blog-detail-hero {
  background: #024064;
  padding: var(--space-20) 0;
}

.blog-detail-hero__inner {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-detail-hero__content {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.blog-detail-hero__media {
  flex: 0 0 auto;
  width: 100%;
  max-width: 585px;
  aspect-ratio: 384.66 / 201.33;
  overflow: hidden;
  background: var(--color-gray-100);
}

.blog-detail-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-hero__category {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: #17a086;
  margin: 0;
}

.blog-detail-hero__title {
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  font-weight: var(--fw-medium);
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin: 0;
  max-width: 720px;
}

.blog-detail-hero__date {
  font-size: 16px;
  color: #17a086;
  text-transform: uppercase;
}

.blog-detail-article {
  padding-block: var(--space-20);
}

.blog-detail-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.blog-detail-article__h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-navy);
  margin: var(--space-12) 0 var(--space-6);
}

.blog-detail-article__h2:first-child {
  margin-top: 0;
}

.blog-detail-article__h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-navy);
  margin: var(--space-10) 0 var(--space-4);
}

.blog-detail-article__p {
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
  margin: 0 0 var(--space-6);
}

.blog-detail-article__p:last-child {
  margin-bottom: 0;
}

/* ════════════════════════════════════════════
   PRIVACY POLICY PAGE
   ════════════════════════════════════════════ */
.privacy-hero {
  background: #024064;
  padding: var(--space-20) 0;
}

.privacy-hero__inner {
  display: flex;
  align-items: center;
}

.privacy-hero__title {
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  font-weight: var(--fw-medium);
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin: 0;
}

.privacy-article {
  padding-block: var(--space-20);
}

.privacy-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.privacy-article__h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-navy);
  margin: var(--space-12) 0 var(--space-6);
}

.privacy-article__h2:first-of-type {
  margin-top: 0;
}

.privacy-article__h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-navy);
  margin: var(--space-10) 0 var(--space-4);
}

.privacy-article__p {
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
  margin: 0 0 var(--space-6);
}

.privacy-article__p:last-child {
  margin-bottom: 0;
}

.privacy-article__list {
  margin: 0 0 var(--space-6);
  padding-left: 1.5em;
  list-style: disc;
}

.privacy-article__list li {
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
  margin-bottom: var(--space-3);
}

.privacy-article__list li:last-child {
  margin-bottom: 0;
}

.privacy-article__link {
  color: var(--color-teal-figma);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.privacy-article__link:hover {
  color: var(--color-teal-dark);
}

/* ════════════════════════════════════════════
   TERMS & CONDITIONS PAGE
   ════════════════════════════════════════════ */
.terms-hero {
  background: #024064;
  padding: var(--space-20) 0;
}

.terms-hero__inner {
  display: flex;
  align-items: center;
}

.terms-hero__title {
  font-size: clamp(1.75rem, 4vw, 3.125rem);
  font-weight: var(--fw-medium);
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin: 0;
}

.terms-article {
  padding-block: var(--space-20);
}

.terms-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.terms-article__body .main-list {
  counter-reset: item;
}

.terms-article__h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-navy);
  margin: var(--space-12) 0 var(--space-6);
}

.terms-article__h2:first-of-type {
  margin-top: 0;
}

.terms-article__h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-navy);
  margin: var(--space-10) 0 var(--space-4);
}

.terms-article__p {
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
  margin: 0 0 var(--space-6);
}

.terms-article__link {
  color: var(--color-teal-figma);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.terms-article__link:hover {
  color: var(--color-teal-dark);
}

/* Main list: multi-level ordered list with custom counters */
.terms-article__body .main-list,
.terms-article__body .main-list ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.terms-article__body .main-list > li {
  counter-increment: item;
  counter-reset: subitem lvl3;
  position: relative;
  padding-left: 38px;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
}

.terms-article__body .main-list > li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  width: 30px;
  text-align: right;
  font-weight: 700;
}

.terms-article__body .main-list > li > ol {
  list-style: none;
  margin: 6px 0 0 -16px;
  padding: 0;
}

.terms-article__body .main-list > li > ol > li {
  counter-increment: subitem;
  counter-reset: subsubitem lvl3 lvl4;
  position: relative;
  padding-left: 52px;
  font-weight: 400;
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
}

.terms-article__body .main-list > li > ol > li::before {
  content: counter(item) '.' counter(subitem) '.';
  position: absolute;
  left: 0;
  width: 44px;
  text-align: right;
  font-weight: 400;
}

.terms-article__body .main-list li li > ol > li {
  counter-increment: lvl3;
  counter-reset: lvl4;
  position: relative;
  padding-left: 40px;
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
}

.terms-article__body .main-list li li > ol > li::before {
  content: counter(lvl3, lower-roman) '.';
  position: absolute;
  left: 0;
  width: 30px;
  text-align: right;
}

.terms-article__body .main-list li li li > ol > li {
  counter-increment: lvl4;
  position: relative;
  padding-left: 30px;
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
}

.terms-article__body .main-list li li li > ol > li::before {
  content: counter(lvl4, lower-alpha) ')';
  position: absolute;
  left: 0;
  width: 20px;
  text-align: right;
}

.terms-article__body .main-list .no-li li::before {
  display: none;
}

.terms-article__body .main-list .no-li li {
  margin-left: -36px;
}

.terms-article__body ul {
  margin: var(--space-3) 0;
  padding-left: 1.5em;
  list-style: disc;
}

.terms-article__body ul li {
  font-size: 18px;
  line-height: 1.56;
  color: #024064;
  margin-bottom: var(--space-2);
}

/* Mobile table in terms */
.terms-article__body .mobile-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-6) 0;
  font-size: 16px;
}

.terms-article__body .mobile-table th,
.terms-article__body .mobile-table td {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  text-align: left;
  color: #024064;
}

.terms-article__body .mobile-table th {
  font-weight: var(--fw-semibold);
  background: var(--color-gray-50);
}

.terms-article__body .mobile-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-6) 0;
}

@media (max-width: 767px) {
  .terms-article__body .mobile-table {
    font-size: 14px;
  }

  .terms-article__body .mobile-table th,
  .terms-article__body .mobile-table td {
    padding: var(--space-2) var(--space-3);
  }
}

/* Blog detail newsletter (two-column with illustration) */
.blog-detail-newsletter {
  background: var(--color-white);
  border-top: 1px dashed var(--color-figma-border);
  padding: var(--space-20) 0;
}

.blog-detail-newsletter__inner {
  display: flex;
  gap: 150px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.blog-detail-newsletter__content {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 439px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.blog-detail-newsletter__title {
  font-size: 40px;
  font-weight: var(--fw-regular);
  color: #024064;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.14px;
}

.blog-detail-newsletter__desc {
  font-size: 16px;
  color: #024064;
  margin: 0;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.blog-detail-newsletter__form {
  display: flex;
  margin-bottom: var(--space-5);
}

.blog-detail-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  font-size: 18px;
  color: #024064;
  background: var(--color-white);
  border: 1px solid #024064;
  border-right: none;
}

.blog-detail-newsletter__input::placeholder {
  color: #024064;
  opacity: 0.3;
}

.blog-detail-newsletter__btn {
  padding: 16px 20px;
  font-size: 18px;
  letter-spacing: -0.18px;
  border-radius: 0;
  white-space: nowrap;
  background: #024064;
  color: var(--color-white);
  border: 1px solid #024064;
}

.blog-detail-newsletter__note {
  font-size: 14px;
  color: #024064;
  line-height: 20px;
  letter-spacing: -0.16px;
  margin: 0;
}

.blog-detail-newsletter__note a {
  color: #024064;
  text-decoration: underline;
}

.blog-detail-newsletter__illustration {
  flex: 1 1 0;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-newsletter__img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* The Latest on blog detail - tag color per Figma */
.blog-detail__latest .resource-card__tag {
  color: #b1c4cf;
}

/* Blog Grid */
.blog-grid__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.blog-card {
  border-radius: 0;
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-fast);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card__link--vertical {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card__img-wrap {
  aspect-ratio: 384.66 / 201.33;
  overflow: hidden;
  background: var(--color-gray-100);
}

.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card__category {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--fw-regular);
  letter-spacing: 0;
  color: var(--color-teal-figma);
  margin: 0;
  text-transform: uppercase;
}

.blog-card__title {
  font-size: 24px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: 34px;
  margin: 0;
  letter-spacing: -0.4px;
}

.blog-card__date {
  display: block;
  font-size: 16px;
  color: var(--color-teal-figma);
  margin: 0;
  text-transform: uppercase;
}

.blog-card__excerpt {
  font-size: 16px;
  color: var(--color-navy);
  line-height: 24px;
  margin: 0;
}

.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.blog-grid__load-more {
  text-align: center;
  margin-top: var(--space-12);
}

.blog-grid__load-more .btn {
  background: var(--color-green-100);
  color: var(--color-navy);
  border-color: var(--color-green-100);
}

.blog-grid__load-more .btn:hover {
  background: var(--color-teal-bg);
  border-color: var(--color-teal-bg);
}

.blog-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-12);
}

/* Blog CTA */
.blog-cta {
  background: var(--color-white);
}

.blog-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.blog-cta__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
}

.blog-cta__buttons {
  display: flex;
  gap: var(--space-3);
}

/* ════════════════════════════════════════════
   GUIDES PAGE
   ════════════════════════════════════════════ */

/* Guides Hero */
.guides-hero {
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
}

.guides-hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: flex-start;
  justify-content: space-between;
}

.guides-hero__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.guides-hero__desc {
  flex: 1 1 320px;
  max-width: 480px;
  font-size: var(--fs-md);
  color: var(--color-navy);
  line-height: 1.5;
  margin: 0;
}

/* Guides Featured Carousel */
.guides-featured {
  padding-block: var(--space-12);
  position: relative;
}

.guides-featured__inner {
  position: relative;
}

.guides-featured__carousel-wrapper {
  overflow: hidden;
}

.guides-featured__carousel {
  display: flex;
  gap: var(--space-5);
  transition: transform var(--transition-slow);
}

.guides-featured__slide {
  flex: 0 0 calc(33.333% - var(--space-5) * 2 / 3);
  min-width: 280px;
}

.guides-featured__inner .carousel-nav {
  margin-top: var(--space-6);
}

/* Guides Newsletter */
.guides-newsletter {
  background: var(--color-white);
  border-top: 1px dashed var(--color-gray-300);
  border-bottom: 1px dashed var(--color-gray-300);
  padding: 40px 0;
}

.guides-newsletter__inner {
  max-width: none;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.guides-newsletter__content {
  flex: 0 0 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.guides-newsletter__title {
  font-size: 40px;
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.14px;
}

.guides-newsletter__desc {
  font-size: 16px;
  color: var(--color-navy);
  margin: 0;
  line-height: 24px;
  letter-spacing: -0.16px;
}

.guides-newsletter__form-wrap {
  flex: 1 1 0;
  min-width: 280px;
}

.guides-newsletter__form {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: var(--space-2);
}

.guides-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid var(--color-navy);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--color-navy);
  background: var(--color-white);
}

.guides-newsletter__input::placeholder {
  color: var(--color-navy);
  opacity: 0.3;
}

.guides-newsletter__btn {
  padding: 16px 20px;
  font-size: 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  white-space: nowrap;
}

.guides-newsletter__note {
  font-size: 14px;
  color: var(--color-navy);
  margin: 0;
  opacity: 0.8;
}

.guides-newsletter__note a {
  color: var(--color-navy);
  text-decoration: underline;
}

/* Guides Grid */
.guides-grid__inner {
  display: flex;
  flex-direction: column;
}

.guides-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.guides-grid__load-more {
  text-align: center;
  margin-top: var(--space-12);
}

.guides-grid__load-more .btn {
  background: var(--color-green-100);
  color: var(--color-navy);
  border-color: var(--color-green-100);
}

.guides-grid__load-more .btn:hover {
  background: var(--color-teal-bg);
  border-color: var(--color-teal-bg);
}

/* Guide Card */
.guide-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
}

.guide-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.guide-card__img-wrap {
  width: 100%;
  aspect-ratio: 386 / 220;
  overflow: hidden;
  background: var(--color-gray-100);
}

.guide-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.guide-card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  color: var(--color-teal-figma);
}

.guide-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.35;
}

.guide-card__date {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* ════════════════════════════════════════════
   EVENTS PAGE
   ════════════════════════════════════════════ */

/* Events Hero + Featured */
.events-hero {
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  background: linear-gradient(
    229.77deg,
    rgba(228, 255, 248, 0.5) 0%,
    rgba(255, 238, 219, 0.5) 100%
  );
}

.events-hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 15.625rem);
  align-items: center;
  justify-content: space-between;
}

.events-hero__title {
  font-size: clamp(2.5rem, 4vw, 3.125rem);
  font-weight: 500;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.32;
  letter-spacing: -0.0256em;
  flex: 0 0 auto;
}

.events-hero__featured {
  flex: 1 1 400px;
  min-width: 280px;
}

.events-featured__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.events-featured__tag {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  letter-spacing: 0.0625em;
  color: var(--color-teal-figma);
  text-transform: uppercase;
}

.events-featured__title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.1;
}

.events-featured__desc {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--color-navy);
  line-height: 1.42;
  margin: 0;
}

.events-featured__date {
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  letter-spacing: 0.0625em;
  color: var(--color-navy);
  text-transform: uppercase;
}

.events-featured__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  padding: 0.6875rem 1.25rem;
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  background: #20ac87;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.events-featured__btn:hover {
  background: #1a8f6f;
}

/* Upcoming Events */
.events-upcoming {
  padding-block: var(--space-12);
}

.events-upcoming__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.events-upcoming__title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
}

.events-upcoming__subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin: 0;
}

.events-upcoming__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .events-upcoming__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-upcoming-card {
  border: 1px solid var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.event-upcoming-card:hover {
  box-shadow: var(--shadow-md);
}

.event-upcoming-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.event-upcoming-card__img-wrap {
  width: 100%;
  aspect-ratio: 386 / 220;
  overflow: hidden;
  background: var(--color-gray-100);
}

.event-upcoming-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-upcoming-card__body {
  padding: var(--space-6);
  flex: 1;
  min-height: 0;
  position: relative;
}

.event-upcoming-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-3);
}

.event-upcoming-card__tag {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  letter-spacing: 0.0625em;
  color: var(--color-teal-figma);
  text-transform: uppercase;
}

.event-upcoming-card__title {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.42;
  padding-right: 2rem;
}

.event-upcoming-card__date {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  letter-spacing: 0.0625em;
  color: var(--color-teal-figma);
  text-transform: uppercase;
}

.event-upcoming-card__icon {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  color: var(--color-navy);
  line-height: 1;
}

.event-upcoming-card__icon svg {
  display: block;
}

/* Most Watched */
.events-most-watched {
  padding-block: var(--space-12);
  background: var(--color-off-white);
}

.events-most-watched__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.events-most-watched__title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
}

.events-most-watched__subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin: 0;
}

.events-most-watched__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-6);
}

.events-most-watched__secondary {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.event-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  transition: box-shadow var(--transition-base);
}

.event-video-card:hover {
  box-shadow: var(--shadow-md);
}

.event-video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.event-video-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-gray-100);
}

.event-video-card--featured .event-video-card__img-wrap {
  aspect-ratio: 16 / 10;
}

.event-video-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  transition: background var(--transition-base);
}

.event-video-card__play svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.event-video-card__play--sm svg {
  width: 48px;
  height: 48px;
}

.event-video-card:hover .event-video-card__play {
  background: rgba(0, 0, 0, 0.25);
}

.event-video-card__title {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-4);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
}

.event-video-card__arrow {
  flex-shrink: 0;
}

.event-video-card--featured .event-video-card__title {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.42;
}

/* On-Demand Events */
.events-ondemand {
  padding-block: var(--space-12);
}

.events-ondemand__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.events-ondemand__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
}

.events-ondemand__subtitle {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
  margin: 0;
}

.events-ondemand__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.events-ondemand__filter {
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.events-ondemand__filter:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.events-ondemand__filter--active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.events-ondemand__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.events-ondemand__load-more {
  text-align: center;
  margin-top: var(--space-8);
}

.events-ondemand__load-more .btn {
  background: var(--color-green-100);
  color: var(--color-navy);
  border-color: var(--color-green-100);
}

.events-ondemand__load-more .btn:hover {
  background: var(--color-teal-bg);
  border-color: var(--color-teal-bg);
}

.event-ondemand-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.event-ondemand-card:hover {
  box-shadow: var(--shadow-md);
}

.event-ondemand-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.event-ondemand-card__img-wrap {
  width: 100%;
  aspect-ratio: 386 / 220;
  overflow: hidden;
  background: var(--color-gray-100);
}

.event-ondemand-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-ondemand-card__body {
  padding: var(--space-6);
}

.event-ondemand-card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  color: var(--color-teal-figma);
}

.event-ondemand-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--color-navy);
  margin: 0 0 var(--space-2);
  line-height: 1.35;
}

.event-ondemand-card__date {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

/* Events Newsletter (with image background) */
.events-newsletter {
  padding: 0;
}

.events-newsletter__inner {
  display: flex;
  min-height: 400px;
}

.events-newsletter__media {
  flex: 1 1 50%;
  min-height: 300px;
  background: linear-gradient(135deg, #e8d5c4 0%, #d4b896 100%);
  background-image: url('../assets/allImages/blog image (1).png');
  background-size: cover;
  background-position: center;
}

.events-newsletter__panel {
  flex: 1 1 50%;
  padding: var(--space-12);
  background: #ff832b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

.events-newsletter__title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  margin: 0;
}

.events-newsletter__desc {
  font-size: var(--fs-md);
  color: var(--color-white);
  margin: 0;
  opacity: 0.95;
}

.events-newsletter__form {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.events-newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: var(--space-4);
  font-size: var(--fs-base);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy);
}

.events-newsletter__input::placeholder {
  color: rgba(2, 64, 100, 0.3);
}

.events-newsletter__btn {
  padding: var(--space-4) var(--space-6);
  background: #b2e19c;
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-regular);
  cursor: pointer;
  transition: var(--transition-fast);
}

.events-newsletter__btn:hover {
  background: #9dd085;
}

/* ════════════════════════════════════════════
   PRESS PAGE
   ════════════════════════════════════════════ */
.press-page {
  padding-block: var(--space-12);
}

.press-page__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.press-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.press-page__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fw-medium);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.2;
}

.press-page__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.press-page__nav-link {
  font-size: var(--fs-base);
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.press-page__nav-link:hover {
  color: var(--color-navy);
}

.press-page__nav-link--active {
  color: var(--color-teal);
  font-weight: var(--fw-medium);
}

.press-page__contact {
  margin-top: var(--space-4);
}

.press-page__contact-label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-1);
}

.press-page__contact-email {
  font-size: var(--fs-base);
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.press-page__contact-email:hover {
  color: var(--color-navy);
}

.press-page__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.press-coverage__row {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border-light);
  text-decoration: none;
  color: inherit;
  transition: background-color var(--transition-fast);
}

.press-coverage__row:hover {
  background-color: var(--color-gray-50);
}

.press-coverage__row:first-child {
  padding-top: 0;
}

.press-coverage__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-navy);
  line-height: var(--lh-relaxed);
}

.press-coverage__meta {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.press-page__see-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) 0;
  border-bottom: 6px solid var(--color-teal);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.press-page__see-all:hover {
  color: var(--color-navy);
}

.press-page__see-all svg {
  width: 24px;
  height: 24px;
}

.press-page__certifications {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.press-cert__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-white);
  text-align: center;
}

.press-cert__img-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-cert__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-cert__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.press-cert__title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  color: var(--color-navy);
}

.press-cert__issuer {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}
