@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --green-planet-blue: #0683c9;
  --green-planet-blue-deep: #00629d;
  --green-planet-teal: #17a8a4;
  --green-planet-green: #4bdc78;
  --green-planet-green-deep: #15894e;
  --green-planet-ink: #082a32;
  --green-planet-ink-soft: #315159;
  --green-planet-mist: #eef8f5;
  --green-planet-cloud: #f7fbfa;
  --green-planet-white: #ffffff;
  --green-planet-line: rgba(8, 42, 50, 0.12);
  --green-planet-shadow: 0 28px 80px rgba(4, 57, 70, 0.14);
  --green-planet-shadow-soft: 0 16px 42px rgba(4, 57, 70, 0.1);
  --green-planet-gradient: linear-gradient(118deg, var(--green-planet-blue) 0%, var(--green-planet-teal) 48%, var(--green-planet-green) 100%);
  --green-planet-radius-large: 34px;
  --green-planet-radius-medium: 22px;
  --green-planet-radius-small: 14px;
  --green-planet-container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--green-planet-ink);
  background: var(--green-planet-white);
  font-family: 'Alexandria', sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

html[lang='en'] body {
  font-family: 'Manrope', 'Alexandria', sans-serif;
  line-height: 1.7;
}

body.green-planet-menu-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--green-planet-white);
  background: var(--green-planet-teal);
}

.green-planet-shell {
  width: var(--green-planet-container);
  margin-inline: auto;
}

.green-planet-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 94px;
  background: var(--green-planet-white);
  border-bottom: 1px solid var(--green-planet-line);
  box-shadow: 0 8px 28px rgba(5, 58, 69, 0.08);
  transition: height 280ms ease, box-shadow 280ms ease;
}

.green-planet-header-scrolled,
.green-planet-page-header {
  height: 78px;
  box-shadow: 0 12px 34px rgba(5, 58, 69, 0.11);
}

.green-planet-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.green-planet-brand {
  position: relative;
  z-index: 102;
  flex: 0 0 auto;
}

.green-planet-brand img {
  width: 220px;
  max-height: 58px;
  object-fit: contain;
}

.green-planet-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline-start: auto;
}

.green-planet-navigation-link {
  position: relative;
  padding: 9px 0;
  color: var(--green-planet-ink);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.green-planet-navigation-link::after {
  position: absolute;
  inset-inline: 0;
  bottom: 3px;
  height: 2px;
  content: '';
  background: var(--green-planet-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.green-planet-navigation-link:hover::after,
.green-planet-navigation-link.green-planet-navigation-current::after {
  transform: scaleX(1);
}

.green-planet-header-actions {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: center;
  gap: 10px;
}

.green-planet-language-button,
.green-planet-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1px solid rgba(8, 42, 50, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.green-planet-language-button {
  min-width: 58px;
  padding: 0 16px;
  color: var(--green-planet-blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.green-planet-language-button:hover,
.green-planet-menu-button:hover {
  border-color: var(--green-planet-teal);
  background: var(--green-planet-mist);
  transform: translateY(-2px);
}

.green-planet-menu-button {
  display: none;
  width: 42px;
  padding: 0;
}

.green-planet-menu-line {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--green-planet-ink);
  transition: transform 250ms ease, opacity 250ms ease;
}

.green-planet-menu-line:first-child {
  transform: translateY(-4px);
}

.green-planet-menu-line:last-child {
  transform: translateY(4px);
}

.green-planet-menu-active .green-planet-menu-line:first-child {
  transform: rotate(45deg);
}

.green-planet-menu-active .green-planet-menu-line:last-child {
  transform: rotate(-45deg);
}

.green-planet-home-hero {
  position: relative;
  height: calc(100svh - 94px);
  min-height: 620px;
  max-height: 920px;
  margin-top: 94px;
  overflow: hidden;
  background: var(--green-planet-ink);
}

.green-planet-home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: '';
  background: linear-gradient(180deg, rgba(2, 28, 37, 0.06) 0%, rgba(2, 28, 37, 0) 55%, rgba(2, 28, 37, 0.24) 100%);
  pointer-events: none;
}

.green-planet-home-slider,
.green-planet-home-slide {
  position: absolute;
  inset: 0;
}

.green-planet-home-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 950ms ease, transform 6500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
}

.green-planet-home-slide-current {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.green-planet-home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
}

.green-planet-home-slide:nth-child(2) img {
  object-position: center 42%;
}

.green-planet-home-slider-dots {
  position: absolute;
  right: 50%;
  bottom: 30px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(3, 38, 47, 0.24);
  backdrop-filter: blur(10px);
  transform: translateX(50%);
}

html[dir='ltr'] .green-planet-home-slider-dots {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.green-planet-home-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 240ms ease, border-radius 240ms ease, background-color 240ms ease;
}

.green-planet-home-slider-dot-current {
  width: 30px;
  border-radius: 999px;
  background: var(--green-planet-white);
}

.green-planet-section {
  position: relative;
  padding: 118px 0;
}

.green-planet-section-soft {
  background: var(--green-planet-cloud);
}

.green-planet-section-dark {
  color: var(--green-planet-white);
  background: var(--green-planet-ink);
}

.green-planet-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.green-planet-section-copy {
  max-width: 610px;
}

.green-planet-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-planet-blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.green-planet-eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 3px;
  content: '';
  background: var(--green-planet-gradient);
}

.green-planet-section-dark .green-planet-eyebrow {
  color: var(--green-planet-green);
}

.green-planet-heading-large,
.green-planet-heading-medium,
.green-planet-heading-small {
  margin: 0;
  color: inherit;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.green-planet-heading-large {
  font-size: clamp(2.1rem, 4.1vw, 4.25rem);
}

.green-planet-heading-medium {
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
}

.green-planet-heading-small {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

html[lang='en'] .green-planet-heading-large,
html[lang='en'] .green-planet-heading-medium,
html[lang='en'] .green-planet-heading-small {
  letter-spacing: -0.045em;
}

.green-planet-paragraph {
  margin: 24px 0 0;
  color: var(--green-planet-ink-soft);
  font-size: 1rem;
  line-height: 2;
}

.green-planet-section-dark .green-planet-paragraph {
  color: rgba(255, 255, 255, 0.72);
}

.green-planet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--green-planet-blue-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.green-planet-link-icon {
  width: 20px;
  height: 20px;
  transition: transform 220ms ease;
}

html[dir='rtl'] .green-planet-link-icon {
  transform: rotate(180deg);
}

.green-planet-link:hover .green-planet-link-icon {
  transform: translateX(5px);
}

html[dir='rtl'] .green-planet-link:hover .green-planet-link-icon {
  transform: rotate(180deg) translateX(5px);
}

.green-planet-intro-visual {
  position: relative;
  min-height: 500px;
}

.green-planet-intro-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--green-planet-radius-large);
  box-shadow: var(--green-planet-shadow);
}

.green-planet-intro-photo:first-child {
  inset: 0 12% 12% 0;
}

html[dir='rtl'] .green-planet-intro-photo:first-child {
  inset: 0 0 12% 12%;
}

.green-planet-intro-photo:last-child {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 52%;
  border: 8px solid var(--green-planet-white);
  border-radius: 48% 48% 18px 48%;
}

html[dir='rtl'] .green-planet-intro-photo:last-child {
  right: auto;
  left: 0;
  border-radius: 48% 48% 48% 18px;
}

.green-planet-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-planet-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.green-planet-section-heading-copy {
  max-width: 760px;
}

.green-planet-section-heading .green-planet-paragraph {
  max-width: 540px;
  margin-top: 0;
}

.green-planet-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.green-planet-service-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--green-planet-line);
  border-radius: var(--green-planet-radius-medium);
  background: var(--green-planet-white);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.green-planet-service-card::before {
  position: absolute;
  top: -65px;
  inset-inline-end: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: '';
  background: var(--green-planet-gradient);
  opacity: 0.1;
  transition: transform 400ms ease, opacity 400ms ease;
}

.green-planet-service-card:hover {
  border-color: rgba(23, 168, 164, 0.36);
  box-shadow: var(--green-planet-shadow-soft);
  transform: translateY(-8px);
}

.green-planet-service-card:hover::before {
  opacity: 0.17;
  transform: scale(1.35);
}

.green-planet-service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 56px;
  border-radius: 18px;
  color: var(--green-planet-blue-deep);
  background: var(--green-planet-mist);
}

.green-planet-service-icon svg {
  width: 28px;
  height: 28px;
}

.green-planet-service-card h3 {
  margin: 0 0 14px;
  font-size: 1.14rem;
  line-height: 1.55;
}

.green-planet-service-card p {
  margin: 0;
  color: var(--green-planet-ink-soft);
  font-size: 0.88rem;
  line-height: 1.9;
}

.green-planet-marquee {
  overflow: hidden;
  padding: 20px 0;
  color: var(--green-planet-white);
  background: var(--green-planet-gradient);
}

.green-planet-marquee-track {
  display: flex;
  width: max-content;
  animation: green-planet-marquee-run 28s linear infinite;
}

.green-planet-marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-inline: 24px;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 600;
  white-space: nowrap;
}

.green-planet-marquee-item::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: '';
  background: rgba(255, 255, 255, 0.55);
}

.green-planet-project-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--green-planet-radius-large);
  background: var(--green-planet-ink);
  box-shadow: var(--green-planet-shadow);
}

.green-planet-project-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.green-planet-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-planet-project-media::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(8, 42, 50, 0) 55%, rgba(8, 42, 50, 0.82) 100%);
}

html[dir='rtl'] .green-planet-project-media::after {
  background: linear-gradient(270deg, rgba(8, 42, 50, 0) 55%, rgba(8, 42, 50, 0.82) 100%);
}

.green-planet-project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 86px);
  color: var(--green-planet-white);
}

.green-planet-project-copy .green-planet-paragraph {
  color: rgba(255, 255, 255, 0.72);
}

.green-planet-project-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.green-planet-project-stat {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.green-planet-project-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-planet-green);
  font-size: 1.9rem;
  line-height: 1.2;
}

.green-planet-project-stat span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.green-planet-hierarchy-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.green-planet-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
}

.green-planet-hierarchy-level {
  display: grid;
  place-items: center;
  height: 68px;
  color: var(--green-planet-white);
  border-radius: 10px;
  background: var(--green-planet-gradient);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(5, 100, 118, 0.12);
}

.green-planet-hierarchy-level:nth-child(1) { width: 100%; }
.green-planet-hierarchy-level:nth-child(2) { width: 82%; opacity: 0.92; }
.green-planet-hierarchy-level:nth-child(3) { width: 64%; opacity: 0.84; }
.green-planet-hierarchy-level:nth-child(4) { width: 47%; opacity: 0.76; }
.green-planet-hierarchy-level:nth-child(5) { width: 30%; opacity: 0.66; }

.green-planet-hierarchy-level + .green-planet-hierarchy-level {
  margin-top: 8px;
}

.green-planet-callout {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 100px);
  border-radius: var(--green-planet-radius-large);
  color: var(--green-planet-white);
  background: var(--green-planet-gradient);
  box-shadow: var(--green-planet-shadow);
}

.green-planet-callout::before,
.green-planet-callout::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: '';
}

.green-planet-callout::before {
  top: -230px;
  inset-inline-end: -120px;
  width: 520px;
  height: 520px;
}

.green-planet-callout::after {
  right: -60px;
  bottom: -310px;
  width: 600px;
  height: 600px;
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.04);
}

.green-planet-callout-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.green-planet-callout .green-planet-paragraph {
  color: rgba(255, 255, 255, 0.82);
}

.green-planet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.green-planet-button-light {
  color: var(--green-planet-ink);
  background: var(--green-planet-white);
}

.green-planet-button-outline {
  color: var(--green-planet-white);
  border-color: rgba(255, 255, 255, 0.42);
}

.green-planet-button-gradient {
  color: var(--green-planet-white);
  background: var(--green-planet-gradient);
  box-shadow: 0 14px 28px rgba(6, 131, 201, 0.2);
}

.green-planet-button:hover {
  transform: translateY(-3px);
}

.green-planet-button-icon {
  width: 20px;
  height: 20px;
}

html[dir='rtl'] .green-planet-button-icon {
  transform: rotate(180deg);
}

.green-planet-page-hero {
  position: relative;
  padding: 170px 0 100px;
  overflow: hidden;
  background: var(--green-planet-cloud);
}

.green-planet-page-hero::before {
  position: absolute;
  top: -160px;
  inset-inline-end: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: '';
  background: radial-gradient(circle at 30% 30%, rgba(75, 220, 120, 0.32), rgba(6, 131, 201, 0.08) 58%, transparent 70%);
}

.green-planet-page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 70px;
}

.green-planet-page-hero-copy {
  max-width: 620px;
}

.green-planet-page-hero-media {
  position: relative;
  min-height: 520px;
}

.green-planet-page-hero-main {
  position: absolute;
  inset: 0 8% 6% 0;
  overflow: hidden;
  border-radius: 44% 22px 44% 44%;
  box-shadow: var(--green-planet-shadow);
}

html[dir='rtl'] .green-planet-page-hero-main {
  inset: 0 0 6% 8%;
  border-radius: 22px 44% 44% 44%;
}

.green-planet-page-hero-main img,
.green-planet-page-hero-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-planet-page-hero-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 40%;
  overflow: hidden;
  border: 8px solid var(--green-planet-cloud);
  border-radius: 50% 50% 18px 50%;
  box-shadow: var(--green-planet-shadow-soft);
}

html[dir='rtl'] .green-planet-page-hero-mini {
  right: auto;
  left: 0;
  border-radius: 50% 50% 50% 18px;
}

.green-planet-story-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.green-planet-story-media {
  position: relative;
  min-height: 610px;
}

.green-planet-story-photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--green-planet-radius-large);
  box-shadow: var(--green-planet-shadow-soft);
}

.green-planet-story-photo:first-child {
  inset: 0 12% 18% 0;
}

html[dir='rtl'] .green-planet-story-photo:first-child {
  inset: 0 0 18% 12%;
}

.green-planet-story-photo:last-child {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 48%;
  border: 8px solid var(--green-planet-white);
}

html[dir='rtl'] .green-planet-story-photo:last-child {
  right: auto;
  left: 0;
}

.green-planet-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-planet-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.green-planet-principle-card {
  padding: 36px;
  border: 1px solid var(--green-planet-line);
  border-radius: var(--green-planet-radius-medium);
  background: var(--green-planet-white);
}

.green-planet-principle-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 14px;
  color: var(--green-planet-white);
  background: var(--green-planet-gradient);
  font-weight: 700;
}

.green-planet-principle-card p {
  margin: 12px 0 0;
  color: var(--green-planet-ink-soft);
  font-size: 0.9rem;
}

.green-planet-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--green-planet-line);
  border-bottom: 1px solid var(--green-planet-line);
}

.green-planet-value {
  padding: 36px 22px;
  border-inline-end: 1px solid var(--green-planet-line);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.green-planet-value:last-child {
  border-inline-end: 0;
}

.green-planet-service-detail-list {
  display: grid;
  gap: 24px;
}

.green-planet-service-detail {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--green-planet-line);
  border-radius: var(--green-planet-radius-large);
  background: var(--green-planet-white);
  box-shadow: var(--green-planet-shadow-soft);
}

.green-planet-service-detail:nth-child(even) .green-planet-service-detail-media {
  order: 2;
}

.green-planet-service-detail-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.green-planet-service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.green-planet-service-detail:hover .green-planet-service-detail-media img {
  transform: scale(1.045);
}

.green-planet-service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
}

.green-planet-service-detail-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 18px;
  color: var(--green-planet-blue-deep);
  background: var(--green-planet-mist);
}

.green-planet-service-detail-icon svg {
  width: 29px;
  height: 29px;
}

.green-planet-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.green-planet-process-card {
  position: relative;
  padding: 30px;
  border-radius: var(--green-planet-radius-medium);
  color: var(--green-planet-white);
  background: rgba(255, 255, 255, 0.06);
}

.green-planet-process-card::before {
  display: block;
  margin-bottom: 38px;
  color: var(--green-planet-green);
  content: attr(data-green-planet-step);
  font-size: 1.5rem;
  font-weight: 700;
}

.green-planet-process-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

.green-planet-project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.green-planet-project-feature-media {
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--green-planet-radius-large);
  box-shadow: var(--green-planet-shadow);
}

.green-planet-project-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-planet-project-feature-copy {
  padding: clamp(32px, 4vw, 60px);
}

.green-planet-project-feature-copy .green-planet-paragraph + .green-planet-paragraph {
  margin-top: 16px;
}

.green-planet-project-feature-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.green-planet-project-feature-stat {
  padding: 24px;
  border-radius: 18px;
  background: var(--green-planet-mist);
}

.green-planet-project-feature-stat strong {
  display: block;
  color: var(--green-planet-blue-deep);
  font-size: 2rem;
  line-height: 1.2;
}

.green-planet-project-feature-stat span {
  color: var(--green-planet-ink-soft);
  font-size: 0.8rem;
}

.green-planet-project-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(23, 168, 164, 0.22);
  border-radius: 16px;
  color: var(--green-planet-green-deep);
  background: rgba(75, 220, 120, 0.08);
  font-size: 0.84rem;
}

.green-planet-project-status svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 3px;
}

.green-planet-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.green-planet-project-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--green-planet-radius-large);
}

.green-planet-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.green-planet-project-card::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, transparent 34%, rgba(4, 31, 39, 0.92) 100%);
}

.green-planet-project-card:hover img {
  transform: scale(1.06);
}

.green-planet-project-card-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 34px;
  color: var(--green-planet-white);
}

.green-planet-project-card-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.green-planet-research-hero .green-planet-page-hero-main {
  border-radius: 22px 44% 22px 44%;
}

.green-planet-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.green-planet-study-card {
  padding: 34px;
  border: 1px solid var(--green-planet-line);
  border-radius: var(--green-planet-radius-medium);
  background: var(--green-planet-white);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.green-planet-study-card:hover {
  box-shadow: var(--green-planet-shadow-soft);
  transform: translateY(-6px);
}

.green-planet-study-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  border-radius: 16px;
  color: var(--green-planet-blue-deep);
  background: var(--green-planet-mist);
}

.green-planet-study-icon svg {
  width: 25px;
  height: 25px;
}

.green-planet-study-card p {
  margin: 12px 0 0;
  color: var(--green-planet-ink-soft);
  font-size: 0.86rem;
}

.green-planet-contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
}

.green-planet-contact-panel,
.green-planet-form-panel {
  border: 1px solid var(--green-planet-line);
  border-radius: var(--green-planet-radius-large);
  background: var(--green-planet-white);
  box-shadow: var(--green-planet-shadow-soft);
}

.green-planet-contact-panel {
  overflow: hidden;
}

.green-planet-contact-photo {
  height: 290px;
}

.green-planet-contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.green-planet-contact-details {
  padding: 38px;
}

.green-planet-contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--green-planet-line);
}

.green-planet-contact-item:last-child {
  border-bottom: 0;
}

.green-planet-contact-item-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--green-planet-blue-deep);
  background: var(--green-planet-mist);
}

.green-planet-contact-item-icon svg {
  width: 23px;
  height: 23px;
}

.green-planet-contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.83rem;
}

.green-planet-contact-item span,
.green-planet-contact-item a {
  color: var(--green-planet-ink-soft);
  font-size: 0.84rem;
}

.green-planet-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--green-planet-blue-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.green-planet-map-link svg {
  width: 20px;
  height: 20px;
}

.green-planet-form-panel {
  padding: clamp(36px, 5vw, 64px);
}

.green-planet-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.green-planet-form-field {
  display: grid;
  gap: 8px;
}

.green-planet-form-field-wide {
  grid-column: 1 / -1;
}

.green-planet-form-field label {
  color: var(--green-planet-ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.green-planet-form-field input,
.green-planet-form-field textarea {
  width: 100%;
  border: 1px solid var(--green-planet-line);
  border-radius: 14px;
  color: var(--green-planet-ink);
  background: var(--green-planet-cloud);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.green-planet-form-field input {
  height: 54px;
  padding: 0 16px;
}

.green-planet-form-field textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.green-planet-form-field input:focus,
.green-planet-form-field textarea:focus {
  border-color: var(--green-planet-teal);
  background: var(--green-planet-white);
  box-shadow: 0 0 0 4px rgba(23, 168, 164, 0.1);
}

.green-planet-form-submit {
  border: 0;
  cursor: pointer;
}

.green-planet-form-note {
  margin: 14px 0 0;
  color: var(--green-planet-ink-soft);
  font-size: 0.72rem;
}

.green-planet-footer {
  position: relative;
  overflow: hidden;
  padding: 78px 0 0;
  color: var(--green-planet-white);
  background: var(--green-planet-ink);
}

.green-planet-footer::before {
  position: absolute;
  top: -380px;
  inset-inline-end: -280px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(75, 220, 120, 0.1);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 70px rgba(75, 220, 120, 0.025), 0 0 0 140px rgba(6, 131, 201, 0.02);
}

.green-planet-footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 70px;
  padding-bottom: 60px;
}

.green-planet-footer-brand img {
  width: 240px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.green-planet-footer-summary {
  max-width: 460px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.green-planet-footer-heading {
  margin: 0 0 22px;
  color: var(--green-planet-green);
  font-size: 0.85rem;
}

.green-planet-footer-links {
  display: grid;
  gap: 12px;
}

.green-planet-footer-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  transition: color 200ms ease, transform 200ms ease;
}

.green-planet-footer-link:hover {
  color: var(--green-planet-white);
  transform: translateX(4px);
}

html[dir='rtl'] .green-planet-footer-link:hover {
  transform: translateX(-4px);
}

.green-planet-footer-contact {
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.green-planet-footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.green-planet-footer-contact-line svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 4px;
  color: var(--green-planet-green);
}

.green-planet-footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.green-planet-footer-credit {
  color: rgba(255, 255, 255, 0.78);
}

.green-planet-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.green-planet-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.green-planet-reveal-delay-one { transition-delay: 100ms; }
.green-planet-reveal-delay-two { transition-delay: 180ms; }
.green-planet-reveal-delay-three { transition-delay: 260ms; }






@keyframes green-planet-marquee-run {
  to { transform: translateX(-50%); }
}

html[dir='rtl'] .green-planet-marquee-track {
  animation-direction: reverse;
}

@media (max-width: 1080px) {
  :root {
    --green-planet-container: min(100% - 32px, 980px);
  }

  .green-planet-navigation {
    gap: 17px;
  }

  .green-planet-navigation-link {
    font-size: 0.79rem;
  }

  .green-planet-services-grid,
  .green-planet-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .green-planet-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .green-planet-project-showcase {
    grid-template-columns: 1fr;
  }

  .green-planet-project-media {
    min-height: 480px;
  }

  .green-planet-project-media::after {
    background: linear-gradient(180deg, transparent 55%, rgba(8, 42, 50, 0.82) 100%);
  }

  html[dir='rtl'] .green-planet-project-media::after {
    background: linear-gradient(180deg, transparent 55%, rgba(8, 42, 50, 0.82) 100%);
  }

  .green-planet-page-hero-grid {
    gap: 42px;
  }

  .green-planet-footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .green-planet-header {
    height: 78px;
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--green-planet-line);
    backdrop-filter: blur(16px);
  }

  .green-planet-brand img {
    width: 185px;
  }

  .green-planet-menu-button {
    position: relative;
    display: inline-flex;
  }

  .green-planet-navigation {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 110px 32px 50px;
    background: rgba(247, 251, 250, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
  }

  .green-planet-navigation-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .green-planet-navigation-link {
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 600;
  }



  .green-planet-section {
    padding: 90px 0;
  }

  .green-planet-section-grid,
  .green-planet-story-grid,
  .green-planet-hierarchy-layout,
  .green-planet-page-hero-grid,
  .green-planet-project-feature,
  .green-planet-contact-grid {
    grid-template-columns: 1fr;
  }

  .green-planet-section-grid,
  .green-planet-story-grid,
  .green-planet-hierarchy-layout {
    gap: 56px;
  }

  .green-planet-intro-visual {
    min-height: 520px;
  }

  .green-planet-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .green-planet-section-heading .green-planet-paragraph {
    margin-top: 0;
  }

  .green-planet-page-hero {
    padding: 140px 0 80px;
  }

  .green-planet-page-hero-media {
    min-height: 510px;
  }

  .green-planet-principles-grid {
    grid-template-columns: 1fr;
  }

  .green-planet-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .green-planet-value:nth-child(2) {
    border-inline-end: 0;
  }

  .green-planet-value:nth-child(-n + 2) {
    border-bottom: 1px solid var(--green-planet-line);
  }

  .green-planet-service-detail,
  .green-planet-service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .green-planet-service-detail:nth-child(even) .green-planet-service-detail-media {
    order: 0;
  }

  .green-planet-service-detail-media {
    min-height: 390px;
  }

  .green-planet-project-feature-media {
    min-height: 540px;
  }

  .green-planet-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .green-planet-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --green-planet-container: calc(100% - 28px);
    --green-planet-radius-large: 26px;
    --green-planet-radius-medium: 18px;
  }

  .green-planet-header-inner {
    gap: 12px;
  }

  .green-planet-brand img {
    width: 158px;
  }

  .green-planet-language-button {
    min-width: 52px;
    height: 40px;
    padding: 0 12px;
  }

  .green-planet-menu-button {
    width: 40px;
    height: 40px;
  }






  .green-planet-section {
    padding: 74px 0;
  }

  .green-planet-heading-large {
    font-size: clamp(2rem, 10.2vw, 3rem);
  }

  .green-planet-heading-medium {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .green-planet-paragraph {
    font-size: 0.92rem;
    line-height: 1.95;
  }

  .green-planet-intro-visual {
    min-height: 430px;
  }

  .green-planet-intro-photo:first-child {
    inset: 0 7% 12% 0;
  }

  html[dir='rtl'] .green-planet-intro-photo:first-child {
    inset: 0 0 12% 7%;
  }

  .green-planet-intro-photo:last-child {
    width: 50%;
    height: 46%;
    border-width: 5px;
  }

  .green-planet-services-grid,
  .green-planet-study-grid,
  .green-planet-projects-grid,
  .green-planet-process-grid {
    grid-template-columns: 1fr;
  }

  .green-planet-service-card {
    min-height: auto;
    padding: 28px;
  }

  .green-planet-service-icon {
    margin-bottom: 38px;
  }

  .green-planet-project-media {
    min-height: 390px;
  }

  .green-planet-project-copy {
    padding: 34px 24px 42px;
  }

  .green-planet-project-stats,
  .green-planet-project-feature-stats {
    grid-template-columns: 1fr 1fr;
  }

  .green-planet-project-stat,
  .green-planet-project-feature-stat {
    padding: 17px;
  }

  .green-planet-project-stat strong,
  .green-planet-project-feature-stat strong {
    font-size: 1.55rem;
  }

  .green-planet-hierarchy-level {
    height: 58px;
    font-size: 0.78rem;
  }

  .green-planet-callout {
    padding: 46px 26px;
  }

  .green-planet-page-hero {
    padding: 122px 0 64px;
  }

  .green-planet-page-hero-grid {
    gap: 42px;
  }

  .green-planet-page-hero-media {
    min-height: 410px;
  }

  .green-planet-page-hero-main {
    inset: 0 5% 7% 0;
  }

  html[dir='rtl'] .green-planet-page-hero-main {
    inset: 0 0 7% 5%;
  }

  .green-planet-page-hero-mini {
    width: 44%;
    height: 38%;
    border-width: 5px;
  }

  .green-planet-story-media {
    min-height: 450px;
  }

  .green-planet-values {
    grid-template-columns: 1fr;
  }

  .green-planet-value,
  .green-planet-value:nth-child(2) {
    border-inline-end: 0;
    border-bottom: 1px solid var(--green-planet-line);
  }

  .green-planet-value:last-child {
    border-bottom: 0;
  }

  .green-planet-service-detail-media {
    min-height: 290px;
  }

  .green-planet-service-detail-copy {
    padding: 34px 25px 40px;
  }

  .green-planet-project-feature-media {
    min-height: 430px;
  }

  .green-planet-project-feature-copy {
    padding: 24px 0;
  }

  .green-planet-project-card {
    min-height: 390px;
  }

  .green-planet-contact-details,
  .green-planet-form-panel {
    padding: 28px 22px;
  }

  .green-planet-form-grid {
    grid-template-columns: 1fr;
  }

  .green-planet-form-field-wide {
    grid-column: auto;
  }

  .green-planet-footer {
    padding-top: 60px;
  }

  .green-planet-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .green-planet-footer-brand {
    grid-column: auto;
  }

  .green-planet-footer-brand img {
    width: 210px;
  }

  .green-planet-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}


@media (max-width: 900px) {
  .green-planet-home-hero {
    height: calc(100svh - 78px);
    min-height: 560px;
    margin-top: 78px;
  }
}

@media (max-width: 640px) {
  .green-planet-home-hero {
    height: min(76svh, 680px);
    min-height: 500px;
  }

  .green-planet-home-slide:first-child img {
    object-position: 58% center;
  }

  .green-planet-home-slide:nth-child(2) img {
    object-position: 58% center;
  }

  .green-planet-home-slider-dots {
    bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Green Planet refined corporate header and motion layer */
.green-planet-header {
  height: 118px;
  overflow: visible;
  border-bottom: 0;
  box-shadow: 0 14px 42px rgba(4, 57, 70, 0.09);
  transition: height 320ms ease, box-shadow 320ms ease;
}
.green-planet-header::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(6,131,201,.32), rgba(75,220,120,.32), transparent);
}
.green-planet-header-utility {
  height: 34px;
  overflow: hidden;
  color: #fff;
  background: var(--green-planet-gradient);
  transition: height 320ms ease, opacity 260ms ease;
}
.green-planet-header-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  gap: 20px;
}
.green-planet-header-utility-contact,
.green-planet-header-socials,
.green-planet-footer-socials,
.green-planet-contact-socials {
  display: flex;
  align-items: center;
  gap: 9px;
}
.green-planet-header-utility-contact { gap: 20px; }
.green-planet-header-utility-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  line-height: 1;
}
.green-planet-header-utility-contact svg { width: 15px; height: 15px; }
.green-planet-header-social-link {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  transition: transform 200ms ease, background 200ms ease;
}
.green-planet-header-social-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.22); }
.green-planet-header-social-link svg { width: 14px; height: 14px; }
.green-planet-header-inner { height: 84px; gap: 24px; }
.green-planet-header-scrolled { height: 82px; box-shadow: 0 16px 44px rgba(4,57,70,.13); }
.green-planet-header-scrolled .green-planet-header-utility { height: 0; opacity: 0; }
.green-planet-header-scrolled .green-planet-header-inner { height: 82px; }
.green-planet-brand img { width: 198px; transition: width 300ms ease, transform 300ms ease; }
.green-planet-brand:hover img { transform: translateY(-2px); }
.green-planet-navigation { gap: 7px; padding: 5px; border: 1px solid rgba(8,42,50,.07); border-radius: 999px; background: rgba(238,248,245,.65); }
.green-planet-navigation-link { padding: 8px 14px; border-radius: 999px; font-size: .79rem; transition: color 220ms ease, background 220ms ease, transform 220ms ease; }
.green-planet-navigation-link::after { display: none; }
.green-planet-navigation-link:hover { color: var(--green-planet-blue-deep); background: rgba(255,255,255,.92); transform: translateY(-1px); }
.green-planet-navigation-link.green-planet-navigation-current { color: #fff; background: var(--green-planet-gradient); box-shadow: 0 8px 20px rgba(6,131,201,.18); }
.green-planet-header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-planet-gradient);
  box-shadow: 0 10px 24px rgba(6,131,201,.2);
  font-size: .72rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.green-planet-header-call strong { font-size: .88rem; letter-spacing: .03em; }
.green-planet-header-call:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(6,131,201,.27); }
.green-planet-scroll-progress { position: absolute; inset: auto 0 0; height: 3px; overflow: hidden; }
.green-planet-scroll-progress span { display: block; width: 0; height: 100%; background: var(--green-planet-gradient); box-shadow: 0 0 16px rgba(75,220,120,.5); }
.green-planet-home-hero { height: calc(100svh - 118px); margin-top: 118px; min-height: 610px; }
.green-planet-home-hero::before { z-index: 2; background: linear-gradient(110deg, rgba(0,72,111,.38), rgba(10,141,157,.08) 48%, rgba(51,205,112,.3)); mix-blend-mode: multiply; }
.green-planet-home-hero::after { position: absolute; inset: 0; z-index: 2; content: ''; background: linear-gradient(180deg, rgba(4,30,38,.02), rgba(4,30,38,.22)); pointer-events: none; }
.green-planet-home-hero-mesh { position: absolute; z-index: 3; inset: -35% auto auto -11%; width: 48vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(75,220,120,.025); pointer-events: none; animation: green-planet-mesh-drift 14s ease-in-out infinite alternate; }
html[dir='rtl'] .green-planet-home-hero-mesh { left: auto; right: -11%; }
.green-planet-home-hero-glow { position: absolute; z-index: 3; right: 8%; bottom: 12%; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(75,220,120,.3), rgba(6,131,201,.08) 52%, transparent 72%); filter: blur(4px); pointer-events: none; animation: green-planet-glow-pulse 5s ease-in-out infinite; }
.green-planet-home-slide img { filter: saturate(1.08) contrast(1.05); }
.green-planet-home-slide-current img { animation: green-planet-hero-pan 7s ease-out both; }
.green-planet-home-slider-dots { bottom: 28px; z-index: 5; background: rgba(3,38,47,.28); box-shadow: 0 10px 30px rgba(0,0,0,.14); }
.green-planet-section-soft { background: linear-gradient(135deg, #f8fcfb 0%, #eef8f5 55%, #f2f9ff 100%); }
.green-planet-section::before { position: absolute; top: 42px; inset-inline-start: 4%; width: 90px; height: 2px; border-radius: 99px; content: ''; background: var(--green-planet-gradient); opacity: .18; transform: scaleX(.25); transform-origin: right; transition: transform 900ms ease, opacity 900ms ease; }
.green-planet-section:has(.green-planet-reveal-visible)::before { opacity: .55; transform: scaleX(1); }
.green-planet-service-card,
.green-planet-study-card,
.green-planet-principle-card,
.green-planet-project-feature-stat { background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,251,249,.92)); }
.green-planet-service-icon,
.green-planet-study-icon,
.green-planet-service-detail-icon,
.green-planet-contact-item-icon { color: #fff; background: var(--green-planet-gradient); box-shadow: 0 10px 24px rgba(6,131,201,.17); }
.green-planet-intro-photo img,
.green-planet-story-photo img,
.green-planet-project-media img,
.green-planet-page-hero-main img,
.green-planet-page-hero-mini img { transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.green-planet-reveal-visible .green-planet-intro-photo img,
.green-planet-reveal-visible .green-planet-story-photo img,
.green-planet-reveal-visible.green-planet-project-showcase .green-planet-project-media img,
.green-planet-reveal-visible .green-planet-page-hero-main img { transform: scale(1.035); }
.green-planet-page-hero { padding-top: 205px; background: radial-gradient(circle at 85% 20%, rgba(75,220,120,.15), transparent 30%), linear-gradient(135deg,#f9fcfb,#eef8f5 58%,#edf7fc); }
.green-planet-page-hero-main::after { position:absolute; inset:0; content:''; background: linear-gradient(135deg, rgba(6,131,201,.14), transparent 45%, rgba(75,220,120,.18)); pointer-events:none; }
.green-planet-footer-socials { margin-top: 24px; }
.green-planet-footer-social-link,
.green-planet-contact-social-link { display:grid; place-items:center; width:42px; height:42px; border:1px solid rgba(255,255,255,.15); border-radius:14px; color:#fff; background:rgba(255,255,255,.06); transition:transform 220ms ease,background 220ms ease,border-color 220ms ease; }
.green-planet-footer-social-link:hover { transform:translateY(-4px); background:linear-gradient(135deg,rgba(6,131,201,.65),rgba(75,220,120,.65)); border-color:transparent; }
.green-planet-footer-social-link svg,
.green-planet-contact-social-link svg { width:20px; height:20px; }
.green-planet-contact-socials { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--green-planet-line); }
.green-planet-contact-social-link { color:var(--green-planet-blue-deep); border-color:var(--green-planet-line); background:var(--green-planet-mist); }
.green-planet-contact-social-link:hover { color:#fff; border-color:transparent; background:var(--green-planet-gradient); transform:translateY(-3px); }
.green-planet-reveal { opacity: 0; filter: blur(7px); transform: translateY(32px) scale(.985); transition: opacity 780ms ease, transform 780ms cubic-bezier(.2,.7,.2,1), filter 780ms ease; }
.green-planet-reveal-visible { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
@keyframes green-planet-hero-pan { from { transform: scale(1.07) translate3d(1.2%,0,0); } to { transform: scale(1.01) translate3d(0,0,0); } }
@keyframes green-planet-mesh-drift { to { transform: translate3d(4%,5%,0) rotate(8deg); } }
@keyframes green-planet-glow-pulse { 50% { transform: scale(1.18); opacity:.72; } }
@media (max-width: 1080px) {
  .green-planet-navigation { gap:2px; }
  .green-planet-navigation-link { padding-inline:10px; font-size:.73rem; }
  .green-planet-header-call span { display:none; }
}
@media (max-width: 900px) {
  .green-planet-header { height: 104px; }
  .green-planet-header-utility { height: 30px; }
  .green-planet-header-utility-inner { height:30px; }
  .green-planet-header-inner { height:74px; }
  .green-planet-header-scrolled { height:74px; }
  .green-planet-header-scrolled .green-planet-header-inner { height:74px; }
  .green-planet-home-hero { margin-top:104px; height:calc(100svh - 104px); }
  .green-planet-header-call { display:none; }
  .green-planet-navigation { top:74px; border:0; border-radius:0; background:#fff; }
  .green-planet-header:not(.green-planet-header-scrolled) .green-planet-navigation { top:104px; }
  .green-planet-header-utility-contact a:first-child { display:none; }
  .green-planet-page-hero { padding-top:155px; }
}
@media (max-width: 640px) {
  .green-planet-header-utility-inner { width:calc(100% - 24px); }
  .green-planet-header-social-link { width:23px; height:23px; }
  .green-planet-header-utility-contact { gap:10px; }
  .green-planet-brand img { width:160px; }
  .green-planet-home-hero { min-height:520px; max-height:700px; }
  .green-planet-home-slide img { object-position:center; }
  .green-planet-home-hero-mesh { width:82vw; top:-10%; }
  .green-planet-home-hero-glow { width:120px; height:120px; }
  .green-planet-page-hero { padding-top:135px; }
}

/* Green Planet language control and mobile navigation repair */
.green-planet-language-button {
  gap: 7px;
  min-width: 66px;
  color: var(--green-planet-blue-deep);
  background: linear-gradient(#fff, #fff) padding-box,
              var(--green-planet-gradient) border-box;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(6, 131, 201, 0.08);
}

.green-planet-language-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.green-planet-language-button span {
  display: block;
  min-width: 22px;
  line-height: 1;
  text-align: center;
}

.green-planet-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 98;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(4, 36, 44, 0.48);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.green-planet-menu-backdrop-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .green-planet-header-inner {
    position: relative;
    z-index: 103;
  }

  .green-planet-navigation {
    position: fixed;
    inset: 116px 14px auto;
    z-index: 104;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: 4px;
    width: auto;
    max-height: calc(100svh - 132px);
    margin: 0;
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(8, 42, 50, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 70px rgba(4, 47, 57, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transform-origin: top center;
    transition: opacity 240ms ease, visibility 240ms ease, transform 260ms cubic-bezier(.2,.7,.2,1);
  }

  .green-planet-header-scrolled .green-planet-navigation {
    inset-block-start: 86px;
  }

  .green-planet-navigation-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .green-planet-navigation-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 11px 16px;
    border-radius: 15px;
    color: var(--green-planet-ink);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .green-planet-navigation-link:hover,
  .green-planet-navigation-link:focus-visible {
    color: var(--green-planet-blue-deep);
    background: var(--green-planet-mist);
    transform: translateX(-2px);
  }

  html[dir='ltr'] .green-planet-navigation-link:hover,
  html[dir='ltr'] .green-planet-navigation-link:focus-visible {
    transform: translateX(2px);
  }

  .green-planet-navigation-link.green-planet-navigation-current {
    color: #fff;
    background: var(--green-planet-gradient);
    box-shadow: 0 10px 24px rgba(6, 131, 201, 0.18);
  }

  .green-planet-menu-button {
    position: relative;
    z-index: 105;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-color: rgba(8, 42, 50, 0.12);
    background: var(--green-planet-mist);
  }

  .green-planet-menu-active {
    color: #fff;
    border-color: transparent;
    background: var(--green-planet-gradient);
    box-shadow: 0 10px 24px rgba(6, 131, 201, 0.2);
  }

  .green-planet-menu-active .green-planet-menu-line {
    background: #fff;
  }
}

@media (max-width: 640px) {
  .green-planet-header-inner {
    gap: 9px;
  }

  .green-planet-brand img {
    width: 142px;
  }

  .green-planet-header-actions {
    gap: 7px;
  }

  .green-planet-language-button {
    min-width: 58px;
    height: 40px;
    padding: 0 10px;
  }

  .green-planet-language-icon {
    width: 15px;
    height: 15px;
  }

  .green-planet-navigation {
    inset-inline: 10px;
    border-radius: 20px;
  }
}

@media (max-width: 390px) {
  .green-planet-brand img {
    width: 126px;
  }

  .green-planet-language-button {
    min-width: 52px;
    padding-inline: 8px;
    gap: 5px;
  }
}
