/* ============================================
   RECARBON - Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-deep:    #1a3d2b;
  --green-mid:     #2d6a4f;
  --green-light:   #3d8b5e;
  --green-accent:  #52a874;
  --amber:         #c8860a;
  --amber-light:   #e5a020;
  --charcoal:      #1c1c1c;
  --charcoal-mid:  #2a2a2a;
  --charcoal-soft: #3a3a3a;
  --warm-white:    #f5f2ee;
  --off-white:     #ece9e3;
  --text-light:    #d4cfc8;
  --text-muted:    #8a857d;
  --line:          rgba(255,255,255,0.1);
  --line-dark:     rgba(0,0,0,0.08);

  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'DM Sans', sans-serif;

  --ease-smooth:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);

  --section-pad:   120px;
  --container:     1200px;
  --radius:        4px;
  --radius-lg:     12px;
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  :root { --section-pad: 80px; }
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--green-accent);
}

/* ---- Fade-in animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
}

/* stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ---- Divider ---- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-smooth), backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(26, 61, 43, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  border-radius: 4px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--warm-white);
}

.nav-brand span {
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--warm-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--amber);
  color: var(--charcoal) !important;
  font-weight: 500 !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--warm-white);
  appearance: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s, background 0.3s, opacity 0.3s;
}

.nav-hamburger:hover {
  color: var(--amber);
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 61, 43, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 40px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(45, 106, 79, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200, 134, 10, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #1a3d2b 0%, #0e2218 50%, #12291e 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    padding-bottom: 120px;
  }

  .hero-text {
    display: contents;
  }

  .hero-eyebrow {
    order: 1;
    justify-self: center;
  }

  .hero-heading {
    order: 2;
  }

  .hero-desc {
    order: 3;
  }

  .hero-visual {
    order: 4;
  }

  .hero-actions {
    order: 5;
    justify-content: center;
  }

  .hero-scroll-hint {
    bottom: 18px;
  }
}

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.hero-heading strong {
  font-weight: 600;
  display: block;
  background: linear-gradient(135deg, #52a874, #3d8b5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-heading .hero-italic {
  font-style: italic;
  color: var(--off-white);
  font-weight: 300;
}

.hero-desc {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(212, 207, 200, 0.85);
  max-width: 480px;
  margin-bottom: 44px;
}

@media (max-width: 900px) {
  .hero-desc { margin: 0 auto 44px; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-actions { justify-content: center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 134, 10, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 13px 32px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-badge-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s, border-color 0.3s;
}

.hero-stat-card:hover {
  transform: translateX(-4px);
  border-color: rgba(82, 168, 116, 0.3);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-info {}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-breathe 2s ease-in-out infinite;
}

@keyframes scroll-breathe {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* ============================================
   ABOUT / MISSION
   ============================================ */
#about {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-text {}

.about-text p {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-text strong {
  color: var(--warm-white);
  font-weight: 500;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.value-item:first-child { border-top: 1px solid var(--line); }

.value-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-body {}

.value-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   PROBLEM / SOLUTION
   ============================================ */
#solution {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.solution-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(45, 106, 79, 0.4) 0%, transparent 60%);
}

.solution-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.solution-header .section-label {
  justify-content: center;
}

.solution-header .section-label::before {
  display: none;
}

.solution-header p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(212, 207, 200, 0.8);
  line-height: 1.75;
  margin-top: 20px;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }
  .arrow-divider { transform: rotate(90deg); }
}

.problem-card, .solution-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  background: rgba(200, 134, 10, 0.06);
  border: 1px solid rgba(200, 134, 10, 0.2);
}

.solution-card {
  background: rgba(61, 139, 94, 0.1);
  border: 1px solid rgba(82, 168, 116, 0.25);
}

.card-header-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.problem-card .card-header-label { color: var(--amber); }
.solution-card .card-header-label { color: var(--green-accent); }

.card-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1.3;
}

.card-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

.card-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.problem-card .card-item-dot { background: var(--amber); opacity: 0.7; }
.solution-card .card-item-dot { background: var(--green-accent); }

.arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--green-accent);
  opacity: 0.7;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 28px 20px;
  flex: 1;
  min-width: 140px;
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid rgba(82, 168, 116, 0.3);
}

.process-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-white);
  letter-spacing: 0.3px;
}

.process-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
}

.process-arrow {
  color: var(--green-accent);
  opacity: 0.5;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .process-arrow { display: none; }
  .process-flow { gap: 16px; }
}

/* ============================================
   PRODUCT
   ============================================ */
#product {
  padding: var(--section-pad) 0;
  background: var(--charcoal-mid);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
}

.product-visual {
  position: relative;
}

.product-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45,106,79,0.2), rgba(28,28,28,0.8));
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.eco-brick-visual {
  width: 70%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-mid);
  border: 1px solid rgba(82,168,116,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--green-accent);
  text-transform: uppercase;
}

.product-details {}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.feature-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  transition: border-color 0.25s, background 0.25s;
}

.feature-chip:hover {
  border-color: rgba(82,168,116,0.25);
  background: rgba(82,168,116,0.05);
}

.feature-chip .chip-icon {
  font-size: 18px;
}

.pricing-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-cell {
  background: rgba(255,255,255,0.03);
  padding: 20px;
  text-align: center;
}

.price-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-value {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--warm-white);
}

.price-value.highlight {
  color: var(--green-accent);
}

.price-unit {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 2px;
}

/* comparison table */
.comparison-table {
  margin-top: 60px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table .th-recarbon {
  color: var(--green-accent);
}

.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-light);
  font-weight: 300;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--warm-white);
}

.check { color: var(--green-accent); font-size: 16px; }
.cross { color: #e05050; font-size: 14px; opacity: 0.7; }

/* ============================================
   MARKET
   ============================================ */
#market {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.market-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

@media (max-width: 640px) {
  .market-stats { grid-template-columns: 1fr; }
}

.market-stat {
  background: var(--charcoal-mid);
  padding: 40px 32px;
}

.market-stat-number {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 8px;
}

.market-stat-number em {
  font-style: normal;
  color: var(--green-accent);
}

.market-stat-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .segments-grid { grid-template-columns: 1fr; }
}

.segment-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.segment-card:hover {
  border-color: rgba(82,168,116,0.3);
  transform: translateY(-4px);
}

.segment-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--green-mid);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.segment-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 10px;
}

.segment-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   FINANCIALS
   ============================================ */
#financials {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.fin-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 10% 70%, rgba(200,134,10,0.07) 0%, transparent 60%);
}

.financials-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .financials-grid { grid-template-columns: 1fr; gap: 48px; }
}

.fin-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.fin-highlight {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.fin-highlight-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
}

.fin-highlight-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--amber);
  white-space: nowrap;
}

.fin-table-wrap {
  overflow-x: auto;
}

.fin-table {
  width: 100%;
  border-collapse: collapse;
}

.fin-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 20px;
  text-align: right;
  border-bottom: 1px solid var(--line);
}

.fin-table th:first-child { text-align: left; }

.fin-table td {
  padding: 18px 20px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
}

.fin-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--warm-white);
  font-family: var(--font-body);
}

.fin-table .net-profit-row td {
  color: var(--green-accent);
  font-weight: 500;
}

.funding-bar-section {
  margin-top: 48px;
}

.funding-bar-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.funding-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.funding-item {}

.funding-item-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.funding-item-label { font-weight: 400; color: var(--text-light); }
.funding-item-pct { font-weight: 500; color: var(--warm-white); }

.funding-bar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}

.funding-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.2s var(--ease-out);
  width: 0;
}

.funding-bar-fill.animated { width: var(--target-width); }

.fill-equipment { background: linear-gradient(90deg, var(--green-mid), var(--green-accent)); }
.fill-analysis  { background: linear-gradient(90deg, var(--amber), var(--amber-light)); }
.fill-marketing { background: linear-gradient(90deg, #5b8fd9, #82b3f5); }

/* ============================================
   TEAM
   ============================================ */
#team {
  padding: var(--section-pad) 0;
  background: var(--charcoal-mid);
}

.team-header {
  max-width: 480px;
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.team-card:hover {
  border-color: rgba(82,168,116,0.3);
  transform: translateY(-6px);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s;
}

.team-card:hover .team-card-img {
  filter: grayscale(0%) contrast(1.05);
}

.team-card-body {
  padding: 20px;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.mentor-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mentor-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.mentor-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ============================================
   SDGs / SUSTAINABILITY
   ============================================ */
#sustainability {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 900px) { .sdg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sdg-grid { grid-template-columns: 1fr 1fr; } }

.sdg-card {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s, border-color 0.3s;
}

.sdg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82,168,116,0.25);
}

.sdg-number {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.sdg-name {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--warm-white);
  line-height: 1.4;
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(45,106,79,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(200,134,10,0.06) 0%, transparent 60%);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

.contact-text .section-title {
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 1.0625rem;
  font-weight: 300;
  color: rgba(212,207,200,0.8);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  transition: color 0.2s;
}

.contact-link-item:hover {
  color: var(--warm-white);
}

.contact-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.25s;
}

.contact-link-item:hover .contact-link-icon {
  background: rgba(82,168,116,0.2);
}

.contact-form-wrap {}

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(82,168,116,0.5);
  background: rgba(255,255,255,0.07);
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: rgba(235, 92, 92, 0.8);
  background: rgba(235, 92, 92, 0.08);
}

.form-textarea {
  resize: none;
  height: 110px;
}

.form-status {
  min-height: 22px;
  margin: 4px 0 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.form-status--success {
  color: #8fd6a9;
}

.form-status--error {
  color: #ff9d9d;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.75;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0e2218;
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 36px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--warm-white);
}

.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--warm-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-linkedin:hover { color: var(--green-accent); }

/* ============================================
   WHO SHOULD CALL US
   ============================================ */
#who-calls {
  padding: var(--section-pad) 0;
  background: var(--line-dark);
  position: relative;
}

.wsc-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.wsc-subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 20px;
}

.wsc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .wsc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .wsc-grid { grid-template-columns: 1fr; }
}

.wsc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.wsc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.wsc-card:hover {
  border-color: rgba(82,168,116,0.3);
  transform: translateY(-5px);
  background: rgba(82,168,116,0.04);
}

.wsc-card:hover::before {
  opacity: 1;
}

.wsc-card--highlight {
  background: rgba(45,106,79,0.1);
  border-color: rgba(82,168,116,0.25);
}

.wsc-card--highlight::before {
  opacity: 1;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
}

.wsc-card--highlight:hover {
  background: rgba(45,106,79,0.16);
  border-color: rgba(82,168,116,0.45);
}

.wsc-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.wsc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(200,134,10,0.1);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: 100px;
  padding: 4px 12px;
  align-self: flex-start;
}

.wsc-card--highlight .wsc-tag {
  color: var(--green-accent);
  background: rgba(82,168,116,0.1);
  border-color: rgba(82,168,116,0.25);
}

.wsc-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1.35;
}

.wsc-card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.wsc-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.wsc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

.wsc-check {
  color: var(--green-accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.wsc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-accent);
  letter-spacing: 0.3px;
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s;
  align-self: flex-start;
}

.wsc-cta:hover {
  color: var(--warm-white);
  gap: 10px;
}

.wsc-bottom-strip {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.wsc-bottom-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

.wsc-bottom-text span {
  color: var(--warm-white);
  font-weight: 500;
}
