@font-face {
  font-family: 'EcoscrapDisplay';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-display-400-normal.otf') format('opentype');
}
@font-face {
  font-family: 'EcoscrapDisplay';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-display-700-normal.otf') format('opentype');
}
@font-face {
  font-family: 'EcoscrapDisplay';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../fonts/ecoscrap-display-400-italic.otf') format('opentype');
}
@font-face {
  font-family: 'EcoscrapDisplay';
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url('../fonts/ecoscrap-display-700-italic.otf') format('opentype');
}
@font-face {
  font-family: 'EcoscrapAccent';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-accent-400-normal.otf') format('opentype');
}
@font-face {
  font-family: 'EcoscrapAccent';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-accent-700-normal.otf') format('opentype');
}
@font-face {
  font-family: 'EcoscrapBody';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-body-300-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'EcoscrapBody';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-body-400-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'EcoscrapBody';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-body-500-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'EcoscrapBody';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/ecoscrap-body-700-normal.ttf') format('truetype');
}
@font-face {
  font-family: 'EcoscrapBody';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../fonts/ecoscrap-body-400-italic.ttf') format('truetype');
}


/* ════════════════════════════════════════
   TOKENS & RESET
════════════════════════════════════════ */
:root {
  --bg:       #07090b;
  --bg2:      #0c1014;
  --bg3:      #111820;
  --bg4:      #16202a;
  --gold:     #c9a636;
  --gold2:    #e8c84a;
  --gold3:    #f5e08a;
  --green:    #1b5c30;
  --green2:   #247a3e;
  --green3:   #2fa852;
  --white:    #f2ede6;
  --muted:    rgba(242,237,230,0.5);
  --muted2:   rgba(242,237,230,0.28);
  --border:   rgba(201,166,54,0.18);
  --border2:  rgba(201,166,54,0.08);

  --font-display: 'EcoscrapDisplay', 'TeX Gyre Pagella', Georgia, 'Times New Roman', serif;
  --font-accent:  'EcoscrapAccent', 'TeX Gyre Adventor', Impact, 'Arial Narrow', sans-serif;
  --font-body:    'EcoscrapBody', Poppins, 'Segoe UI', system-ui, sans-serif;
}
*,*::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(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: auto;
}
img { display:block; max-width:100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════ */
.cursor-dot {
  display: none;
  position: fixed; top:0; left:0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-ring {
  display: none;
  position: fixed; top:0; left:0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,166,54,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover { width:56px; height:56px; border-color:var(--gold); }
body.custom-cursor-enabled { cursor: none; }
body.custom-cursor-enabled .cursor-dot,
body.custom-cursor-enabled .cursor-ring { display: block; }

/* ════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════ */
#scroll-bar {
  position: fixed; top:0; left:0; height:3px;
  background: linear-gradient(90deg, var(--green3), var(--gold), var(--green3));
  width: 0%;
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(201,166,54,0.6);
}

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.topbar {
  background: var(--green);
  padding: 9px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 200;
}
.topbar-left { display:flex; gap:24px; align-items:center; }
.topbar-item { display:flex; align-items:center; gap:7px; color: rgba(255,255,255,0.9); }
.topbar-item svg { flex-shrink:0; }
.topbar-right { display:flex; gap:10px; align-items:center; }


.flag { font-size:16px; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
nav {
  position: sticky; top:0; z-index:190;
  background: rgba(7,9,11,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
nav.scrolled { background: rgba(7,9,11,0.99); }
.nav-brand {
  display:flex; align-items:center; gap:14px;
}
.nav-brand img { height:50px; width:auto; }
.nav-brand-text { line-height:1; }
.nav-brand-name {
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1.1;
}
.nav-brand-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display:flex; list-style:none; gap:2px; }
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,237,230,0.65);
  padding: 10px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a::after {
  content:'';
  position:absolute; bottom:4px; left:14px; right:14px; height:1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 2px !important;
  font-weight:700 !important;
  letter-spacing:0.08em;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green2) !important; color:white !important; }
.nav-cta::after { display:none !important; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
#hero-canvas {
  position:absolute; inset:0;
  width:100%; height:100%;
  z-index:0;
}
.hero-overlay {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 80% at 60% 50%, rgba(27,92,48,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,166,54,0.1) 0%, transparent 55%),
    linear-gradient(160deg, rgba(7,9,11,0.95) 0%, rgba(10,15,18,0.85) 40%, rgba(7,9,11,0.97) 100%);
  z-index:1;
}
.hero-content {
  position:relative; z-index:2;
  padding: 0;
  max-width: 580px;
  padding-top: 0;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(201,166,54,0.08);
  border: 1px solid rgba(201,166,54,0.25);
  border-radius:2px;
  padding: 7px 16px;
  margin-bottom: 16px;
  font-size:11px;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  opacity:0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-badge .dot { width:6px; height:6px; background:var(--green3); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  opacity:0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-h1 em { font-style:italic; color:var(--green3); }
.hero-h1-sub {
  font-family: var(--font-accent);
  font-size: clamp(20px, 3vw, 38px);
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity:0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-tagline {
  font-style:italic;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(242,237,230,0.6);
  letter-spacing:0.04em;
  margin-bottom: 44px;
  opacity:0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-tagline span { color:var(--gold); }
.hero-ctas {
  display:flex; gap:16px; flex-wrap:wrap;
  opacity:0; animation: fadeUp 0.8s 1.1s forwards;
}
.btn-primary {
  display:inline-flex; align-items:center; gap:10px;
  background: var(--green);
  color: white;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size:13px; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  border:2px solid var(--green);
  cursor:pointer;
  transition: all 0.3s;
  position:relative; overflow:hidden;
}
.btn-primary::before {
  content:'';
  position:absolute; inset:0;
  background:var(--green2);
  transform:translateX(-101%);
  transition:transform 0.3s;
}
.btn-primary:hover::before { transform:translateX(0); }
.btn-primary span { position:relative; z-index:1; }
.btn-gold-outline {
  display:inline-flex; align-items:center; gap:10px;
  background: transparent;
  color: var(--gold);
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size:13px; font-weight:700;
  letter-spacing:0.12em; text-transform:uppercase;
  border:2px solid var(--gold);
  cursor:pointer;
  transition: all 0.3s;
}
.btn-gold-outline:hover { background:var(--gold); color:var(--bg); }

.hero-inner {
  position:relative; z-index:2;
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  padding: 24px 60px 0;
  gap:40px;
  min-height: clamp(620px, 82vh, 760px);
}
.hero-content {
  /* override previous padding since hero-inner handles it */
}
.hero-anim-wrap {
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}





 60%{transform:translateY(10px);opacity:0.3} }

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker-wrap {
  background: #1b5c30 !important;
  padding: 0;
  overflow: hidden;
  height: 60px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-track {
  display:flex; gap:0;
  animation: ticker 28s linear infinite;
  white-space:nowrap;
}
.ticker-item {
  display:inline-flex; align-items:center; gap:12px;
  padding: 0 30px;
  font-family: var(--font-accent);
  font-size:16px; letter-spacing:0.18em;
  color:rgba(255,255,255,0.9);
}
.ticker-sep { color: var(--gold2); font-size:18px; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ════════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════════ */
.section { padding: 110px 60px; }
.section-inner { max-width: 1200px; margin:0 auto; }
.sec-tag {
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-accent);
  font-size:13px; letter-spacing:0.24em;
  color:var(--gold);
  margin-bottom:14px;
}
.sec-tag::before { content:''; width:30px; height:1.5px; background:var(--gold); }
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight:700; line-height:1.1;
  margin-bottom: 18px;
}
.sec-title em { font-style:italic; color:var(--green3); }
.sec-body {
  font-size:15.5px; line-height:1.85;
  color: var(--muted);
  max-width:580px;
}
.gold-bar { width:52px; height:3px; background:linear-gradient(90deg,var(--gold),var(--green3)); margin:18px 0 32px; }
.gold-bar.center { margin:18px auto 32px; }
.text-center { text-align:center; }
.text-center .sec-tag { justify-content:center; }
.text-center .sec-tag::before { display:none; }
.text-center .sec-tag::after { content:''; width:30px; height:1.5px; background:var(--gold); }
.text-center .sec-body { margin:0 auto; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:80px;
  align-items:center;
}
.about-visual { position:relative; }
.about-img {
  width:100%; aspect-ratio:4/3;
  position:relative; overflow:hidden;
}
.about-img img {
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(0.6) brightness(0.75);
  transition: filter 0.5s;
}
.about-img:hover img { filter:saturate(0.9) brightness(0.9); }
.about-img-frame {
  position:absolute; inset:0;
  border:1px solid var(--border);
  pointer-events:none;
}
.about-img-corner {
  position:absolute;
  width:20px; height:20px;
  border-color:var(--gold);
  border-style:solid;
}
.about-img-corner.tl { top:-1px; left:-1px; border-width:2px 0 0 2px; }
.about-img-corner.tr { top:-1px; right:-1px; border-width:2px 2px 0 0; }
.about-img-corner.bl { bottom:-1px; left:-1px; border-width:0 0 2px 2px; }
.about-img-corner.br { bottom:-1px; right:-1px; border-width:0 2px 2px 0; }
.about-badge {
  position:absolute; bottom:-20px; right:-20px;
  width:110px; height:110px;
  background:linear-gradient(135deg,var(--green),var(--green2));
  border:3px solid var(--bg);
  border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
}
.about-badge .big {
  font-family: var(--font-accent);
  font-size:30px; letter-spacing:0.1em; line-height:1;
  color:var(--gold);
}
.about-badge .sm { font-size:10px; color:rgba(255,255,255,0.65); letter-spacing:0.1em; margin-top:3px; }
.pillars {
  display:grid; grid-template-columns:1fr 1fr;
  gap:16px; margin-top:36px;
}
.pillar {
  padding:18px 20px;
  background:var(--bg3);
  border-left:3px solid var(--green2);
  transition:border-color 0.3s, transform 0.3s;
}
.pillar:hover { border-color:var(--gold); transform:translateX(4px); }
.pillar h4 {
  font-family: var(--font-accent);
  font-size:14px; letter-spacing:0.14em;
  color:var(--gold); margin-bottom:6px;
}
.pillar p { font-size:13px; color:var(--muted); line-height:1.65; }

/* ════════════════════════════════════════
   SEGMENTS
════════════════════════════════════════ */
.segments-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:20px; margin-top:60px;
}
.seg-card {
  background:var(--bg3);
  border:1px solid rgba(255,255,255,0.05);
  overflow:hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.seg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,166,54,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 1px var(--gold);
}
.seg-carousel {
  width:100%;
  height:220px;
  overflow:hidden;
  position:relative;
  background:var(--bg4);
}
.seg-carousel .slide {
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity 0.45s ease;
}
.seg-carousel .slide.active {
  opacity:1;
  z-index:1;
}
.seg-img {
  width:100%; height:220px;
  overflow:hidden;
  position:relative;
}
.seg-img img {
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(0.5) brightness(0.65);
  transition: transform 0.6s, filter 0.4s;
}
.seg-card:hover .seg-img img {
  transform:scale(1.06);
  filter:saturate(0.75) brightness(0.8);
}
.seg-img-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(12,16,20,0.9) 0%, transparent 60%);
}
.seg-img-label {
  position:absolute; bottom:14px; left:20px;
  font-family: var(--font-accent);
  font-size:26px; letter-spacing:0.12em;
  color:var(--white);
  text-shadow:0 2px 8px rgba(0,0,0,0.6);
  z-index:3;
}
.seg-carousel-dots {
  position:absolute;
  right:18px;
  bottom:16px;
  display:flex;
  gap:8px;
  z-index:4;
}
.seg-carousel-dots button {
  width:9px;
  height:9px;
  border:1px solid rgba(255,255,255,0.7);
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  padding:0;
}
.seg-carousel-dots button.active {
  background:var(--gold);
  border-color:var(--gold);
}

.seg-body { padding:0 20px 26px; }
.seg-body h3 {
  font-family: var(--font-display);
  font-size:22px; font-weight:700;
  margin-bottom:10px; color:var(--white);
}
.seg-body p { font-size:13.5px; color:var(--muted); line-height:1.8; }

/* ════════════════════════════════════════
   SUSTAINABILITY SPLIT
════════════════════════════════════════ */
.split-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.split-img {
  width:100%; aspect-ratio:4/3;
  overflow:hidden; position:relative;
}
.split-img img {
  width:100%; height:100%;
  object-fit:cover;
  filter:saturate(0.6) brightness(0.7);
  transition:all 0.5s;
}
.split-img:hover img { filter:saturate(0.9) brightness(0.85); }
.split-img-frame { position:absolute; inset:0; border:1px solid var(--border); pointer-events:none; }
/* ════════════════════════════════════════
   VALUE CHAIN
════════════════════════════════════════ */
.chain-wrap {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; margin-top:70px;
  position:relative;
}
.chain-connector {
  position:absolute; top:44px; left:12.5%; right:12.5%;
  height:1px;
  background:linear-gradient(90deg, var(--green3) 0%, var(--gold) 50%, var(--green3) 100%);
  z-index:0;
}
.chain-connector::before, .chain-connector::after {
  content:'';
  position:absolute; top:-3px;
  width:8px; height:8px;
  background:var(--gold); border-radius:50%;
}
.chain-connector::before { left:0; }
.chain-connector::after { right:0; }
.chain-step {
  text-align:center; padding:0 18px;
  position:relative; z-index:1;
}
.chain-num {
  width:88px; height:88px;
  background:var(--bg);
  border:2px solid var(--green2);
  border-radius:50%;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  margin:0 auto 30px;
  transition:background 0.3s, border-color 0.3s, transform 0.3s;
}
.chain-step:hover .chain-num {
  background:var(--green);
  border-color:var(--gold);
  transform:scale(1.08);
}
.chain-num .n {
  font-family: var(--font-accent);
  font-size:26px; letter-spacing:0.1em; color:var(--gold); line-height:1;
}
.chain-num .icon { font-size:18px; margin-bottom:2px; }
.chain-step h4 {
  font-family: var(--font-display);
  font-size:18px; font-weight:700;
  margin-bottom:12px;
}
.chain-step p { font-size:13px; color:var(--muted); line-height:1.75; }

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2px; margin-top:60px;
}
.why-card {
  background:var(--bg3);
  padding:44px 32px;
  border-top:3px solid transparent;
  transition:border-color 0.3s, background 0.3s;
  position:relative;
  overflow:hidden;
}
.why-card::before {
  content:'';
  position:absolute; bottom:0; left:0; right:0; height:0;
  background:linear-gradient(180deg, transparent, rgba(27,92,48,0.1));
  transition:height 0.4s;
}
.why-card:hover { border-color:var(--green3); }
.why-card:hover::before { height:100%; }
.why-icon {
  width:56px; height:56px;
  background:rgba(27,92,48,0.15);
  border:1px solid rgba(47,168,82,0.25);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:24px;
  margin-bottom:24px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size:20px; font-weight:700;
  margin-bottom:12px;
}
.why-card p { font-size:13.5px; color:var(--muted); line-height:1.8; }

/* ════════════════════════════════════════
   WHATSAPP QR SECTION
════════════════════════════════════════ */
.wa-section {
  background: var(--bg3);
  padding: 100px 60px;
  position:relative; overflow:hidden;
}
.wa-section::before {
  content:'';
  position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 80% at 50% 50%, rgba(37,211,102,0.04) 0%, transparent 70%);
  pointer-events:none;
}
.wa-grid {
  display:grid; grid-template-columns:1fr auto 1fr;
  gap:60px; align-items:center;
  max-width:1100px; margin:0 auto;
}
.wa-qr-duo {
  justify-content:center;
}
.wa-qr-item {
  text-align:center;
}
.wa-text h2 {
  font-family: var(--font-display);
  font-size:clamp(32px,3.5vw,50px);
  font-weight:700; line-height:1.1; margin-bottom:16px;
}
.wa-text h2 em { font-style:italic; color:#25d366; }
.wa-text p { font-size:15px; color:var(--muted); line-height:1.8; margin-bottom:28px; }
.wa-btn {
  display:inline-flex; align-items:center; gap:12px;
  background:#25d366;
  color:white;
  padding:16px 36px;
  font-family: var(--font-body);
  font-size:14px; font-weight:700;
  letter-spacing:0.06em; text-transform:uppercase;
  border:none; cursor:pointer;
  transition:background 0.3s, transform 0.2s;
}
.wa-btn:hover { background:#1ebe59; transform:scale(1.02); }
.wa-divider {
  width:1px; height:200px;
  background:linear-gradient(to bottom, transparent, var(--border), transparent);
}
.wa-qr-wrap { text-align:center; }
.wa-qr-wrap p {
  font-size:11px; font-weight:600; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--muted); margin-top:16px;
}
.wa-qr-duo {
  display:flex; gap:28px; justify-content:center; align-items:flex-start;
}
.wa-qr-item { text-align:center; }
.wa-qr-item .qr-box {
  background:white;
  padding:12px;
  display:inline-block;
  box-shadow: 0 0 0 1px var(--border), 0 8px 32px rgba(0,0,0,0.4);
}
.wa-qr-item .qr-box canvas { display:block !important; }
.wa-qr-item .qr-box img { display:none !important; }
.wa-qr-item .qr-label {
  margin-top:12px;
  font-family: var(--font-accent);
  font-size:13px; letter-spacing:0.16em;
  color:var(--gold);
}
.wa-qr-item .qr-number {
  font-size:13px; color:var(--muted);
  margin-top:4px; letter-spacing:0.06em;
}


/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background:linear-gradient(135deg, #0d2c16 0%, var(--green) 50%, #0a1e10 100%);
  padding:90px 60px;
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size:50px 50px;
}
.cta-banner > * { position:relative; z-index:1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size:clamp(32px,5vw,64px);
  font-weight:700; line-height:1.1; margin-bottom:16px;
}
.cta-banner h2 em { font-style:italic; color:var(--gold2); }
.cta-banner p { font-size:16px; color:rgba(255,255,255,0.7); margin-bottom:44px; max-width:560px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-gold {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold);
  color:var(--bg);
  padding:16px 40px;
  font-family: var(--font-body);
  font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  border:2px solid var(--gold); cursor:pointer;
  transition:all 0.3s;
}
.btn-gold:hover { background:var(--gold2); border-color:var(--gold2); }
.btn-wh-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:white;
  padding:16px 40px;
  font-family: var(--font-body);
  font-size:13px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  border:2px solid rgba(255,255,255,0.4); cursor:pointer;
  transition:all 0.3s;
}
.btn-wh-outline:hover { border-color:white; background:rgba(255,255,255,0.08); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background:#050709;
  border-top:1px solid var(--border);
  padding:80px 60px 0;
}
.footer-top {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:40px;
  padding-bottom:64px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.f-brand img { height:58px; margin-bottom:14px; }
.f-brand-name {
  font-family: var(--font-accent);
  font-size:17px; letter-spacing:0.14em; color:var(--white); margin-bottom:2px;
}
.f-brand-sub { font-size:10px; color:var(--gold); letter-spacing:0.22em; text-transform:uppercase; margin-bottom:16px; }
.f-brand p { font-size:13px; color:var(--muted2); line-height:1.85; margin-bottom:22px; }
.f-brand-tagline {
  font-family: var(--font-display);
  font-style:italic;
  font-size:15px; color:var(--gold);
  margin-bottom:20px;
}



.f-col h4 {
  font-family: var(--font-accent);
  font-size:13px; letter-spacing:0.18em;
  color:var(--gold);
  margin-bottom:20px;
  padding-bottom:10px;
  border-bottom:1px solid var(--border);
}
.f-col ul { list-style:none; }
.f-col ul li { margin-bottom:10px; }
.f-col ul li a {
  font-size:13.5px; color:rgba(242,237,230,0.4);
  display:flex; align-items:center; gap:8px;
  transition:color 0.2s, gap 0.2s;
}
.f-col ul li a::before { content:'›'; color:var(--green3); font-size:16px; }
.f-col ul li a:hover { color:var(--white); gap:12px; }
.f-contact-item { display:flex; gap:14px; margin-bottom:18px; align-items:flex-start; }
.f-contact-icon {
  width:34px; height:34px; min-width:34px;
  background:rgba(27,92,48,0.2);
  border:1px solid rgba(47,168,82,0.25);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
}
.f-contact-text { font-size:13px; color:rgba(242,237,230,0.45); line-height:1.65; }
.f-contact-text a { color:rgba(242,237,230,0.45); transition:color 0.2s; }
.f-contact-text a:hover { color:var(--white); }
.f-contact-text strong { color:var(--gold); font-size:11px; letter-spacing:0.1em; }
.nl-form { display:flex; margin-top:4px; }
.nl-form input {
  flex:1;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  border-right:none;
  color:var(--white);
  padding:11px 15px;
  font-family:var(--font-body); font-size:13px;
  outline:none;
  transition:border-color 0.2s;
}
.nl-form input:focus { border-color:rgba(201,166,54,0.4); }
.nl-form input::placeholder { color:rgba(255,255,255,0.25); }
.nl-form button {
  background:var(--green); border:1px solid var(--green);
  color:white; padding:11px 18px;
  cursor:pointer; font-size:16px;
  transition:background 0.2s;
}
.nl-form button:hover { background:var(--green2); }
.nl-disclaimer { font-size:11px; color:var(--muted2); margin-top:10px; line-height:1.6; }
.f-legal { font-size:11.5px; color:rgba(242,237,230,0.25); margin-top:14px; }
.f-legal a { color:rgba(242,237,230,0.25); text-decoration:underline; transition:color 0.2s; }
.f-legal a:hover { color:var(--white); }
.footer-bottom {
  padding:20px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:12px; color:rgba(242,237,230,0.25);
}




/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity:0; transform:translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.left { transform:translateX(-40px); }
.reveal.right { transform:translateX(40px); }
.reveal.visible { opacity:1; transform:translate(0,0); }
.reveal-stagger { transition-delay: calc(var(--i,0) * 0.1s); }

/* Shimmer on gold text */
@keyframes shimmer {
  0%,100% { background-position: -200% center; }
  50% { background-position: 200% center; }
}
.shimmer-text {
  background: linear-gradient(120deg, var(--gold) 30%, var(--gold3) 50%, var(--gold) 70%);
  background-size:200% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  animation: shimmer 4s linear infinite;
}

/* Counter */
.counter-num {
  font-family: var(--font-accent);
  font-size:48px; letter-spacing:0.06em; color:var(--gold); line-height:1;
}


/* ════════════════════════════════════════
   RESPONSIVE — V1.8
   Breakpoints:
     768px  = tablet portrait / large phone landscape
     480px  = phone portrait
════════════════════════════════════════ */

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 210;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ════════════════════
   TABLET  ≤ 1024px
════════════════════ */
@media (max-width: 1024px) {
  .topbar { padding: 8px 30px; font-size: 12px; }
  nav { padding: 0 30px; }
  .section { padding: 80px 30px; }
  .hero-inner { padding: 24px 30px 0; gap: 24px; }
  .about-grid { gap: 50px; }
  .split-grid { gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 50px; }
  footer { padding: 60px 30px 0; }
  .chain-wrap { gap: 0; }
  .chain-step { padding: 0 10px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-section { padding: 80px 30px; }
}

/* ════════════════════
   TABLET PORTRAIT / LARGE PHONE  ≤ 768px
════════════════════ */
@media (max-width: 768px) {

  /* Topbar */
  .topbar { padding: 8px 20px; flex-wrap: wrap; gap: 6px; }
  .topbar-left { flex-wrap: wrap; gap: 10px; }
  .topbar-item { font-size: 11.5px; }

  /* Navbar */
  nav { padding: 0 20px; height: 68px; position: sticky; top: 0; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7,9,11,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 200;
    padding: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 18px;
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 12px;
    background: var(--green) !important;
    border-radius: 4px !important;
    font-size: 16px !important;
  }
  .nav-brand-name { font-size: 15px; }
  .nav-brand-tagline { font-size: 9px; }
  .nav-brand img { height: 40px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
    gap: 32px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; padding-top: 0; }
  .hero-badge { font-size: 10px; padding: 6px 12px; margin-bottom: 16px; }
  .hero-h1 { font-size: clamp(38px, 10vw, 60px); }
  .hero-h1-sub { font-size: clamp(16px, 5vw, 28px); }
  .hero-tagline { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-gold-outline { padding: 13px 28px; font-size: 12px; width: 100%; text-align: center; justify-content: center; }
  .hero-anim-wrap { justify-content: center; }
  .hero-world-map,
  .hero-recycle-hero { max-width: 300px; }
  

  /* Ticker */
  .ticker-item { font-size: 13px; padding: 0 20px; }

  /* Stats bar */
  #stats-bar-inner { grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; padding: 40px 20px !important; }
  .counter-num { font-size: 36px; }

  /* Sections */
  .section { padding: 70px 20px; }
  .sec-title { font-size: clamp(26px, 7vw, 40px); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: 1; }
  .about-text { order: 2; padding-right: 0; }
  .about-badge { width: 90px; height: 90px; bottom: -16px; right: -10px; }
  .about-badge .big { font-size: 22px; }
  .pillars { grid-template-columns: 1fr; gap: 12px; }

  /* Segments */
  .segments-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Sustainability */
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .sustain-text { order: 1; }
  .sustain-visual { order: 2; }
  /* Value chain */
  .chain-wrap { grid-template-columns: 1fr; gap: 32px; }
  .chain-connector { display: none; }
  .chain-num { width: 70px; height: 70px; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 2px; }

  /* WhatsApp section */
  .wa-section { padding: 70px 20px; }
  .wa-grid { grid-template-columns: 1fr; gap: 40px; }
  .wa-divider { display: none; }
  .wa-text h2 { font-size: clamp(26px, 8vw, 40px); }
  .wa-qr-duo { gap: 16px; }
  .wa-qr-item .qr-box canvas { width: 120px !important; height: 120px !important; }

  /* CTA Banner */
  .cta-banner { padding: 70px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-wh-outline { width: 100%; max-width: 320px; text-align: center; justify-content: center; padding: 14px 28px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 60px 20px 0; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  
  .f-brand img { height: 48px; }
}

/* ════════════════════
   PHONE  ≤ 480px
════════════════════ */
@media (max-width: 480px) {
  .topbar-left { gap: 8px; }
  .topbar-item:nth-child(3) { display: none; } /* hide address on tiny screens */
  .hero-h1 { font-size: clamp(32px, 11vw, 48px); }
  .hero-world-map,
  .hero-recycle-hero { max-width: 240px; }
  .hero-ctas { width: 100%; }
  .btn-primary, .btn-gold-outline { font-size: 11px; }
  #stats-bar-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .counter-num { font-size: 30px; }
  .wa-qr-duo { flex-direction: column; align-items: center; gap: 28px; }
  .wa-qr-item .qr-box canvas { width: 160px !important; height: 160px !important; }
  .seg-img { height: 180px; }
  .seg-carousel { height: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ticker-track { animation: none; }
  .shimmer-text { animation: none; }
}
