@charset "utf-8";

.gi-page {
  /* background: #0a0a0a; */
  color: #F2F3F4;
  /* font-family: 'Pretendard Variable', sans-serif; */
  overflow: hidden;
  position: relative;
}

.gi-page * {
  box-sizing: border-box;
}

@keyframes gi-shimmer-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
@keyframes gi-pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,91,62,.55); }
  70% { box-shadow: 0 0 0 14px rgba(255,91,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,91,62,0); }
}

@keyframes gi-scroll-dot {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-16px); }
}

/* ============ HERO ============ */
.gi-hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 32px 120px;
}

.gi-hero__radial-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 42%, rgba(0,0,0,.62), rgba(0,0,0,.9) 68%, #000);
  pointer-events: none;
  display: none;
}

.gi-hero__gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.42) 34%, rgba(0,0,0,.55) 66%, #000);
  pointer-events: none;
	display: none;
}

.gi-hero__ghost {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%,-50%);
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: clamp(88px, 17vw, 300px);
  line-height: .8;
  letter-spacing: -.04em;
  color: #FFFFFF14;
  white-space: nowrap;
  pointer-events: none;
}

.gi-hero__since {
  position: absolute;
  top: 32px;
  right: 40px;
  z-index: 3;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}

.gi-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.gi-hero__title {
  margin: 28px 0 0;
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.gi-hero__title-accent {
  color: #FFC61A;
}

.gi-hero__desc {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.8;
  color: #C3C8CC;
  letter-spacing: -.01em;
}

.gi-hero__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
}

.gi-hero__stat {
  padding: 0 46px;
}

.gi-hero__stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -.02em;
}

.gi-hero__stat-value-accent {
  color: #FFC61A;
}

.gi-hero__stat-label {
  margin-top: 12px;
  font-size: 13px;
  color: #9CA1A6;
  letter-spacing: -.01em;
}

.gi-hero__stat-divider {
  width: 1px;
  background: rgba(255,255,255,.14);
}

/* ============ shimmer divider (재사용 컴포넌트) ============ */
.gi-divider {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.gi-divider--spaced {
  margin: 150px auto 0;
}

.gi-divider--pushed {
  top: 100px;
}

.gi-divider__line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,198,26,.28) 50%, transparent);
}

.gi-divider__sweep-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gi-divider__sweep {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 32%;
  background: linear-gradient(90deg, transparent, #FFC61A, transparent);
  animation: gi-shimmer-sweep 4s ease-in-out infinite;
}

.gi-divider__diamond {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: #FFC61A;
  box-shadow: 0 0 12px 2px rgba(255,198,26,.55);
}

/* ============ GLOBAL MOMENTUM ============ */
.gi-momentum {
  position: relative;
  padding: clamp(120px, 16vw, 200px) clamp(24px, 4vw, 64px);
}

.gi-momentum__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}

.gi-momentum__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .18em;
  color: #FFC61A;
  text-transform: uppercase;
}

.gi-momentum__eyebrow-line {
  width: 24px;
  height: 1px;
  background: #FFC61A;
  display: inline-block;
}

.gi-momentum__year {
  margin-top: 24px;
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 600;
  font-size: clamp(140px, 20vw, 260px);
  line-height: .85;
  letter-spacing: -.055em;
  background: linear-gradient(180deg, #fff 0%, #6b6b60 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gi-momentum__year-unit {
  font-size: .18em;
  vertical-align: top;
  color: #FFC61A;
  -webkit-text-fill-color: #FFC61A;
  /* font-family: 'JetBrains Mono', monospace; */
  letter-spacing: 0;
  margin-left: 8px;
  display: inline-block;
}

.gi-momentum__year-caption {
  margin-top: 8px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 12px;
  letter-spacing: .24em;
  color: #75756e;
  text-transform: uppercase;
}

.gi-momentum__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.2;
  letter-spacing: -.028em;
  text-wrap: balance;
}

.gi-momentum__title-accent {
  color: #FFC61A;
}

.gi-momentum__desc {
  margin-top: 32px;
  font-size: 17px;
  line-height: 1.85;
  color: #b4b4ac;
  max-width: 640px;
}

.gi-momentum__desc-strong {
  color: rgb(242,243,244);
  font-weight: 600;
}

.gi-momentum__timeline {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.gi-momentum__timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.gi-momentum__timeline-row--last {
  border-bottom: none;
}

.gi-momentum__timeline-year {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.01em;
}

.gi-momentum__timeline-desc {
  font-size: 15px;
  color: #b4b4ac;
  line-height: 1.55;
}

.gi-momentum__timeline-tag {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 10.5px;
  letter-spacing: .16em;
  color: #FFC61A;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(255,198,26,.28);
  border-radius: 100px;
  white-space: nowrap;
}

/* ============ GLOBAL PRESENCE ============ */
.gi-presence {
  position: relative;
  padding-top: clamp(100px, 14vw, 180px);
  border-top: 1px solid rgba(255,255,255,.09);
}

.gi-presence__head {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 20px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.gi-presence__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .18em;
  color: #FFC61A;
  text-transform: uppercase;
}

.gi-presence__eyebrow-line {
  width: 24px;
  height: 1px;
  background: #FFC61A;
  display: inline-block;
}

.gi-presence__title {
  margin-top: 16px;
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  /* letter-spacing: -.035em; */
}

.gi-presence__title-muted {
  color: #75756e;
}

.gi-presence__head-desc {
  margin: 0;
  font-size: 16px;
  color: #b4b4ac;
  line-height: 1.75;
  max-width: 900px;
  justify-self: end;
}

.gi-presence__feature {
  position: relative;
  width: 100%;
  height: clamp(460px, 70vh, 760px);
  overflow: hidden;
}

.gi-presence__feature-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gi-presence__feature-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.6) 55%, rgba(10,10,10,.96) 100%),
    linear-gradient(90deg, rgba(10,10,10,.4), transparent 40%);
}

.gi-presence__feature-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px clamp(24px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gi-presence__feature-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gi-presence__feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .16em;
  color: #0a0a0a;
  background: #FFC61A;
  padding: 8px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.gi-presence__feature-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(10,10,10);
  display: inline-block;
  animation: gi-pulse-dot 2s ease infinite;
}

.gi-presence__feature-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  justify-content: flex-start;
}

.gi-presence__feature-headline {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.4;
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
  max-width: 640px;
  text-wrap: balance;
}

.gi-presence__region-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gi-presence__region-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.gi-presence__region-row--last {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.gi-presence__region-name {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  letter-spacing: -.01em;
}

.gi-presence__region-value {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 14px;
  color: #b4b4ac;
}

.gi-presence__manufacture {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 4vw, 64px) 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.gi-presence__manufacture-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* aspect-ratio: 4 / 3; */
}
.gi-presence__manufacture-image a {display: block; width: 100%; height: 100%;}

.gi-presence__manufacture-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gi-presence__manufacture-image-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .14em;
  color: #fff;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}

.gi-presence__manufacture-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .18em;
  color: #FFC61A;
  text-transform: uppercase;
}

.gi-presence__manufacture-eyebrow-line {
  width: 24px;
  height: 1px;
  background: #FFC61A;
  display: inline-block;
}

.gi-presence__manufacture-title {
  margin-top: 25px;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: -.028em;
}

.gi-presence__manufacture-title-accent {
  color: #FFC61A;
}

.gi-presence__manufacture-desc {
  margin-top: 24px;
  font-size: 16px;
  color: #b4b4ac;
  line-height: 1.8;
  max-width: 800px;
}

/* ============ VALUE CHAIN ============ */
.gi-value-chain {
  position: relative;
  padding: clamp(140px, 18vw, 220px) clamp(24px, 4vw, 64px);
  background: linear-gradient(180deg, transparent, rgba(255,198,26,.03) 40%, transparent);
}

.gi-value-chain__logo {
  display: block;
  height: 102px;
  width: 312px;
  margin-bottom: 25px;
  object-fit: contain;
  object-position: left center;
}

.gi-value-chain__inner {
  max-width: 1720px;
  margin: 0 auto;
}

.gi-value-chain__head {
  display: block;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.gi-value-chain__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.15;
  letter-spacing: -.028em;
  text-wrap: balance;
}

.gi-value-chain__title-accent {
  color: #FFC61A;
}

.gi-value-chain__desc {
  margin: 0;
  font-size: 16px;
  color: #b4b4ac;
  line-height: 1.75;
  max-width: 570px;
  justify-self: end;
}

.gi-value-chain__steps-title {
	font-size: 3.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
	margin-bottom: 3rem;
}

.gi-value-chain__steps-wrap {position: relative;}
.gi-value-chain__steps-highlight {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 20%;
  background: #FFC61A;
}

.gi-value-chain__steps {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.gi-value-chain__step {
  border-right: 1px solid rgba(255,255,255,.09);
  position: relative;
  box-sizing: border-box;
	width: 20%;
	overflow: hidden;
}
.gi-value-chain__step .inner {
	border-top: 1px solid rgba(255,255,255,.16);
	border-bottom: 1px solid rgba(255,255,255,.16);
	padding: clamp(40px, 3vw, 64px) clamp(24px, 3vw, 40px);
	box-sizing: border-box;
	min-height: 340px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.gi-value-chain__step .inner:before {position: absolute; top: 0; left: 0; content: ''; width: 100%; height: 1px; background-color: #FFC61A; z-index: 1; opacity: 0; transition: all 0.4s;}
.gi-value-chain__step.active .inner:before {opacity: 1; }


.gi-value-chain__step--last {
  border-right: none;
}

.gi-value-chain__step-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75756e;
  border: 2px solid #0a0a0a;
  margin-top: -5px;
  z-index: 2;
  transition:all 0.4s;
}

.active .gi-value-chain__step-dot {
  background: #FFC61A;
  box-shadow: 0 0 0 4px rgba(255,198,26,.15);
}

.gi-value-chain__step-label {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 500;
  color: #75756e;
  text-transform: uppercase;
}

.gi-value-chain__step-title {
  margin-top: auto;
  font-weight: 800;
  font-size: clamp(2.8rem, 3.2rem, 3.2rem);
  line-height: 1;
  letter-spacing: -.035em;
  transition:all 0.4s;
}

.active .gi-value-chain__step-title {
  color: #FFC61A;
}

.gi-value-chain__step-subtitle {
  margin-top: 15px;
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .02em;
  color: #75756e;
  text-transform: uppercase;
}

.gi-value-chain__step-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.65;
  color: #b4b4ac;
  max-width: 280px;
}

.gi-value-chain__footer-row {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.gi-value-chain__footer-text {
  margin: 0;
  font-size: 15px;
  color: #b4b4ac;
  max-width: 1000px;
  line-height: 1.7;
}

.gi-value-chain__footer-badge {
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .16em;
  color: #0a0a0a;
  background: #FFC61A;
  padding: 10px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

/* ============ IMPACT PROOF ============ */
.gi-impact {
  padding: 90px 32px 0;
  text-align: center;
}

.gi-impact__title {
  margin: 0;
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 62px);
  line-height: 1.2;
  letter-spacing: .025em;
}

.gi-impact__title-muted {
  color: #75756e;
}

.gi-impact__subtitle {
  margin: 25px 0 0;
  font-weight: 800;
  font-size:42px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.gi-impact__subtitle-accent {
  color: #FFC61A;
}

.gi-impact-grid {
  max-width: 1440px;
  margin: 70px auto 0;
  padding: 0 32px;
}

.gi-impact-grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gi-impact-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 560px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.65);
}

.gi-impact-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gi-impact-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 22%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.96) 100%);
  pointer-events: none;
}

.gi-impact-card__index {
  position: absolute;
  top: 24px;
  right: 24px;
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: 90px;
  color: rgba(255,255,255,.16);
  line-height: 1;
}

.gi-impact-card__tag {
  position: absolute;
  left: 28px;
  top: 24px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 12px;
  letter-spacing: .1em;
  color: #FFC61A;
}

.gi-impact-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.gi-impact-card__stat {
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: 34px;
  color: #FFC61A;
  letter-spacing: -.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

.gi-impact-card__headline {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

.gi-impact-card__desc {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: #E6E8EA;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

/* ============ OUTRO ============ */
.gi-outro {
  position: relative;
  padding: clamp(140px, 20vw, 240px) clamp(24px, 4vw, 64px) clamp(80px, 10vw, 140px);
  text-align: center;
  overflow: hidden;
  top: 10px;
}

.gi-outro__ghost {
  position: absolute;
  right: -40px;
  top: 46%;
  transform: translateY(-50%);
  /* font-family: 'Space Grotesk', sans-serif; */
  font-weight: 700;
  font-size: clamp(200px, 38vw, 560px);
  line-height: .8;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,198,26,.06);
  pointer-events: none;
  white-space: nowrap;
}

.gi-outro__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gi-outro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .24em;
  color: #FFC61A;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.gi-outro__eyebrow-line {
  width: 36px;
  height: 1px;
  background: #FFC61A;
  display: inline-block;
}

.gi-outro__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 1.2;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.gi-outro__title-accent {
  color: #FFC61A;
}

.gi-outro__desc {
  margin: 36px auto 0;
  max-width: 640px;
  font-size: 17px;
  color: #b4b4ac;
  line-height: 1.8;
}

/* ============ 페이지 챕터 바 ============ */
.gi-page-footer {
  padding: 40px clamp(24px, 4vw, 64px);
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* font-family: 'JetBrains Mono', monospace; */
  font-size: 11px;
  letter-spacing: .14em;
  color: #75756e;
  text-transform: uppercase;
}


@media all and ( max-width: 800px ){
	.gi-hero {padding: 10rem var(--area-padding) 0; min-height: 0;}
	.gi-hero__stat-value {font-size: 38px;}
	
	.gi-momentum {padding: 10rem var(--area-padding) 0;}
	.gi-momentum__grid {display: block;}
	.gi-momentum__right {margin-top: 3rem;}
	
	.gi-presence {padding-top: 10rem;}
	.gi-presence__head {display: block; padding: 0 var(--area-padding);}
	.gi-presence__head-desc {max-width: none; justify-self:start; margin-top: 2rem;}
	
	.gi-presence__feature-inner { padding: 40px var(--area-padding);}
	.gi-presence__feature-bottom {display: block;}
	.gi-presence__feature-headline {margin-bottom: 2rem;}
	.gi-presence__region-list {gap:0}
	.gi-presence__manufacture {display: block;}
	.gi-presence__manufacture-title {font-size: 3.2rem;}
	.gi-presence__manufacture-image {margin-bottom: 2rem;}
	
	.gi-value-chain {padding: 10rem var(--area-padding);}
	.gi-value-chain__logo {margin: 0 0 25px 0;}
	.gi-value-chain__head {display: block;}
	.gi-value-chain__desc {max-width: none; justify-self:start; margin-top: 2rem;}
	.gi-value-chain__steps {}
	.gi-value-chain__step {width: 100%;}
	.gi-value-chain__step-label {margin-bottom: 2rem;}
	.gi-value-chain__step .inner {min-height: 30rem; border-bottom: 0;}
	.gi-value-chain__step.gi-value-chain__step--last .inner {border-bottom: 1px solid rgba(255, 255, 255, .16);}
	.gi-value-chain__step.gi-value-chain__step--last {border-bottom: 0;}
	.gi-value-chain__steps-highlight {display: none;}
	.gi-value-chain__step-title {font-size: 30px;}
	
	.gi-divider--spaced {margin-top: 0;}
	.gi-impact__subtitle {font-size: 3.2rem;}
	.gi-impact-grid__row {grid-template-columns: repeat(1, 1fr);}
	.gi-impact-card {height: 38rem;}
	.gi-impact {padding: 0 var(--area-padding);}
	
	.gi-outro {padding: 10rem var(--area-padding);}
}


