/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { font-family: 'Inter', sans-serif; background: #FBFBFB; color: #374151; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* === COLORS === */
:root {
  --forest-900: #051b49;
  --forest-800: #1a2e35;
  --leaf-500: #5c9737;
  --leaf-400: #7fb05a;
  --mist-100: #F3F4F3;
  --mist-50: #FBFBFB;
}

/* === NOISE OVERLAY === */
.noise-overlay {
  position: fixed; inset: 0; opacity: 0.04; pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* === ANIMATIONS === */
@keyframes float-blob-1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(10%,-5%) scale(1.1)} 66%{transform:translate(-5%,10%) scale(0.9)} }
@keyframes float-blob-2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-10%,10%) scale(0.95)} 66%{transform:translate(8%,-8%) scale(1.05)} }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.blob-wrap { position: relative; overflow: hidden; }
.blob { position: absolute; border-radius: 9999px; filter: blur(80px); opacity: 0.25; pointer-events: none; z-index: 0; }
.blob-1 { width: 60%; height: 60%; background: rgba(92,151,55,0.2); top: -20%; left: -10%; animation: float-blob-1 20s ease-in-out infinite; }
.blob-2 { width: 50%; height: 50%; background: rgba(5,27,73,0.08); bottom: -20%; right: -10%; animation: float-blob-2 25s ease-in-out infinite; }

/* === HEADER === */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  height: 80px;
}
@media (min-width: 768px) { .header-inner { height: 112px; } }

.logo img { height: 80px; width: auto; padding: 0 0.5rem; display: block; }
@media (min-width: 768px) { .logo img { height: 112px; } }

.header-right { display: flex; align-items: center; gap: 2rem; }

nav.desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { nav.desktop { display: flex; } }

.nav-link {
  color: #4b5563; font-weight: 600; font-size: 0.95rem;
  position: relative; cursor: pointer; background: none; border: none;
  padding: 0; font-family: inherit; transition: color 0.2s;
}
.nav-link:hover { color: #15803d; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #16a34a; transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.btn-contact {
  background: #16a34a; color: white; font-weight: 700; padding: 0.625rem 1.75rem;
  border-radius: 9999px; border: none; cursor: pointer; font-family: inherit;
  transition: all 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-contact:hover { background: #15803d; transform: scale(1.05); }
@media (max-width: 480px) { .btn-contact.desktop-contact { display: none; } }

.btn-hamburger {
  display: flex; background: #f9fafb; border: 1px solid #e5e7eb;
  border-radius: 0.75rem; padding: 0.625rem; cursor: pointer; color: #374151;
  position: relative;
}
@media (min-width: 768px) { .btn-hamburger { display: none; } }

.mobile-menu {
  position: absolute; right: 0; top: calc(100% + 1rem); width: 240px;
  background: white; border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid #f3f4f6; padding: 0.75rem 0; display: none; z-index: 50;
}
.mobile-menu.open { display: block; animation: fadeIn 0.15s ease; }
.mobile-menu a,
.mobile-menu button {
  display: block; width: 100%; text-align: left; padding: 1rem 1.5rem;
  color: #374151; font-weight: 600; background: none; border: none;
  border-bottom: 1px solid #fafafa; cursor: pointer; font-family: inherit; font-size: 1rem;
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { background: #f0fdf4; color: #15803d; }
.mobile-menu .btn-contact-mob {
  color: #15803d; background: #f0fdf4; text-align: center; border: none; margin-top: 0.5rem;
}

/* === FOOTER === */
footer { background: #1f2937; color: #9ca3af; padding: 2rem 1.5rem; text-align: center; }
footer p + p { margin-top: 0.5rem; font-size: 0.875rem; }

/* === LAYOUT === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-center { text-align: center; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.025em; }
.eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--leaf-500); display: block; margin-bottom: 1.5rem;
}
.divider-bar {
  width: 6rem; height: 6px; border-radius: 9999px; margin: 1.25rem auto 0;
}
.divider-bar.green { background: #22c55e; }
.divider-bar.white { background: white; }
.divider-line { display: none; }
@media (min-width: 768px) { .divider-line { display: block; width: 6rem; height: 1px; background: #e5e7eb; margin: 1rem auto; } }

/* === HERO === */
.hero {
  position: relative; min-height: 85dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #111827;
}
#hero-video, #hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
#hero-bg { background-size: cover; background-position: center; display: none; animation: fadeIn 1s ease; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 1.5rem; max-width: 56rem; margin: 0 auto; }
.hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 800;
  color: white; line-height: 1.15; margin-bottom: 1rem;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: #e5e7eb;
  max-width: 40rem; margin: 0 auto 2rem; line-height: 1.7;
}
.badge {
  display: inline-block; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.85); font-weight: 700; padding: 0.75rem 2rem;
  border-radius: 9999px; font-size: 1.1rem; border: 1px solid rgba(255,255,255,0.2);
}
.badge-btn {
  cursor: pointer; font-family: inherit; transition: all 0.3s;
  background: #16a34a; color: white; border-color: #16a34a;
  box-shadow: 0 0 20px rgba(22,163,74,0.5);
}
.badge-btn:hover { background: #15803d; transform: scale(1.05); box-shadow: 0 0 30px rgba(22,163,74,0.7); }

/* === MODAL === */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background-color: #ffffff; border-radius: 2rem; padding: 2.5rem; width: 100%; max-width: 34rem;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(20px); transition: transform 0.25s ease;
  isolation: isolate;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem; background: #f3f4f6;
  border: none; border-radius: 9999px; width: 2rem; height: 2rem;
  font-size: 1.25rem; cursor: pointer; color: #6b7280; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: #e5e7eb; color: #111827; }
.modal-box h3 { font-size: 1.25rem; color: #111827; margin-bottom: 0.5rem; line-height: 1.3; }
.modal-box > p { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.reg-form { display: flex; flex-direction: column; gap: 1rem; }
.reg-form select {
  padding: 1rem 1.25rem; border-radius: 1rem;
  border: 1px solid rgba(209,213,219,0.6); background: rgba(255,255,255,0.6);
  outline: none; transition: all 0.3s; font-size: 1rem; font-family: inherit;
  color: #111827; width: 100%; cursor: pointer;
}
.reg-form select:focus { border-color: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.1); }
.radio-group { display: flex; gap: 1rem; margin-top: 0.25rem; }
.radio-option {
  display: flex; align-items: center; gap: 0.5rem; cursor: pointer;
  padding: 0.75rem 1.25rem; border-radius: 0.75rem; border: 1px solid #e5e7eb;
  flex: 1; justify-content: center; font-weight: 600; font-size: 0.9rem;
  color: #374151; transition: all 0.2s;
}
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] { display: none; }
.radio-option:has(input:checked) {
  border-color: #16a34a; background: #f0fdf4; color: #15803d;
}
.select-both-hint { font-size: 0.75rem; font-weight: 400; color: #9ca3af; }
.field-error { display: none; font-size: 0.8rem; color: #dc2626; margin-top: 0.35rem; font-weight: 500; }
.input-error { border-color: #dc2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.1) !important; }

/* === VISION === */
.vision {
  position: relative; padding: 8rem 1.5rem;
  background: var(--forest-900); overflow: hidden;
}
.vision-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--forest-900), rgba(48,67,48,0.4), var(--forest-900));
  z-index: 0;
}
.vision-glow {
  position: absolute; top: -10%; right: -10%; width: 40%; height: 40%;
  background: rgba(34,197,94,0.1); border-radius: 9999px; filter: blur(120px); z-index: 0;
}
.vision-content { position: relative; z-index: 1; max-width: 56rem; margin: 0 auto; text-align: center; }
.vision-content h2 {
  font-size: clamp(2rem, 5vw, 3rem); color: white; margin-bottom: 1.5rem; font-weight: 700;
}
.vision-content p.main {
  font-size: clamp(1.25rem, 3vw, 1.75rem); color: white;
  font-weight: 300; line-height: 1.7; margin-bottom: 2rem;
}
.vision-content p.sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem); color: rgba(187,247,208,0.9);
  font-weight: 300; line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
}

/* === PURPOSE === */
.purpose { padding: 6rem 1.5rem; }
.purpose-intro { max-width: 56rem; margin: 1.5rem auto 0; }
.purpose-intro p { font-size: clamp(1.1rem, 2vw, 1.5rem); color: #4b5563; line-height: 1.7; font-weight: 300; margin-bottom: 0.75rem; }
.purpose-intro p.lead { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 400; color: var(--forest-900); }
.purpose-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 3rem auto 0; }
@media (min-width: 768px) { .purpose-grid { grid-template-columns: 1fr 1fr; } }
.purpose-card {
  padding: 2.5rem; border-radius: 1.5rem; border: 1px solid;
  transition: box-shadow 0.3s;
}
.purpose-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.purpose-card.problem { background: #f9fafb; border-color: #f3f4f6; }
.purpose-card.solution { background: #f0fdf4; border-color: #dcfce7; }
.purpose-card h3 {
  font-size: 1.25rem; color: #111827; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.purpose-card p { color: #4b5563; line-height: 1.7; }
.icon-alert {
  width: 2rem; height: 2rem; background: #fee2e2; color: #dc2626;
  border-radius: 0.5rem; display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; flex-shrink: 0;
}

/* === PILLARS === */
.pillars { padding: 6rem 1.5rem; }
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 3rem auto 0; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card {
  background: white; padding: 2rem; border-radius: 1.5rem;
  border: 1px solid #f3f4f6; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: box-shadow 0.3s;
}
.pillar-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.pillar-icon {
  width: 3rem; height: 3rem; background: #f0fdf4; color: #16a34a;
  border-radius: 1rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: all 0.3s;
}
.pillar-card:hover .pillar-icon { background: #16a34a; color: white; }
.pillar-card h3 { font-size: 1.1rem; color: #111827; margin-bottom: 0.75rem; }
.pillar-card p { color: #4b5563; line-height: 1.7; font-size: 0.875rem; }

/* === CONTACT === */
.contact { padding: 6rem 1.5rem; background: var(--mist-100); }
.contact-box {
  background-color: #ffffff; border-radius: 2.5rem;
  padding: 1.5rem; border: 1px solid #d1d5db;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  max-width: 56rem; margin: 3rem auto 0;
  width: 100%; overflow: hidden; box-sizing: border-box;
}
@media (min-width: 768px) { .contact-box { padding: 3.5rem; } }
.contact-form { display: grid; gap: 1.5rem; width: 100%; }
@media (min-width: 768px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; width: 100%; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: #374151; }
.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem; border-radius: 1rem;
  border: 1px solid #d1d5db; background: #f9fafb;
  outline: none; transition: all 0.3s;
  font-size: 1rem; font-family: inherit; color: #111827;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
}
.form-group textarea { resize: none; min-height: 160px; }
.form-full { grid-column: 1 / -1; }
.form-error {
  background: #fef2f2; color: #dc2626; border: 1px solid #fecaca;
  padding: 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500;
  margin-bottom: 1rem; display: none;
}
.btn-submit {
  width: 100%; background: #15803d; color: white; font-weight: 700;
  font-size: 1.125rem; padding: 1.25rem 2rem; border-radius: 1rem; border: none;
  cursor: pointer; font-family: inherit; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.btn-submit:hover { background: #166534; }
.btn-submit:disabled { background: #86efac; cursor: not-allowed; }
.spinner {
  width: 1.5rem; height: 1.5rem; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 9999px; animation: spin 0.7s linear infinite;
}
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success .check-icon {
  width: 5rem; height: 5rem; background: #dcfce7; color: #15803d;
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.875rem; color: #111827; margin-bottom: 0.75rem; }
.form-success p { color: #4b5563; font-size: 1.125rem; margin-bottom: 2rem; }
.btn-reset {
  background: #15803d; color: white; font-weight: 700; padding: 1rem 2.5rem;
  border-radius: 1rem; border: none; cursor: pointer; font-size: 1rem; font-family: inherit;
  transition: background 0.3s;
}
.btn-reset:hover { background: #166534; }

/* === STORY PAGE === */
.story-hero { padding: 10rem 1.5rem 6rem; background: white; }
.story-hero-inner {
  display: flex; flex-direction: column; gap: 3rem;
  max-width: 72rem; margin: 0 auto;
}
@media (max-width: 1023px) { .story-hero-inner .image { display: none; } }
@media (min-width: 1024px) {
  .story-hero-inner { flex-direction: row; align-items: center; gap: 6rem; }
  .story-hero-inner .text { flex: 1; }
  .story-hero-inner .image { flex: 1; }
}
.story-hero-inner h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem); color: var(--forest-900); margin-bottom: 3rem; line-height: 1.1;
}
.story-hero-inner .lead-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 300; color: var(--forest-800); line-height: 1.7;
}
.story-hero-inner .sub-text {
  font-size: 1.25rem; color: #4b5563; line-height: 1.7; font-weight: 300; margin-top: 1.5rem;
}

.rounded-section {
  background: var(--mist-50); border-radius: 4rem; margin: 1.5rem 1rem; padding: 3rem 1.5rem;
}
@media (min-width: 768px) { .rounded-section { border-radius: 6rem; margin: 3rem 2.5rem; padding: 6rem 1.5rem; } }

.two-col {
  display: flex; flex-direction: column; gap: 4rem;
  max-width: 72rem; margin: 0 auto; align-items: center;
}
@media (min-width: 1024px) { .two-col { flex-direction: row; gap: 8rem; } }
.two-col .text { flex: 1; }
.two-col .image { flex: 1; }
.two-col.reverse { flex-direction: column; }
@media (min-width: 1024px) { .two-col.reverse { flex-direction: row-reverse; } }
/* Hide decorative images on mobile to avoid consecutive image stacking */
@media (max-width: 1023px) { .two-col .image { display: none; } }

.content-text h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest-900); margin-bottom: 2.5rem; }
.content-text p {
  font-size: clamp(1rem, 2vw, 1.25rem); color: #374151; font-weight: 300;
  line-height: 1.8; margin-bottom: 1.5rem;
}
.content-text .blockquote {
  border-left: 4px solid var(--leaf-500); padding: 0.5rem 0 0.5rem 2rem;
  font-style: italic; font-size: 1.25rem; color: var(--forest-900); margin: 1.5rem 0;
}
.content-text .strong { color: var(--forest-900); font-weight: 500; }

.team-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 72rem; margin: 3rem auto 0;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  padding: 2.5rem; border-radius: 2rem; background: white;
  border: 1px solid #f3f4f6; transition: all 0.4s;
}
.team-card:hover { border-color: var(--leaf-500); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.team-card h4 { font-size: 1.1rem; color: var(--forest-900); margin-bottom: 0.75rem; transition: color 0.3s; }
.team-card:hover h4 { color: var(--leaf-500); }
.team-card p { color: #4b5563; font-size: 0.875rem; font-weight: 300; line-height: 1.7; }

/* === GALLERY === */
.gallery-img {
  border-radius: 2rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transition: opacity 1s ease; width: 100%;
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-img.portrait { aspect-ratio: 3/4; max-height: 800px; }
.gallery-img.landscape { aspect-ratio: 16/9; }

/* === ACFOR PAGE === */
.page-header { padding: 8rem 1.5rem 5rem; background: var(--mist-50); text-align: center; }
.page-header h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); color: var(--forest-900); margin-bottom: 1.5rem; }
.page-header p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: #4b5563; font-weight: 300;
  max-width: 48rem; margin: 0 auto; line-height: 1.7;
}

.roots { padding: 6rem 1.5rem; background: white; }
.roots-inner { display: flex; flex-direction: column; gap: 4rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .roots-inner { flex-direction: row; gap: 4rem; align-items: flex-start; } }
.roots-text { flex: 3; }
.roots-img { flex: 2; }
.roots-text .leaf-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--leaf-500); display: block; margin-bottom: 1rem;
}
.roots-text h3 { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest-900); margin-bottom: 3rem; }
.roots-text p { color: #374151; line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.25rem; }
.roots-text .bold { font-weight: 700; color: var(--forest-900); }
.roots-text .italic { font-style: italic; color: var(--leaf-500); font-weight: 500; }
.approach-box { background: var(--mist-100); padding: 2rem; border-radius: 1.5rem; border: 1px solid #e5e7eb; margin: 2rem 0; }
.approach-box .label { font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest-900); margin-bottom: 1rem; }
.approach-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; list-style: none; }
.approach-list li { display: flex; align-items: center; gap: 0.75rem; color: var(--forest-800); text-transform: capitalize; font-size: 0.95rem; }
.approach-list li::before { content: ''; width: 8px; height: 8px; background: var(--leaf-500); border-radius: 9999px; flex-shrink: 0; }
.section-divider { width: 100%; height: 1px; background: #e5e7eb; margin: 4rem 0; }

.energy { padding: 6rem 1.5rem; background: var(--mist-50); border-radius: 5rem; margin: 2rem 1.5rem; }
.energy-inner {
  display: flex; flex-direction: column-reverse; gap: 4rem;
  max-width: 72rem; margin: 0 auto; align-items: stretch;
}
@media (min-width: 1024px) { .energy-inner { flex-direction: row; } }
.energy-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.energy-text .blue-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #2563eb; display: block; margin-bottom: 1rem;
}
.energy-text h3 { font-size: clamp(2rem, 4vw, 3rem); color: var(--forest-900); margin-bottom: 2rem; line-height: 1.2; }
.energy-text p { color: #374151; line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem; }
.energy-text .bold { font-weight: 700; color: var(--forest-900); }
.energy-text .highlight {
  border-left: 4px solid var(--leaf-500); padding-left: 1.5rem;
  color: var(--forest-900); font-weight: 500;
}
.energy-img { flex: 1; }

.cta-wrap { padding: 6rem 1.5rem; }
.cta-box {
  background: var(--forest-900); border-radius: 4rem; padding: 4rem 2rem;
  text-align: center; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.2); max-width: 72rem; margin: 0 auto;
}
@media (min-width: 768px) { .cta-box { padding: 5rem; } }
.cta-box h2 { font-size: clamp(2rem, 5vw, 3rem); color: white; margin-bottom: 2rem; }
.cta-box p {
  font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(187,247,208,0.85);
  max-width: 32rem; margin: 0 auto 3rem; font-weight: 300; line-height: 1.7;
}
.btn-cta {
  display: inline-block; background: var(--leaf-500); color: white; font-weight: 700;
  padding: 1.25rem 3rem; border-radius: 1.5rem; font-size: 1.25rem; transition: all 0.3s;
}
.btn-cta:hover { background: var(--leaf-400); transform: scale(1.05); }

/* === NEWS PAGE === */
.news-section { padding: 8rem 1.5rem 6rem; }
.news-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 72rem; margin: 3rem auto 0;
}
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  background: white; border-radius: 1.5rem; border: 1px solid #f3f4f6;
  overflow: hidden; transition: all 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.news-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.news-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.news-body { padding: 1.5rem; }
.news-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.news-category {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--leaf-500);
}
.news-date { font-size: 0.8rem; color: #9ca3af; }
.news-card h3 { font-size: 1.05rem; color: #111827; margin-bottom: 0.75rem; line-height: 1.4; }
.news-card p { color: #4b5563; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.news-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--leaf-500); font-weight: 600; font-size: 0.875rem; transition: gap 0.2s;
}
.news-link:hover { gap: 0.7rem; }
