*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #70a06e;
  --primary-light: #8bb989;
  --primary-pale: #e8f5e7;
  --earth: #2c1a0e;
  --sand: #f5f0e8;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --accent: #f59e0b;
  --gray: #6b7280;
  --border: rgba(112,160,110,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sand);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  color: var(--earth);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  color: var(--earth);
  letter-spacing: 2px;
}

.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(44,26,14,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--earth) url('../images/bg.png') center/cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 5% 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
}

.hero-text { position: relative; z-index: 2; padding-right: 4%; }

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--primary);
}

h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  color: var(--earth);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(44,26,14,0.75);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: var(--earth);
}
.btn-primary:hover { background: #d4e020; transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(44,26,14,0.5);
  color: var(--earth);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-diagram {
  width: 100%;
  height: 550px;
  position: relative;
}

.hero-circle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-pill {
  position: absolute;
  background: rgba(255,255,255,0.85);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-pill-1 { top: 5%; right: -5%; }
.stat-pill-2 { bottom: 10%; left: -5%; }
.stat-pill-3 { bottom: 35%; right: -8%; }

.stat-pill .num {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
}

.stat-pill .lbl {
  font-size: 0.65rem;
  color: var(--earth);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SECTIONS */
section { padding: 7rem 5%; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
}

h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

/* PROBLEM SECTION */
.problem {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problem::after {
  content: 'PLASTIC';
  position: absolute;
  font-family: 'Bebas Neue', cursive;
  font-size: 18vw;
  color: rgba(255,255,255,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.problem-right-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  display: block;
}

.problem h2 { color: var(--white); }
.problem h2 em { color: var(--primary-light); font-style: normal; }

.problem-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.fact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.fact-card:hover { border-color: var(--primary-light); transform: translateY(-4px); }

.fact-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fact-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* PROCESS */
.process { background: var(--sand); }

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-icon {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--white);
  border: 3px solid var(--primary);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(112,160,110,0.2);
  transition: all 0.3s;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step:hover .step-icon {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(112,160,110,0.3);
}

.step h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* OUTPUTS */
.outputs {
  background: #0f1923 url('../images/fule.webp') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.outputs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.88);
  pointer-events: none;
}

.outputs::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(112,160,110,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(245,158,11,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.outputs h2 { color: var(--white); position: relative; }
.outputs .section-label { color: var(--accent); position: relative; }
.outputs .section-label::before { background: var(--accent); }

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  position: relative;
}

.output-header-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  max-width: 220px;
  text-align: right;
  line-height: 1.5;
  border-left: 2px solid rgba(245,158,11,0.4);
  padding-left: 0.75rem;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.output-card {
  border-radius: 20px;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.output-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.output-card:nth-child(1) {
  background: linear-gradient(145deg, #1a2f3a 0%, #0d1f2d 100%);
  border-top: 3px solid #38bdf8;
}
.output-card:nth-child(2) {
  background: linear-gradient(145deg, #2a1f3a 0%, #1a0d2d 100%);
  border-top: 3px solid #a78bfa;
}
.output-card:nth-child(3) {
  background: linear-gradient(145deg, #1f2e1a 0%, #0f1f0d 100%);
  border-top: 3px solid var(--primary);
}

.output-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.output-icon {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
}

.output-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.output-card:nth-child(1) .output-icon { background: rgba(56,189,248,0.12); }
.output-card:nth-child(2) .output-icon { background: rgba(167,139,250,0.12); }
.output-card:nth-child(3) .output-icon { background: rgba(112,160,110,0.15); }

.output-pct {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 1px;
}

.output-card:nth-child(1) .output-pct { color: #38bdf8; }
.output-card:nth-child(2) .output-pct { color: #a78bfa; }
.output-card:nth-child(3) .output-pct { color: var(--primary); }

.output-name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
  font-weight: 600;
}

.output-divider {
  width: 40px;
  height: 2px;
  margin: 0.75rem auto;
  border-radius: 2px;
}

.output-card:nth-child(1) .output-divider { background: #38bdf8; }
.output-card:nth-child(2) .output-divider { background: #a78bfa; }
.output-card:nth-child(3) .output-divider { background: var(--primary); }

.output-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-top: 0.5rem;
  margin-bottom: 10px;
}

/* SECTION BANNER DIVIDER */
.section-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,18,26,0.97) 0%,
    rgba(10,18,26,0.75) 40%,
    rgba(10,18,26,0.55) 100%
  );
}

.section-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.section-banner-text h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.section-banner-text h3 em {
  color: var(--primary);
  font-style: normal;
}

.section-banner-text p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 480px;
}

.section-banner-stats {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}

.banner-stat {
  text-align: center;
}

.banner-stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
}

.banner-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.25rem;
}

/* COMPARISON */
.comparison {
  background: var(--white);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.comparison h2 { color: var(--charcoal); }
.comparison .section-label { color: var(--primary); }
.comparison .section-label::before { background: var(--primary); }

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.08);
}

.comp-table th {
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 1px;
  background: var(--sand);
  color: var(--gray);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.comp-table th:first-child { border-radius: 16px 0 0 0; }
.comp-table th:nth-child(2) { color: var(--gray); }
.comp-table th:last-child {
  background: var(--primary);
  color: var(--white);
  border-radius: 0 16px 0 0;
  border-bottom: 1px solid rgba(112,160,110,0.3);
}

.comp-table td {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--gray);
  line-height: 1.5;
  vertical-align: middle;
}

.comp-table tbody tr:hover td {
  background: var(--sand);
}

.comp-table tr:last-child td:first-child { border-radius: 0 0 0 16px; }
.comp-table tr:last-child td:last-child { border-radius: 0 0 16px 0; }

.comp-table td:last-child {
  background: var(--primary-pale);
  color: #3a6e38;
  font-weight: 600;
  border-left: 1px solid rgba(112,160,110,0.2);
}

.comp-table td:first-child {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comp-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
}

.comp-table-wrapper .comp-table {
  border: none;
  border-radius: 0;
}

.comp-win {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.comp-win::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
}

/* KEY BENEFITS */
.keypoints { background: var(--charcoal); }

.keypoints h2 { color: var(--white); }
.keypoints .section-label { color: var(--primary); }
.keypoints .section-label::before { background: var(--primary); }

.kp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.kp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  box-shadow: none;
  transition: transform 0.25s;
}

.kp-item:hover { transform: translateX(4px); background: rgba(255,255,255,0.08); }

.kp-check {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.kp-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* CAPACITY */
.capacity {
  background: var(--sand);
  color: var(--charcoal);
  text-align: center;
}

.capacity h2 { color: var(--charcoal); margin-bottom: 0.5rem; }
.capacity .section-label { color: var(--primary); }
.capacity .section-label::before { background: var(--primary); }

.cap-subtitle {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.cap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.cap-card {
  background: var(--white);
  border: 1px solid rgba(112,160,110,0.2);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.cap-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(112,160,110,0.15);
}

.cap-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
}

.cap-unit {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* USES */
.uses { background: var(--charcoal); }

.uses h2 { color: var(--white); }
.uses .section-label { color: var(--primary); }
.uses .section-label::before { background: var(--primary); }

.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.use-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.use-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(112,160,110,0.25);
  border-color: var(--primary);
}

.use-icon {
  width: 100%;
  height: 180px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
}

.use-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-name {
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
}

/* SDG */
.sdg {
  background: var(--sand);
  color: var(--charcoal);
  padding: 0;
  overflow: hidden;
}

.sdg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: stretch;
}

.sdg-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sdg-image img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.sdg-content {
  padding: 6rem 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sdg h2 { color: var(--charcoal); margin-bottom: 2.5rem; }
.sdg .section-label { color: var(--primary); }
.sdg .section-label::before { background: var(--primary); }

.sdg-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sdg-card {
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s;
}

.sdg-card:hover { transform: translateX(6px); }

.sdg-card:nth-child(1) { background: linear-gradient(135deg, #f39c12, #e74c3c); }
.sdg-card:nth-child(2) { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.sdg-card:nth-child(3) { background: linear-gradient(135deg, #2980b9, #3498db); }

.sdg-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}

.sdg-card-text { flex: 1; }

.sdg-goal {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.sdg-desc {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* DIRECTORS / LEADERSHIP */
.directors {
  background: var(--charcoal);
}

.directors h2 { color: var(--white); }
.directors .section-label { color: var(--primary); }
.directors .section-label::before { background: var(--primary); }

.directors-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.director-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  transition: all 0.3s;
  display: flex;
  align-items: stretch;
}

.director-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--primary);
}

.director-image {
  width: 260px;
  min-width: 260px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-right: 4px solid var(--primary);
}

.director-info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.director-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.director-role {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.director-bio {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 680px;
}

/* CTA / CONTACT */
.contact {
  background: var(--sand);
  color: var(--charcoal);
  text-align: center;
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: 'GREEN FUTURE';
  position: absolute;
  font-family: 'Bebas Neue', cursive;
  font-size: 14vw;
  color: rgba(0,0,0,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
}

.contact h2 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-size: clamp(2.5rem,6vw,5rem);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: none;
}
.contact h2 em {
  color: var(--primary);
  font-style: normal;
  display: block;
  margin-top: 0.5rem;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-sub {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: var(--earth);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.8rem;
  font-family: 'Space Mono', monospace;
}

footer span { color: var(--accent); }

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
  transform: translateY(-2px);
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float-label { white-space: nowrap; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 3rem; }
  .hero-visual { display: flex; margin-top: 2rem; }
  .hero-diagram { height: 320px; }
  .stat-pill-1 { top: 2%; right: 2%; }
  .stat-pill-2 { bottom: 2%; left: 2%; }
  .stat-pill-3 { bottom: 30%; right: 2%; }
  .problem-grid, .fact-cards { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .process-flow::before { display: none; }
  .output-grid { grid-template-columns: repeat(2, 1fr); }
  .uses-grid, .cap-cards { grid-template-columns: 1fr 1fr; }
  .sdg-inner { grid-template-columns: 1fr; }
  .sdg-image { height: 340px; }
  .sdg-content { padding: 3rem 5%; }
  .directors-grid { flex-direction: column; }
  .director-card { flex-direction: column; }
  .director-image { width: 100%; min-width: unset; height: auto; max-height: none; object-fit: contain; object-position: center; border-right: none; border-bottom: 4px solid var(--primary); background: rgba(0,0,0,0.2); }
  .director-info { text-align: center; }
  .kp-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem 5%;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 99;
  }
  .nav-links.mobile-open li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links.mobile-open a { display: block; padding: 1rem 0; font-size: 1rem; }
  .section-banner { height: auto; padding: 3rem 0; }
  .section-banner-content { flex-direction: column; gap: 2rem; }
  .section-banner-text h3 { font-size: 2rem; }
  .section-banner-stats { justify-content: center; }
  .comp-table th, .comp-table td { padding: 0.75rem 1rem; font-size: 0.8rem; }
  .comp-table th { font-size: 0.95rem; }
  .comparison { padding-left: 3%; padding-right: 3%; }
}

@media (max-width: 600px) {
  .output-grid, .cap-cards, .uses-grid { grid-template-columns: 1fr; }
  .hero-circle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
