/* ═══════════════════════════════════════════════════════
   WAZA GREEN  —  assets/css/style.css  v3
   Plastic Waste → Durable Infrastructure for Africa
   Fonts : Syne (display) · DM Sans (body)
   Palette: Deep forest greens + electric lime
═══════════════════════════════════════════════════════ */

:root {
    --green-deep:   #0d3b1e;
    --green-forest: #1a5c32;
    --green-mid:    #2d8a50;
    --green-vivid:  #3ecf6e;
    --green-lime:   #7fff4f;
    --green-pale:   #d4f5e0;
    --green-glass:  rgba(61,207,110,.12);
    --cream:        #f6f9f4;
    --dark:         #0a1f0f;
    --text:         #1c2e22;
    --text-muted:   #527a5e;
    --white:        #ffffff;
    --shadow-g:     0 8px 40px rgba(61,207,110,.2);
    --shadow-d:     0 20px 60px rgba(13,59,30,.3);
    --r-sm: 12px; --r-md: 20px; --r-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Touch devices: normal cursor */
@media (hover: hover) {
    body { cursor: none; }
}

img { max-width: 100%; display: block; }
a   { color: inherit; }
button { font-family: inherit; }

/* ── CUSTOM CURSOR (desktop only) ── */
#cursor, #cursor-ring {
    pointer-events: none;
    position: fixed; top: 0; left: 0;
    transform: translate(-50%,-50%);
    z-index: 9999; border-radius: 50%;
}
#cursor {
    width: 12px; height: 12px;
    background: var(--green-vivid);
    transition: width .2s, height .2s;
    mix-blend-mode: multiply;
    z-index: 9999;
}
#cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--green-vivid);
    opacity: .5; z-index: 9998;
}
@media (hover: none) {
    #cursor, #cursor-ring { display: none !important; }
}

/* ── SCROLL PROGRESS ── */
#progress-bar {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--green-vivid), var(--green-lime));
    z-index: 10000;
    box-shadow: 0 0 10px var(--green-lime);
    transition: width .1s linear;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
header {
    position: fixed; inset: 0 0 auto; z-index: 1000;
    transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
header.scrolled {
    background: rgba(10,31,15,.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(61,207,110,.18);
}
nav {
    max-width: 1280px; margin: 0 auto;
    padding: 18px 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 48px; }
.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 1.4rem;
    color: var(--white); letter-spacing: -.02em;
}
.logo-text span { color: var(--green-lime); }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
    font-size: .85rem; font-weight: 500;
    color: rgba(255,255,255,.75); text-decoration: none;
    padding: 8px 14px; border-radius: 8px;
    letter-spacing: .03em;
    transition: color .25s, background .25s;
}
.nav-links a:hover  { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--green-lime); }
.nav-cta {
    background: var(--green-vivid) !important;
    color: var(--dark) !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
}
.nav-cta:hover { background: var(--green-lime) !important; }

/* hamburger */
.hamburger {
    display: none; background: none; border: none;
    cursor: pointer; /* real cursor on all devices */
    flex-direction: column; gap: 5px; padding: 6px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px; transition: all .3s;
}

/* ── MOBILE FULLSCREEN NAV ── */
.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: var(--dark); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    cursor: auto; /* always default on touch */
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-family: 'Syne', sans-serif;
    font-size: 1.9rem; font-weight: 700;
    color: var(--white); text-decoration: none;
    padding: 4px 0; transition: color .3s;
}
.mobile-nav a:hover { color: var(--green-vivid); }

/* ── CRITICAL FIX: close button must use pointer cursor, not none ── */
.mobile-close {
    position: absolute; top: 24px; right: 28px;
    background: none; border: none;
    cursor: pointer;   /* NOT cursor:none */
    color: var(--white); font-size: 2rem; line-height: 1;
    padding: 8px; border-radius: 8px;
    transition: color .3s, background .3s;
}
.mobile-close:hover { color: var(--green-vivid); background: rgba(255,255,255,.06); }

/* ══════════════════════════════════════
   SHARED LAYOUT
══════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--green-mid); margin-bottom: 14px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--green-vivid); }

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
    color: var(--green-deep);
}
.section-title .highlight { color: var(--green-mid); }

.section-lead {
    font-size: 1.05rem; line-height: 1.85;
    color: var(--text-muted); max-width: 600px; margin-top: 16px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary, .btn-outline, .btn-dark, .btn-green-outline {
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; border-radius: 100px;
    font-weight: 600; font-size: .95rem;
    cursor: pointer; transition: all .3s;
    border: none; font-family: inherit;
}
.btn-primary {
    background: var(--green-vivid); color: var(--dark);
    padding: 15px 34px;
    box-shadow: 0 0 36px rgba(61,207,110,.35);
}
.btn-primary:hover { background: var(--green-lime); transform: translateY(-3px); box-shadow: 0 0 56px rgba(127,255,79,.45); }

.btn-outline {
    background: transparent; color: var(--white);
    padding: 14px 34px; border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--green-vivid); color: var(--green-vivid); transform: translateY(-3px); }

.btn-dark {
    background: var(--dark); color: var(--green-lime);
    padding: 15px 38px;
}
.btn-dark:hover { background: var(--green-deep); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(10,31,15,.4); }

.btn-green-outline {
    background: transparent; color: var(--green-vivid);
    padding: 14px 34px; border: 1.5px solid var(--green-vivid);
}
.btn-green-outline:hover { background: var(--green-vivid); color: var(--dark); transform: translateY(-3px); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--dark);
}
canvas#particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-images     { position: absolute; inset: 0; z-index: 2; }
.hero-images img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-images img.active { opacity: .3; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 3;
    background: linear-gradient(135deg,
        rgba(10,31,15,.9) 0%, rgba(13,59,30,.75) 50%, rgba(10,31,15,.92) 100%);
}
.hero-content {
    position: relative; z-index: 4;
    text-align: center; max-width: 960px; padding: 0 24px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-glass); border: 1px solid rgba(61,207,110,.35);
    border-radius: 100px; padding: 8px 22px; margin-bottom: 28px;
    font-size: .78rem; font-weight: 600; color: var(--green-vivid);
    letter-spacing: .12em; text-transform: uppercase;
    backdrop-filter: blur(10px);
    animation: fadeUp .8s ease both;
}
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 800; line-height: 1.05;
    color: var(--white); letter-spacing: -.03em; margin-bottom: 24px;
    animation: fadeUp .8s .15s ease both;
}
.hero-title .accent        { color: var(--green-lime); }
.hero-title .accent-stroke { -webkit-text-stroke: 2px var(--green-vivid); color: transparent; }
.hero-sub {
    font-size: 1.1rem; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,.72); max-width: 680px; margin: 0 auto 14px;
    animation: fadeUp .8s .3s ease both;
}
.hero-tagline {
    font-size: .8rem; font-weight: 600; letter-spacing: .16em;
    color: var(--green-vivid); text-transform: uppercase; margin-bottom: 40px;
    animation: fadeUp .8s .4s ease both;
}
.hero-actions {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp .8s .5s ease both;
}
.hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,.35); font-size: .72rem;
    letter-spacing: .15em; text-transform: uppercase;
    animation: fadeUp .8s .9s ease both;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(var(--green-vivid), transparent);
    animation: scrollPulse 2s infinite;
}

/* ══════════════════════════════════════
   IMPACT TICKER
══════════════════════════════════════ */
.impact-ticker { background: var(--green-forest); overflow: hidden; }
.ticker-inner  {
    display: flex; width: max-content;
    animation: ticker 24s linear infinite;
}
.ticker-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 52px; white-space: nowrap;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: .95rem; color: var(--white);
}
.ticker-item .num { color: var(--green-lime); font-size: 1.3rem; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-vivid); opacity: .5; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
    position: relative; min-height: 55vh;
    display: flex; align-items: flex-end;
    overflow: hidden; background: var(--dark);
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-forest) 60%, var(--dark) 100%);
}
.page-hero-pattern {
    position: absolute; inset: 0; opacity: .07;
    background-image: radial-gradient(circle, var(--green-lime) 1px, transparent 1px);
    background-size: 36px 36px;
}
.page-hero-content { position: relative; z-index: 2; padding: 120px 0 72px; }
.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.6rem, 6.5vw, 5.5rem);
    font-weight: 800; color: var(--white);
    letter-spacing: -.04em; line-height: 1;
}
.page-hero h1 span { color: var(--green-lime); }
.page-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,.6);
    max-width: 560px; margin-top: 20px; line-height: 1.75;
}
.page-hero-micro { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.micro-badge {
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green-vivid);
    border: 1px solid rgba(61,207,110,.3); border-radius: 100px; padding: 6px 16px;
}

/* ══════════════════════════════════════
   WHAT WE DO / FLOW DIAGRAM
══════════════════════════════════════ */
.what-we-do { padding: 110px 0; background: var(--cream); }
.wwd-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.wwd-text h3 {
    font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 700;
    color: var(--green-deep); margin-bottom: 16px;
}
.wwd-text p { font-size: .97rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.wwd-pills  { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green-pale); color: var(--green-forest);
    border-radius: 100px; padding: 8px 18px;
    font-size: .82rem; font-weight: 600;
    border: 1px solid rgba(61,207,110,.2);
}
.flow-diagram {
    background: var(--white); border-radius: 24px; padding: 36px;
    border: 1px solid rgba(61,207,110,.1);
    box-shadow: var(--shadow-g);
}
.flow-step {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 18px 0; position: relative;
}
.flow-step:not(:last-child)::after {
    content: ''; position: absolute;
    left: 26px; top: 64px; bottom: -18px;
    border-left: 2px dashed rgba(61,207,110,.25);
}
.flow-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--green-deep);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flow-icon i { color: var(--green-vivid); font-size: 1.25rem; }
.flow-content h4 {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: .93rem;
    color: var(--green-deep); margin-bottom: 4px;
}
.flow-content p { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════
   IMPACT METRICS
══════════════════════════════════════ */
.impact-metrics { padding: 110px 0; background: var(--green-deep); position: relative; overflow: hidden; }
.impact-metrics::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 70% at 10% 50%, rgba(61,207,110,.14) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 85% 15%, rgba(127,255,79,.08) 0%, transparent 60%);
}
.im-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 1; }
.im-header .section-label { color: var(--green-vivid); }
.im-header .section-title { color: var(--white); }
.im-header .section-title span { color: var(--green-lime); }
.metrics-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; position: relative; z-index: 1; }
.metric-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(61,207,110,.18);
    border-radius: 20px; padding: 32px 20px; text-align: center;
    transition: all .4s; position: relative; overflow: hidden;
}
.metric-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--green-vivid), var(--green-lime));
    transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.metric-card:hover { border-color: rgba(61,207,110,.45); transform: translateY(-6px); }
.metric-card:hover::before { transform: scaleX(1); }
.metric-card i { font-size: 1.8rem; color: var(--green-vivid); margin-bottom: 16px; display: block; }
.metric-num {
    font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800;
    color: var(--white); line-height: 1; margin-bottom: 8px;
}
.metric-num .suffix { color: var(--green-lime); }
.metric-label { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products { padding: 110px 0; background: var(--white); }
.products-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 72px; }
.products-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.product-card {
    background: var(--cream); border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-g); border-color: rgba(61,207,110,.3); }
.product-card-top {
    background: var(--green-deep); padding: 36px 28px 28px;
    position: relative; overflow: hidden;
}
.product-card-top::after {
    content: ''; position: absolute; top: -30px; right: -30px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(61,207,110,.1); pointer-events: none;
}
.product-icon   { font-size: 2.4rem; color: var(--green-vivid); margin-bottom: 14px; display: block; }
.product-card-top h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--white); margin-bottom: 6px; }
.product-tagline { font-size: .8rem; color: rgba(255,255,255,.5); }
.product-card-body { padding: 24px 28px 28px; }
.product-card-body p { font-size: .88rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.product-features { list-style: none; }
.product-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: .83rem; color: var(--text-muted); margin-bottom: 8px;
}
.product-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green-vivid); flex-shrink: 0; }
.product-flag {
    display: inline-block; background: var(--green-vivid); color: var(--dark);
    font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}

/* ══════════════════════════════════════
   WHY IT MATTERS
══════════════════════════════════════ */
.why-matters { padding: 110px 0; background: var(--cream); }
.wm-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.challenge-cards { display: flex; flex-direction: column; gap: 16px; }
.challenge-card {
    background: var(--white); border-radius: 18px; padding: 28px;
    border: 1px solid rgba(61,207,110,.1);
    border-left: 4px solid transparent; transition: all .4s;
}
.challenge-card:hover { border-left-color: var(--green-vivid); box-shadow: var(--shadow-g); transform: translateX(4px); }
.challenge-card .ch-icon { font-size: 1.5rem; color: var(--green-mid); margin-bottom: 12px; display: block; }
.challenge-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--green-deep); margin-bottom: 8px; }
.challenge-card p  { font-size: .87rem; line-height: 1.7; color: var(--text-muted); }

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.comparison { padding: 100px 0; background: var(--green-deep); }
.comparison .section-title { color: var(--white); }
.comparison .section-title span { color: var(--green-lime); }
.comp-table {
    width: 100%; border-collapse: collapse; margin-top: 48px;
    border-radius: 20px; overflow: hidden;
}
.comp-table th {
    padding: 20px 24px; text-align: left;
    font-family: 'Syne', sans-serif; font-size: .8rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
}
.comp-table th:first-child { color: rgba(255,255,255,.5); background: rgba(255,255,255,.03); }
.comp-table th:nth-child(2){ color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.comp-table th:nth-child(3){ color: var(--green-lime); background: rgba(61,207,110,.12); }
.comp-table td {
    padding: 16px 24px; font-size: .9rem; color: rgba(255,255,255,.7);
    border-top: 1px solid rgba(255,255,255,.05);
}
.comp-table td:nth-child(2) { background: rgba(255,255,255,.02); }
.comp-table td:nth-child(3) { background: rgba(61,207,110,.06); color: var(--green-vivid); font-weight: 600; }
.comp-check { color: var(--green-vivid); }
.comp-x     { color: rgba(255,255,255,.25); }

/* ══════════════════════════════════════
   SDG SECTION
══════════════════════════════════════ */
.sdg-section { padding: 100px 0; background: var(--white); }
.sdg-grid    { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.sdg-card {
    background: var(--cream); border-radius: 20px; padding: 32px 24px;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s; text-align: center;
}
.sdg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-g); border-color: rgba(61,207,110,.3); }
.sdg-num {
    font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800;
    color: var(--green-vivid); line-height: 1; margin-bottom: 12px;
}
.sdg-card h4 { font-family: 'Syne', sans-serif; font-size: .95rem; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.sdg-card p  { font-size: .83rem; line-height: 1.65; color: var(--text-muted); }

/* ══════════════════════════════════════
   PHILOSOPHY STRIP
══════════════════════════════════════ */
.philosophy { padding: 100px 0; background: var(--green-vivid); }
.philosophy-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.philosophy h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800; color: var(--dark); letter-spacing: -.03em; margin-bottom: 20px;
}
.philosophy p { font-size: 1.05rem; color: rgba(10,31,15,.75); line-height: 1.8; margin-bottom: 14px; }
.philosophy-points { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.philosophy-point {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; color: rgba(10,31,15,.7); line-height: 1.55;
}
.philosophy-point::before { content: '↗'; color: var(--dark); font-weight: 700; flex-shrink: 0; }
.philosophy-quote {
    background: var(--dark); border-radius: 24px; padding: 48px;
}
.philosophy-quote blockquote {
    font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700;
    line-height: 1.55; color: var(--white); margin-bottom: 20px;
}
.philosophy-quote cite { font-size: .85rem; color: var(--green-vivid); font-style: normal; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
    padding: 110px 0; background: var(--cream); text-align: center;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(61,207,110,.1) 0%, transparent 70%);
}
.cta-section h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800; color: var(--green-deep); letter-spacing: -.03em; margin-bottom: 20px;
}
.cta-section p { font-size: 1.1rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 40px; line-height: 1.75; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-text h2 {
    font-family: 'Syne', sans-serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -.03em;
    color: var(--green-deep); margin-bottom: 24px;
}
.about-text p { font-size: .97rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 14px; }
.about-image { position: relative; }
.about-image img { border-radius: 28px; box-shadow: 0 32px 80px rgba(13,59,30,.22); }
.about-image::before {
    content: ''; position: absolute;
    inset: -10px -10px 10px 10px;
    border: 2px solid rgba(61,207,110,.22); border-radius: 32px; z-index: -1;
}
.highlight-box {
    background: var(--green-deep); border-radius: 18px; padding: 28px; margin-top: 20px;
}
.highlight-box p { font-style: italic; color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7; margin: 0; }
.reality-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.reality-card {
    background: var(--white); border-radius: 20px; padding: 36px;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s;
}
.reality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-g); }
.reality-card i  { font-size: 2rem; color: var(--green-mid); margin-bottom: 18px; display: block; }
.reality-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--green-deep); margin-bottom: 12px; }
.reality-card p  { font-size: .87rem; line-height: 1.75; color: var(--text-muted); }
.approach-steps  { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; }
.approach-step {
    background: var(--white); padding: 40px 28px;
    border: 1px solid rgba(61,207,110,.08); transition: all .4s; position: relative;
}
.approach-step:first-child { border-radius: 20px 0 0 20px; }
.approach-step:last-child  { border-radius: 0 20px 20px 0; }
.approach-step:hover { background: var(--green-deep); z-index: 1; transform: scaleY(1.03); }
.approach-step .step-num {
    font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800;
    color: rgba(61,207,110,.1); line-height: 1; margin-bottom: 20px; transition: color .4s;
}
.approach-step:hover .step-num { color: rgba(127,255,79,.15); }
.approach-step i    { font-size: 1.8rem; color: var(--green-mid); margin-bottom: 16px; display: block; transition: color .4s; }
.approach-step:hover i { color: var(--green-vivid); }
.approach-step h4   { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--green-deep); margin-bottom: 10px; transition: color .4s; }
.approach-step:hover h4 { color: var(--white); }
.approach-step p    { font-size: .85rem; line-height: 1.65; color: var(--text-muted); transition: color .4s; }
.approach-step:hover p { color: rgba(255,255,255,.65); }
.beliefs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.belief-card {
    background: var(--white); border-radius: 18px; padding: 32px;
    border: 1px solid rgba(61,207,110,.1); border-left: 4px solid var(--green-vivid); transition: all .4s;
}
.belief-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-g); }
.belief-card p { font-size: .92rem; line-height: 1.8; color: var(--text-muted); }
.mvcard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mvcard {
    background: var(--green-deep); border-radius: 24px; padding: 48px; position: relative; overflow: hidden;
}
.mvcard::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(61,207,110,.1); pointer-events: none;
}
.mvcard i  { font-size: 2.2rem; color: var(--green-vivid); margin-bottom: 18px; display: block; }
.mvcard h3 { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.mvcard p  { font-size: .93rem; line-height: 1.8; color: rgba(255,255,255,.6); }
.mvcard.v2 { background: var(--green-forest); }

/* ══════════════════════════════════════
   TEAM PAGE
══════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 28px; }
.team-card {
    background: var(--white); border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s; cursor: pointer;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-g); border-color: rgba(61,207,110,.3); }
.team-card-top {
    padding: 36px 28px 24px; text-align: center;
    background: linear-gradient(160deg, var(--green-pale) 0%, rgba(212,245,224,.25) 100%);
    position: relative;
}
.team-card-top::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 2.5px; background: var(--green-vivid); border-radius: 2px;
}
.team-avatar {
    width: 110px; height: 110px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 18px; border: 4px solid var(--white);
    box-shadow: 0 8px 32px rgba(13,59,30,.2); display: block; transition: transform .4s;
}
.team-card:hover .team-avatar { transform: scale(1.06); }
.team-card-top h3  { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--green-deep); margin-bottom: 6px; }
.team-role         { font-size: .8rem; color: var(--green-mid); font-weight: 500; line-height: 1.5; }
.tag {
    display: inline-block; background: var(--green-pale); color: var(--green-forest);
    border-radius: 100px; padding: 4px 11px; font-size: .72rem; font-weight: 600;
    margin: 3px 2px; border: 1px solid rgba(61,207,110,.2);
}
.tags { margin-top: 12px; }
.team-card-body { padding: 24px 28px 28px; }
.team-bio       { font-size: .87rem; line-height: 1.8; color: var(--text-muted); }
.team-bio-full {
    max-height: 0; overflow: hidden;
    transition: max-height .5s ease;
    border-top: 1px solid rgba(61,207,110,.1); margin-top: 12px; padding-top: 0;
}
.team-card.expanded .team-bio-full { padding-top: 14px; }
.team-expand {
    display: flex; align-items: center; gap: 6px;
    font-size: .78rem; font-weight: 600; color: var(--green-mid);
    margin-top: 14px; cursor: pointer; background: none; border: none; padding: 0;
    transition: color .3s;
}
.team-expand:hover { color: var(--green-forest); }
.team-expand i { transition: transform .3s; font-size: .72rem; }
.responsibilities { list-style: none; margin-top: 12px; }
.responsibilities li {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: .82rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5;
}
.responsibilities li::before { content: '→'; color: var(--green-vivid); flex-shrink: 0; font-size: .75rem; margin-top: 1px; }

/* ══════════════════════════════════════
   PRODUCTS PAGE (full)
══════════════════════════════════════ */
.products-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.product-full-card {
    background: var(--white); border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s; display: flex;
}
.product-full-card:hover { box-shadow: var(--shadow-g); border-color: rgba(61,207,110,.3); }
.product-full-card .pf-icon-col {
    background: var(--green-deep); padding: 40px 32px;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start; min-width: 140px; gap: 16px;
}
.product-full-card .pf-icon-col i { font-size: 2.8rem; color: var(--green-vivid); }
.product-full-card .pf-icon-col .product-flag { margin: 0; }
.product-full-card .pf-body { padding: 36px; flex: 1; }
.product-full-card h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--green-deep); margin-bottom: 8px; }
.product-full-card .pf-tagline { font-size: .83rem; color: var(--green-mid); font-weight: 600; margin-bottom: 16px; }
.product-full-card p { font-size: .9rem; line-height: 1.78; color: var(--text-muted); margin-bottom: 20px; }
.use-cases { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.use-case {
    font-size: .75rem; font-weight: 600; padding: 5px 13px;
    background: var(--cream); color: var(--green-forest);
    border-radius: 100px; border: 1px solid rgba(61,207,110,.2);
}

/* ══════════════════════════════════════
   IMPACT PAGE
══════════════════════════════════════ */
.impact-env-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.env-card {
    background: var(--white); border-radius: 20px; padding: 36px;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s;
}
.env-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-g); border-color: rgba(61,207,110,.3); }
.env-card i  { font-size: 2rem; color: var(--green-vivid); margin-bottom: 16px; display: block; }
.env-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--green-deep); margin-bottom: 10px; }
.env-card p  { font-size: .87rem; line-height: 1.75; color: var(--text-muted); }
.env-card ul { list-style: none; margin-top: 12px; }
.env-card ul li {
    font-size: .85rem; color: var(--text-muted); padding: 6px 0;
    border-bottom: 1px solid rgba(61,207,110,.08);
    display: flex; align-items: center; gap: 8px;
}
.env-card ul li::before { content: '●'; color: var(--green-vivid); font-size: .5rem; }
.process-strip {
    display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
    margin-top: 60px; background: var(--white); border-radius: 20px;
    overflow: hidden; border: 1px solid rgba(61,207,110,.1);
}
.process-step {
    padding: 36px 24px; text-align: center; position: relative;
    border-right: 1px solid rgba(61,207,110,.08); transition: background .3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--green-pale); }
.process-step .ps-num {
    font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800;
    color: rgba(61,207,110,.25); line-height: 1; margin-bottom: 12px;
}
.process-step i  { font-size: 1.6rem; color: var(--green-mid); margin-bottom: 12px; display: block; }
.process-step h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .92rem; color: var(--green-deep); margin-bottom: 8px; }
.process-step p  { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.contact-form {
    background: var(--white); border-radius: 28px; padding: 52px;
    border: 1px solid rgba(61,207,110,.12);
    box-shadow: 0 4px 40px rgba(13,59,30,.07);
}
.contact-form h2 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--green-deep); margin-bottom: 8px; }
.contact-form .form-subtitle { font-size: .93rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.6; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: .82rem; font-weight: 600;
    color: var(--green-forest); margin-bottom: 8px; letter-spacing: .03em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; background: var(--cream);
    border: 1.5px solid rgba(61,207,110,.2); border-radius: 12px;
    padding: 14px 18px; font-size: .93rem; font-family: inherit;
    color: var(--text); transition: border-color .25s, box-shadow .25s;
    outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-vivid);
    box-shadow: 0 0 0 4px rgba(61,207,110,.12);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error { border-color: #e53e3e; }
.field-error { font-size: .78rem; color: #e53e3e; margin-top: 5px; min-height: 16px; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-submit {
    width: 100%; background: var(--green-vivid); color: var(--dark);
    padding: 17px; border: none; border-radius: 12px;
    font-family: inherit; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all .3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--green-lime); transform: translateY(-2px); box-shadow: var(--shadow-g); }
.form-submit:disabled { opacity: .7; cursor: default; transform: none; }
.contact-info { padding-top: 8px; }
.contact-info h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--green-deep); margin-bottom: 8px; }
.contact-info > p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.contact-detail {
    display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start;
}
.contact-detail .ci-icon {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
}
.contact-detail .ci-icon i { color: var(--green-forest); font-size: 1.2rem; }
.contact-detail h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; color: var(--green-deep); margin-bottom: 4px; }
.contact-detail p  { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }
.contact-social { margin-top: 36px; }
.contact-social h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .85rem; color: var(--green-deep); margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase; }
.contact-social-links { display: flex; gap: 12px; }
.social-btn {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--green-pale); border: 1px solid rgba(61,207,110,.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--green-forest); text-decoration: none; font-size: .95rem; transition: all .3s;
}
.social-btn:hover { background: var(--green-vivid); color: var(--dark); border-color: var(--green-vivid); transform: translateY(-2px); }
.partnership-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.partnership-card {
    background: var(--cream); border-radius: 16px; padding: 24px;
    border: 1px solid rgba(61,207,110,.1); transition: all .4s;
}
.partnership-card:hover { background: var(--green-pale); border-color: rgba(61,207,110,.3); }
.partnership-card i  { font-size: 1.4rem; color: var(--green-mid); margin-bottom: 10px; display: block; }
.partnership-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: .9rem; color: var(--green-deep); margin-bottom: 6px; }
.partnership-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(61,207,110,.12); }
.faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; text-align: left;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
    color: var(--green-deep); transition: color .3s;
}
.faq-question:hover { color: var(--green-mid); }
.faq-question .faq-icon { color: var(--green-vivid); transition: transform .35s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer p {
    font-size: .93rem; color: var(--text-muted); line-height: 1.8;
    padding-bottom: 24px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--dark); padding: 80px 0 32px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 56px; margin-bottom: 56px; padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-text {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem;
    color: var(--white); margin-bottom: 14px; display: block;
}
.footer-brand-text span { color: var(--green-lime); }
.footer-brand p { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.38); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social .social-btn {
    background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08);
    color: rgba(255,255,255,.4);
}
.footer-social .social-btn:hover { background: var(--green-vivid); color: var(--dark); border-color: var(--green-vivid); }
.footer-col h5 {
    font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700;
    color: var(--green-vivid); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .85rem; color: rgba(255,255,255,.38); margin-bottom: 11px; line-height: 1.5;
}
.footer-contact-item i { color: var(--green-vivid); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.22); }
.footer-bottom a { color: var(--green-vivid); text-decoration: none; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: .3; }
    50% { opacity: 1; }
}

.reveal, .fade-in-section {
    opacity: 0; transform: translateY(36px);
    transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible, .fade-in-section.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
    .metrics-grid { grid-template-columns: repeat(3,1fr); }
    .products-grid { grid-template-columns: repeat(2,1fr); }
    .sdg-grid { grid-template-columns: repeat(2,1fr); }
    .approach-steps { grid-template-columns: repeat(2,1fr); }
    .approach-step:first-child  { border-radius: 20px 0 0 0; }
    .approach-step:nth-child(2) { border-radius: 0 20px 0 0; }
    .approach-step:nth-child(3) { border-radius: 0 0 0 20px; }
    .approach-step:last-child   { border-radius: 0 0 20px 0; }
    .process-strip { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
    .wwd-grid { grid-template-columns: 1fr; gap: 48px; }
    .products-header { grid-template-columns: 1fr; gap: 20px; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-grid.reverse { direction: ltr; }
    .mvcard-grid { grid-template-columns: 1fr; }
    .wm-grid { grid-template-columns: 1fr; gap: 48px; }
    .reality-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .products-full-grid { grid-template-columns: 1fr; }
    .product-full-card { flex-direction: column; }
    .product-full-card .pf-icon-col { flex-direction: row; padding: 24px 28px; min-width: unset; }
}
@media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .container { padding: 0 20px; }
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
    .metrics-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .sdg-grid { grid-template-columns: 1fr 1fr; }
    .approach-steps { grid-template-columns: 1fr; }
    .approach-step  { border-radius: 16px !important; }
    .reality-grid   { grid-template-columns: 1fr; }
    .team-grid      { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom  { flex-direction: column; gap: 6px; text-align: center; }
    .comp-table td, .comp-table th { padding: 12px 14px; font-size: .8rem; }
    .form-row       { grid-template-columns: 1fr; }
    .contact-form   { padding: 32px 24px; }
    .partnership-cards { grid-template-columns: 1fr; }
    .process-strip  { grid-template-columns: repeat(2,1fr); }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.4rem); }
    .page-hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
    .impact-env-grid { grid-template-columns: 1fr; }
    .wwd-grid { gap: 32px; }
}
@media (max-width: 480px) {
    .metrics-grid { grid-template-columns: 1fr; }
    .sdg-grid     { grid-template-columns: 1fr; }
    .process-strip { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-buttons  { flex-direction: column; align-items: center; }
}
