/* =========================================================
   NZ Solar Panels — flowing dark-navy + green concept
   Display: Poppins · Body: Inter
   One continuous dark canvas with green energy accents.
   ========================================================= */

:root {
    --navy-0:  #0E3360;
    --navy-1:  #11407A;
    --navy-2:  #0F4A76;
    --ink:     #0A2A4E;
    --text:    #D6E3F1;
    --muted:   #9FB5CB;
    --white:   #FFFFFF;

    --green-1: #A7E84B;
    --green-2: #C8F45C;
    --green-3: #7FD22E;
    --green-grad: linear-gradient(120deg, #7FD22E 0%, #A7E84B 48%, #C8F45C 100%);
    --green-soft: rgba(167, 232, 75, 0.18);

    --glass:      rgba(255, 255, 255, 0.07);
    --glass-2:    rgba(255, 255, 255, 0.11);
    --line:       rgba(255, 255, 255, 0.16);
    --line-soft:  rgba(255, 255, 255, 0.08);

    --maxw: 1200px;
    --pad: 40px;
    --radius: 18px;
    --header-h: 108px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(1050px 700px at 86% 0%, rgba(167, 232, 75, 0.24), transparent 60%),
        radial-gradient(820px 640px at 0% 28%, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(1000px 800px at 100% 70%, rgba(167, 232, 75, 0.18), transparent 58%),
        radial-gradient(760px 560px at 50% 112%, rgba(56, 189, 248, 0.14), transparent 60%),
        linear-gradient(180deg, var(--navy-0) 0%, var(--navy-1) 44%, var(--navy-2) 72%, var(--navy-0) 100%);
    background-attachment: fixed;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0; color: var(--white); line-height: 1.08; }
.display { font-family: "Poppins", sans-serif; font-weight: 800; letter-spacing: -0.015em; }
.display em, .grn {
    font-style: normal;
    background: var(--green-grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--green-1);
}
.hl-white { color: var(--white); }
.hl-orange {
    font-style: normal;
    background: linear-gradient(120deg, #FF8A33 0%, #FFB347 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #FF9A3D;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.95rem; line-height: 1;
    padding: 14px 22px; border-radius: 12px; border: 1.5px solid transparent;
    cursor: pointer; white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn .btn-ico { width: 18px; height: 18px; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 0.88rem; }

.btn-primary {
    background: var(--green-grad); color: #0a1c08;
    box-shadow: 0 12px 26px rgba(167, 232, 75, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(167, 232, 75, 0.4); }

.btn-line { background: rgba(255,255,255,0.04); color: var(--white); border-color: rgba(255,255,255,0.22); }
.btn-line:hover { border-color: var(--green-1); color: var(--green-1); transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline-light:hover { border-color: var(--white); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--header-h); display: flex; align-items: center;
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, border-color .25s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(8, 22, 39, 0.82);
    backdrop-filter: blur(14px) saturate(1.1);
    border-bottom-color: var(--line-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; flex: none; }
.brand-logo { height: 82px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 0.92rem; font-weight: 500; color: var(--text); transition: color .15s ease; }
.nav-link:hover { color: var(--green-1); }
.nav-cta-mobile { display: none; }
.header-cta { padding: 11px 18px; font-size: 0.88rem; flex: none; }

.nav-toggle {
    display: none; background: var(--glass-2); border: 1px solid var(--line);
    border-radius: 12px; padding: 8px; color: var(--white); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 64px) 0 96px; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; background-position: center; background-size: cover; z-index: 0; filter: saturate(1.14) brightness(1.1) contrast(1.02); }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(90deg, rgba(14,42,80,0.9) 0%, rgba(14,42,80,0.66) 38%, rgba(14,42,80,0.26) 70%, rgba(14,42,80,0.08) 100%),
        linear-gradient(180deg, rgba(14,42,80,0.32) 0%, transparent 24%, transparent 58%, var(--navy-0) 100%);
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: center; gap: 56px;
}

.eyebrow {
    display: inline-block; font-family: "Poppins", sans-serif;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--green-1); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 800; }
.hero-sub { font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-weight: 600; color: var(--white); margin: 20px 0 16px; }
.lead { font-size: 1.05rem; color: var(--text); max-width: 540px; }

.hero-features { display: flex; flex-wrap: wrap; gap: 26px 34px; margin: 32px 0 34px; }
.hf { display: flex; align-items: center; gap: 13px; }
.hf-ic {
    display: grid; place-items: center; width: 50px; height: 50px; flex: none;
    border-radius: 50%; border: 1.5px solid rgba(167, 232, 75, 0.4);
    background: var(--green-soft); color: var(--green-1);
}
.hf-ic svg { width: 23px; height: 23px; }
.hf strong { display: block; color: var(--white); font-size: 0.96rem; line-height: 1.2; }
.hf small { color: var(--muted); font-size: 0.82rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Why Go Solar glass card */
.why-card {
    background: linear-gradient(165deg, rgba(22, 60, 104, 0.74), rgba(15, 44, 80, 0.6));
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.why-card h3 { font-family: "Poppins", sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.why-rule { display: block; width: 54px; height: 4px; border-radius: 4px; background: var(--green-grad); margin: 14px 0 22px; }
.why-list-hero { display: flex; flex-direction: column; gap: 16px; }
.why-list-hero li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--white); }
.why-list-hero .wc { width: 22px; height: 22px; color: var(--green-1); flex: none; }
.why-foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); color: var(--green-1); font-weight: 600; }

/* ---------- Logos strip ---------- */
.logos { padding: 26px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.logos-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.logos-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.logo-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.95rem; color: var(--text); opacity: 0.85; }
.logo-item .li-ico { width: 19px; height: 19px; color: var(--green-1); }
.logo-item--link { text-decoration: none; transition: color .15s ease, opacity .15s ease; }
.logo-item--link:hover { color: var(--green-1); opacity: 1; }

/* ---------- Section scaffold ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.kicker {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--green-1); margin-bottom: 22px;
    padding: 8px 18px; border-radius: 999px;
    background: var(--green-soft); border: 1px solid rgba(167, 232, 75, 0.34);
}
.kicker-ico { width: 17px; height: 17px; }
.section-head h2 { font-size: clamp(2.5rem, 5.4vw, 3.85rem); font-weight: 800; line-height: 1.04; }
.section-sub { font-size: clamp(1.08rem, 1.4vw, 1.22rem); color: var(--text); margin-top: 22px; line-height: 1.55; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
    background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; display: flex; flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-card:hover {
    transform: translateY(-6px); border-color: rgba(167, 232, 75, 0.5);
    background: var(--glass-2); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.service-ic {
    display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px;
    background: var(--green-soft); color: var(--green-1); margin-bottom: 22px;
    border: 1px solid rgba(167, 232, 75, 0.28);
}
.service-ic svg { width: 27px; height: 27px; }
.service-card h3 { font-family: "Poppins", sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; color: var(--text); flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 600; font-size: 0.9rem; color: var(--green-1); }
.card-link .cl-ico { width: 16px; height: 16px; transition: transform .15s ease; }
.card-link:hover .cl-ico { transform: translateX(4px); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.why-copy h2 { font-size: clamp(1.7rem, 2.9vw, 2.3rem); font-weight: 800; line-height: 1.12; }
.benefits { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.benefits li { display: flex; gap: 15px; align-items: flex-start; }
.bchk {
    display: grid; place-items: center; width: 30px; height: 30px; flex: none; border-radius: 9px;
    background: var(--green-soft); color: var(--green-1); border: 1px solid rgba(167, 232, 75, 0.3);
}
.bchk svg { width: 17px; height: 17px; }
.benefits strong { display: block; color: var(--white); font-size: 1.02rem; margin-bottom: 1px; }
.benefits p { font-size: 0.92rem; color: var(--muted); }

.why-panel {
    background: linear-gradient(160deg, rgba(167, 232, 75, 0.24), rgba(167, 232, 75, 0.05));
    border: 1px solid rgba(167, 232, 75, 0.42); border-radius: 22px; padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.panel-head { display: flex; align-items: center; gap: 10px; color: var(--green-1); font-weight: 600; font-size: 0.92rem; }
.panel-head .ph-ic { width: 20px; height: 20px; }
.panel-stat { margin: 18px 0 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.panel-stat strong { font-family: "Poppins", sans-serif; font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.panel-stat small { color: var(--muted); font-size: 0.9rem; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; }
.panel-grid strong { font-family: "Poppins", sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--green-1); display: block; line-height: 1; }
.panel-grid small { color: var(--muted); font-size: 0.82rem; display: block; margin-top: 6px; }

/* ---------- Recycling ---------- */
.recycle-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 60px; align-items: center; }
.recycle-copy h2 { font-size: clamp(1.7rem, 2.9vw, 2.3rem); font-weight: 800; line-height: 1.12; }
.recycle-lead { font-size: 1.04rem; color: var(--text); margin: 20px 0 26px; max-width: 520px; }
.recycle-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 24px; margin-bottom: 32px; }
.recycle-list li { display: flex; align-items: center; gap: 11px; font-size: 0.98rem; color: var(--white); }
.recycle-list .chk { width: 20px; height: 20px; color: var(--green-1); flex: none; }
.recycle-list .soon { color: var(--muted); font-size: 0.82rem; }
.recycle-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.recycle-media { position: relative; }
.media-card {
    border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.42); aspect-ratio: 4 / 3.4;
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Recycling hub band ---- */
.hub { padding-top: 0; }
.hub-inner {
    max-width: 900px; margin: 0 auto; text-align: center;
    background: linear-gradient(165deg, rgba(22, 60, 104, 0.66), rgba(15, 44, 80, 0.5));
    border: 1px solid var(--line); border-radius: 28px;
    padding: 56px 48px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}
.hub-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--green-1); padding: 8px 16px; border-radius: 999px;
    background: var(--green-soft); border: 1px solid rgba(167, 232, 75, 0.34);
}
.hub-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.04;
    color: var(--white); margin: 22px 0 24px; text-transform: uppercase; letter-spacing: -0.01em;
}
.hub-lead { font-size: 1.06rem; line-height: 1.7; color: var(--text); max-width: 720px; margin: 0 auto 22px; }
.hub-lead strong { color: var(--green-1); font-weight: 700; }
.hub-cta-line { font-size: 1.18rem; font-weight: 600; color: var(--white); margin-bottom: 28px; }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
@media (max-width: 680px) {
    .hub-inner { padding: 40px 24px; border-radius: 22px; }
}
.float-chip {
    position: absolute; left: -16px; bottom: 26px;
    display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
    background: var(--green-grad); color: #0a1c08; font-weight: 700; font-size: 0.92rem;
    padding: 12px 20px; border-radius: 14px; box-shadow: 0 18px 38px rgba(167, 232, 75, 0.32);
}
.float-chip .chip-ic { width: 18px; height: 18px; }

/* ---------- Process ---------- */
.paths {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch;
    max-width: 1060px; margin: 52px auto 0;
}
.path {
    position: relative; padding: clamp(26px, 3vw, 40px); border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
    border: 1px solid var(--line);
}
.path--install { border-color: rgba(167, 232, 75, 0.28); background: linear-gradient(180deg, rgba(167, 232, 75, 0.09), rgba(255, 255, 255, 0.012)); }
.path--recycle { border-color: rgba(34, 211, 238, 0.30); background: linear-gradient(180deg, rgba(34, 211, 238, 0.10), rgba(255, 255, 255, 0.012)); }

.path-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.path-ic {
    flex: 0 0 auto; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
}
.path-ic .path-ic-svg { width: 28px; height: 28px; }
.path--install .path-ic { background: var(--green-soft); color: var(--green-1); border: 1px solid rgba(167, 232, 75, 0.30); }
.path--recycle .path-ic { background: rgba(34, 211, 238, 0.12); color: #22D3EE; border: 1px solid rgba(34, 211, 238, 0.32); }

.path-tag {
    display: block; margin-bottom: 5px; font-family: "Poppins", sans-serif; font-weight: 700;
    font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.path--install .path-tag { color: var(--green-1); }
.path--recycle .path-tag { color: #22D3EE; }
.path-title { font-family: "Poppins", sans-serif; font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 800; letter-spacing: -0.01em; }
.path-sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 28px; }

.path-steps { list-style: none; display: flex; flex-direction: column; }
.path-step { position: relative; display: flex; gap: 18px; padding-bottom: 26px; }
.path-step:last-child { padding-bottom: 0; }
.path-step::before {
    content: ""; position: absolute; left: 19px; top: 44px; bottom: -2px; width: 2px;
}
.path-step:last-child::before { display: none; }
.path--install .path-step::before { background: linear-gradient(180deg, rgba(167, 232, 75, 0.55), rgba(167, 232, 75, 0.06)); }
.path--recycle .path-step::before { background: linear-gradient(180deg, rgba(34, 211, 238, 0.55), rgba(34, 211, 238, 0.06)); }

.path-num {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    position: relative; z-index: 1; font-family: "Poppins", sans-serif; font-weight: 800; font-size: 1.05rem;
}
.path--install .path-num { background: var(--green-grad); color: #0a1c08; box-shadow: 0 8px 20px rgba(167, 232, 75, 0.28); }
.path--recycle .path-num { background: linear-gradient(120deg, #0FB8A6, #22D3EE); color: #032524; box-shadow: 0 8px 20px rgba(34, 211, 238, 0.28); }

.path-step-body { padding-top: 7px; }
.path-step-body h4 { font-family: "Poppins", sans-serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 5px; }
.path-step-body p { font-size: 0.9rem; color: var(--muted); }

.path-or { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.path-or::before, .path-or::after {
    content: ""; flex: 1; width: 2px; background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.path-or span {
    flex: 0 0 auto; margin: 16px 0; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
    font-family: "Poppins", sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.14em; color: var(--white);
    background: linear-gradient(140deg, rgba(167, 232, 75, 0.22), rgba(34, 211, 238, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.20); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

@media (max-width: 880px) {
    .paths { grid-template-columns: 1fr; }
    .path-or { flex-direction: row; padding: 26px 0; }
    .path-or::before, .path-or::after { width: auto; height: 2px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
    .path-or span { margin: 0 16px; }
}

/* ---------- Impact band ---------- */
.impact { padding: 56px 0; margin: 0; }
.impact .impact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    background: linear-gradient(120deg, #0FB8A6 0%, #2FD39A 46%, #7BDD55 100%);
    border-radius: 24px; padding: 44px 36px;
    box-shadow: 0 30px 70px rgba(47, 211, 154, 0.24);
}
.impact-stat { text-align: center; color: #0a1c08; }
.impact-stat strong { font-family: "Poppins", sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1; display: block; }
.impact-stat span { font-size: 0.88rem; font-weight: 600; margin-top: 8px; display: block; opacity: 0.82; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); font-weight: 800; line-height: 1.12; }
.info-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.info-card {
    display: flex; align-items: center; gap: 15px;
    background: var(--glass); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
a.info-card:hover { border-color: rgba(167, 232, 75, 0.5); background: var(--glass-2); transform: translateX(3px); }
.ic-ic { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--green-soft); color: var(--green-1); border: 1px solid rgba(143,209,79,0.28); }
.ic-ic svg { width: 21px; height: 21px; }
.info-card small { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.info-card strong { font-size: 1.04rem; font-weight: 600; color: var(--white); }
.info-card .info-note { display: block; margin-top: 2px; font-size: 0.8rem; color: var(--muted); }
.info-card--fb .ic-ic--fb { background: rgba(24, 119, 242, 0.16); color: #1877F2; border: 1px solid rgba(24, 119, 242, 0.4); }
.info-card--fb .ic-ic--fb .ic-fb-svg { width: 22px; height: 22px; }
a.info-card--fb:hover { border-color: rgba(24, 119, 242, 0.55); }

.quote-form {
    background: linear-gradient(165deg, rgba(22, 60, 104, 0.68), rgba(15, 44, 80, 0.54));
    backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 22px; padding: 34px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.quote-form h3 { font-family: "Poppins", sans-serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 22px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.field input, .field select, .field textarea {
    font-family: "Inter", sans-serif; font-size: 0.96rem; color: var(--white);
    background: rgba(12, 38, 70, 0.55); border: 1.5px solid var(--line); border-radius: 12px;
    padding: 13px 15px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field select option { color: #0a1828; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--green-1); box-shadow: 0 0 0 4px rgba(167, 232, 75, 0.16);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.quote-form .btn-block { margin-top: 6px; }
.form-status { margin-top: 14px; font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form-status.is-sending { color: var(--muted); }
.form-status.is-ok { color: var(--green-1); }
.form-status.is-err { color: #ff7a6b; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, transparent, var(--ink) 22%); border-top: 1px solid var(--line-soft); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding: 64px var(--pad) 46px; }
.footer-blurb { font-size: 0.94rem; color: var(--muted); margin: 20px 0; max-width: 330px; }
.footer-social {
    display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
    border: 1px solid var(--line); color: var(--text);
    transition: color .15s ease, border-color .15s ease, background .15s ease, transform .15s ease;
}
.footer-social:hover { color: #0a1c08; background: var(--green-1); border-color: var(--green-1); transform: translateY(-2px); }
.footer-social .social-ico { width: 21px; height: 21px; }
.footer-col h4 { font-family: "Poppins", sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.92rem; color: var(--muted); transition: color .15s ease; }
.footer-links a:hover { color: var(--green-1); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--text); }
.footer-contact a { color: var(--text); transition: color .15s ease; }
.footer-contact a:hover { color: var(--green-1); }
.footer-contact .fc-note { color: var(--muted); font-size: 0.82rem; }
.fc-ico { width: 18px; height: 18px; color: var(--green-1); flex: none; }
.footer-bottom { border-top: 1px solid var(--line-soft); }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 22px var(--pad); font-size: 0.84rem; color: var(--muted); }
.footer-bottom-links a:hover { color: var(--green-1); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Partner / sub-pages ---------- */
.subpage-hero { padding-top: calc(var(--header-h) + 60px); }
.section-head--center { text-align: center; }
.partner-hero-card {
    background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 52px);
    max-width: 920px; margin: 0 auto;
}
.back-home {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--muted); text-decoration: none;
    margin-bottom: 30px; transition: color .15s ease;
}
.back-home:hover { color: var(--green-1); }
.back-home .bh-ico { width: 16px; height: 16px; transform: rotate(180deg); }

.highlight-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.highlight-grid .service-card { flex: 1 1 300px; max-width: 360px; }

/* PAYMTS partnership feature */
.paymts-feature {
    display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center;
    background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 40px; margin-bottom: 56px;
}
.paymts-logo-wrap {
    display: grid; place-items: center; background: #fff; border-radius: 16px; padding: 34px 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.paymts-logo { width: 100%; max-width: 260px; height: auto; display: block; }
.paymts-body h3 { font-family: "Poppins", sans-serif; font-size: clamp(1.3rem, 2.3vw, 1.7rem); font-weight: 700; margin: 4px 0 14px; }
.paymts-body p { color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.paymts-body p:last-child { margin-bottom: 0; }
.paymts-note {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 6px;
    color: var(--green-1); font-weight: 600;
    background: var(--green-soft); border: 1px solid rgba(167, 232, 75, 0.34);
    padding: 12px 18px; border-radius: 12px;
}
.paymts-note .pn-ico { width: 18px; height: 18px; flex: 0 0 auto; }
.paymts-tcs { color: var(--muted); font-size: 0.82em; opacity: 0.85; }

.partner-grid-head { margin-top: 64px; margin-bottom: 36px; }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.partner-card {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 26px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.partner-card:hover {
    transform: translateY(-6px); border-color: rgba(167, 232, 75, 0.5);
    background: var(--glass-2); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.partner-card .service-ic { margin-bottom: 0; flex: 0 0 auto; }
.partner-card h3 { margin-bottom: 8px; }

.keep-green-inner {
    max-width: 880px; margin: 0 auto; text-align: center;
    background: var(--green-soft); border: 1px solid rgba(167, 232, 75, 0.34);
    border-radius: var(--radius); padding: 56px 44px;
}
.kg-ic {
    display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 16px;
    background: rgba(167, 232, 75, 0.18); color: var(--green-1); margin-bottom: 24px;
    border: 1px solid rgba(167, 232, 75, 0.34);
}
.kg-ic svg { width: 32px; height: 32px; }
/* Brand badge image used in place of the leaf icon */
.hf-ic--badge { background: none; border: none; width: 52px; height: 52px; }
.hf-ic--badge .brand-badge { width: 52px; height: 52px; object-fit: contain; display: block; }
.kg-ic--badge { background: none; border: none; width: 76px; height: 76px; }
.kg-ic--badge .brand-badge { width: 76px; height: 76px; object-fit: contain; display: block; }
.logo-item .li-badge { width: 28px; height: 28px; object-fit: contain; flex: none; }
.float-chip .chip-badge { width: 26px; height: 26px; object-fit: contain; flex: none; }
.keep-green-inner .display { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; line-height: 1.06; }
.keep-green-inner p { color: var(--text); margin-top: 20px; line-height: 1.6; }

.partner-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.partner-back { text-align: center; margin-top: 36px; }

/* Partner badge / embed */
.badge-share {
    display: grid; grid-template-columns: minmax(0, 320px) 1fr; gap: 36px; align-items: stretch;
    max-width: 920px; margin: 0 auto;
}
.badge-preview {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 28px;
}
.badge-img { width: 220px; height: 220px; object-fit: contain; filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.35)); }
.badge-emblem { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.badge-cap { font-family: "Poppins", sans-serif; font-weight: 700; text-align: center; line-height: 1.1; }
.badge-cap--top { font-size: 1.3rem; color: var(--white); }
.badge-cap--bottom { font-size: 1.3rem; color: var(--white); }
.badge-embed {
    display: flex; flex-direction: column; gap: 14px;
    background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px;
}
.badge-embed-label { font-weight: 700; font-size: 1.02rem; color: var(--white); }
.badge-code {
    width: 100%; resize: vertical; min-height: 120px;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace; font-size: 0.86rem; line-height: 1.55;
    color: var(--green-1); background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px;
}
.badge-code:focus { outline: none; border-color: var(--green-1); }
.js-copy { align-self: flex-start; }
.js-copy.is-copied { border-color: var(--green-1); color: var(--green-1); }
.badge-hint { font-size: 0.88rem; color: var(--muted); margin-top: 2px; }
.badge-hint strong { color: var(--text); word-break: break-all; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root { --pad: 28px; }
    .hero-inner, .why-grid, .recycle-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .why-card { max-width: 520px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .header-cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: rgba(8, 22, 39, 0.98); backdrop-filter: blur(14px);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
        padding: 12px var(--pad) 26px;
        transform: translateY(-12px); opacity: 0; pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
        max-height: calc(100vh - var(--header-h)); overflow-y: auto;
        border-bottom: 1px solid var(--line);
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 1.02rem; }
    .nav-cta-mobile { display: inline-flex; margin-top: 18px; }
}

@media (max-width: 680px) {
    .section { padding: 70px 0; }
    .service-grid, .recycle-list, .field-row, .impact .impact-grid, .partner-grid { grid-template-columns: 1fr; }
    .paymts-feature { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
    .highlight-grid .service-card { flex-basis: 100%; max-width: none; }
    .badge-share { grid-template-columns: 1fr; gap: 24px; }
    .panel-grid { grid-template-columns: 1fr 1fr; }
    .hero-features { gap: 18px 24px; }
    .float-chip { left: 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-cta .btn { flex: 1 1 auto; }
}

@media (max-width: 460px) {
    .footer-grid { grid-template-columns: 1fr; }
    .panel-grid { grid-template-columns: 1fr; }
}
