/* ══════════════════════════════════════════════════════════════
   NATUREGREEN EXPORTS
   B2B Enterprise Environmental Solutions — Premium Theme
   Colors: Brand Forest Green #1d4d2e + Leaf Green #6baa2b
   Design: Premium B2B, Authority, Environmental Credibility
══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Palette — from logo */
  --f900: #0b1f11;
  --f800: #122a18;
  --f700: #1a3d23;
  --f600: #1d4d2e;  /* logo primary */
  --f500: #2b6040;
  --f400: #3d7a56;
  --f300: #5a9c72;
  --f200: #a8d4b8;
  --f100: #daeee3;
  --f50:  #f0faf4;

  --leaf:  #6baa2b;  /* logo leaf */
  --leaf2: #7ec93d;
  --leaf3: #a8dc6e;

  /* Neutrals */
  --cream: #f8fdf5;
  --paper: #f2f8ef;
  --white: #ffffff;
  --ink:   #111a14;
  --body:  #2c3d30;
  --muted: #617566;
  --light: #8fa893;

  /* Borders */
  --bdr:    rgba(29,77,46,0.12);
  --bdr-lf: rgba(107,170,43,0.3);

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-mono:    'DM Mono', monospace;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(29,77,46,0.07);
  --sh-md: 0 8px 28px rgba(29,77,46,0.10);
  --sh-lg: 0 20px 56px rgba(29,77,46,0.13);
  --sh-xl: 0 36px 80px rgba(29,77,46,0.16);
  --sh-gn: 0 8px 28px rgba(107,170,43,0.28);

  --ease: 0.32s cubic-bezier(0.4,0,0.2,1);
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 30px; --r-full: 999px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--ff-body); background: var(--white); color: var(--body); overflow-x: hidden; line-height: 1.65; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
strong { font-weight: 600; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 104px 0; }
.section-dark  { background: var(--f600); }
.section-green { background: var(--f50); }
.section-cream { background: var(--cream); }


/* ══ BUTTONS ══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--r-full);
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.01em; cursor: pointer; border: none;
  transition: all var(--ease); white-space: nowrap; position: relative;
}
.btn-forest { background: var(--f600); color: var(--white); box-shadow: 0 6px 24px rgba(29,77,46,0.28); }
.btn-forest:hover { background: var(--f500); box-shadow: 0 10px 36px rgba(29,77,46,0.38); transform: translateY(-2px); }
.btn-leaf   { background: var(--leaf); color: var(--white); box-shadow: var(--sh-gn); }
.btn-leaf:hover { background: var(--leaf2); box-shadow: 0 12px 40px rgba(107,170,43,0.4); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--f600); border: 1.5px solid rgba(29,77,46,0.35); }
.btn-outline:hover { border-color: var(--f600); background: var(--f50); transform: translateY(-2px); }
.btn-white  { background: var(--white); color: var(--f600); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-wa     { background: #25d366; color: var(--white); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); }
.btn-sm  { padding: 9px 20px; font-size: 0.83rem; }
.btn-lg  { padding: 16px 38px; font-size: 1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.05rem; }
.btn-full{ width: 100%; justify-content: center; }


/* ══ SECTION HEADER ════════════════════════════════════════ */
.sh { text-align: center; margin-bottom: 64px; }
.sh.left { text-align: left; }
.sh-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--leaf);
  margin-bottom: 14px;
}
.sh-tag .tl { display: block; width: 28px; height: 1.5px; background: var(--leaf); border-radius: 2px; }
.sh h2 {
  font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--f600); line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.sh h2 em { font-style: italic; color: var(--leaf); }
.sh p { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.85; }
.sh.left p { margin: 0; }
.sh-dark h2 { color: var(--white); }
.sh-dark h2 em { color: var(--leaf3); }
.sh-dark p { color: rgba(255,255,255,0.6); }
.sh-dark .sh-tag { color: var(--leaf3); }
.sh-dark .tl { background: var(--leaf3); }


/* ══ SCROLL REVEAL ═════════════════════════════════════════ */
.rise    { opacity: 0; transform: translateY(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.slide-l { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.slide-r { opacity: 0; transform: translateX(36px);  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.scale-in{ opacity: 0; transform: scale(0.92); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.rise.up, .slide-l.up, .slide-r.up, .scale-in.up { opacity: 1; transform: none; }


/* ══ TOP BAR ═══════════════════════════════════════════════ */
.topbar { background: var(--f800); color: rgba(255,255,255,0.8); padding: 7px 0; font-size: 0.77rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a, .topbar-info { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-weight: 500; transition: color 0.2s; }
.topbar a:hover { color: var(--leaf3); }
.topbar i { color: var(--leaf3); font-size: 0.68rem; }
.topbar-wa { background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: var(--r-full); color: var(--white) !important; font-weight: 700 !important; border: 1px solid rgba(255,255,255,0.15); }
.topbar-wa:hover { background: rgba(255,255,255,0.18) !important; color: #2dff7a !important; }
.topbar-cert.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo-img { height: 48px; width: auto; max-width: 220px; object-fit: contain; }
.footer-logo-img { height: 54px; width: auto; max-width: 240px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.95; }
.topbar-cert { display: flex; align-items: center; gap: 5px; color: var(--leaf3) !important; font-weight: 600 !important; font-family: var(--ff-mono); letter-spacing: 0.05em; }


/* ══ HEADER ════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr); transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 40px rgba(29,77,46,0.11); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.logo-wrap { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
  transition: transform 0.3s var(--ease);
}
.brand-logo-img:hover { transform: scale(1.03); }


.desktop-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link { font-size: 0.87rem; font-weight: 500; color: var(--body); padding: 7px 14px; border-radius: var(--r-full); transition: all 0.22s; display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-link.active { color: var(--f600); background: var(--f50); font-weight: 600; }

.nav-item { position: relative; }
.nav-arrow { font-size: 0.58rem; transition: transform 0.25s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); box-shadow: var(--sh-xl);
  padding: 22px; display: none; gap: 24px;
  min-width: 620px; z-index: 100;
}
.nav-item:hover .dropdown-menu { display: flex; }
.dropdown-col { display: flex; flex-direction: column; gap: 2px; min-width: 155px; }
.dropdown-head { font-family: var(--ff-mono); font-size: 0.63rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--leaf); padding: 0 10px; margin-bottom: 8px; }
.dropdown-item { font-size: 0.83rem; color: var(--body); padding: 7px 10px; border-radius: var(--r-sm); transition: all 0.18s; }
.dropdown-item:hover { background: var(--f50); color: var(--f600); padding-left: 14px; }

.btn-quote { display: inline-flex; align-items: center; gap: 7px; background: var(--f600); color: var(--white); padding: 10px 22px; border-radius: var(--r-full); font-size: 0.87rem; font-weight: 600; box-shadow: 0 4px 16px rgba(29,77,46,0.25); transition: all var(--ease); flex-shrink: 0; }
.btn-quote:hover { background: var(--f500); box-shadow: 0 8px 28px rgba(29,77,46,0.36); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--f600); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--bdr); padding: 16px 32px 24px; }
.mobile-nav.open { display: flex; }
.mobile-nav-link { font-size: 0.95rem; font-weight: 500; color: var(--body); padding: 13px 0; border-bottom: 1px solid var(--bdr); transition: color 0.2s; }
.mobile-nav-link:hover { color: var(--f600); }
.mobile-nav-link.cta { margin-top: 10px; background: var(--f600); color: var(--white); text-align: center; padding: 13px; border-radius: var(--r-full); border: none; font-weight: 700; }


/* ══ HERO — B2B ENTERPRISE ═════════════════════════════════ */
.hero {
  position: relative;
  background: var(--white); display: flex; align-items: center;
  overflow: visible; padding: 80px 0 120px;
  min-height: calc(100vh - 110px);
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0; opacity: 0.025;
  background-image: radial-gradient(circle, var(--f600) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}
.hero-blob {
  position: absolute; top: -10%; right: -5%; width: 50%; aspect-ratio: 1;
  background: radial-gradient(ellipse, rgba(107,170,43,0.10) 0%, rgba(29,77,46,0.04) 50%, transparent 75%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  animation: blobMorph 14s ease-in-out infinite alternate;
  z-index: 0; pointer-events: none;
}
@keyframes blobMorph {
  0%   { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  33%  { border-radius: 52% 48% 42% 58% / 44% 58% 42% 56%; }
  66%  { border-radius: 44% 56% 58% 42% / 56% 42% 58% 44%; }
  100% { border-radius: 58% 42% 46% 54% / 50% 54% 46% 50%; }
}

.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 60px;
  align-items: center; width: 100%; overflow: visible;
}

.hero-content { max-width: 680px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--f50); border: 1px solid var(--bdr);
  color: var(--f600); font-family: var(--ff-mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 8px 18px; border-radius: var(--r-full);
  margin-bottom: 24px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{transform:scale(1); opacity:1;} 50%{transform:scale(1.4); opacity:0.7;} }

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 700; color: var(--f600);
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: var(--leaf); display: inline-block; }
.hero-sub { font-size: clamp(0.95rem, 1.3vw, 1.08rem); color: var(--muted); line-height: 1.85; margin-bottom: 32px; }
.hero-sub strong { color: var(--f600); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

/* Trust proof strip */
.hero-proof {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 16px 22px; background: var(--f50); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); width: fit-content;
}
.proof-item { display: flex; flex-direction: column; align-items: center; }
.proof-num { font-family: var(--ff-display); font-size: 1.75rem; font-weight: 700; color: var(--f600); line-height: 1; }
.proof-suf { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--leaf); }
.proof-lbl { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); margin-top: 4px; text-align: center; }
.proof-div { width: 1px; height: 36px; background: var(--bdr); }

/* Hero visual — vertical oval pill frame matching reference */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  overflow: visible;
}
.hero-img-wrap {
  position: relative;
  width: 360px; flex-shrink: 0;
}
.hero-img-main {
  width: 360px; height: 580px;
  border-radius: 9999px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(29,77,46,0.28), 0 0 0 5px #fff, 0 0 0 8px rgba(107,170,43,0.4);
  background: var(--f50);
}
.hero-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  transition: transform 0.7s var(--ease);
}
.hero-img-wrap:hover .hero-img-main img { transform: scale(1.05); }


.hero-metric-card {
  position: absolute; bottom: -18px; left: -24px; z-index: 5;
  background: var(--white); border: 1px solid var(--bdr);
  border-radius: var(--r-md); padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg); animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.mc-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--f50); display: flex; align-items: center; justify-content: center; color: var(--leaf); font-size: 1.1rem; flex-shrink: 0; }
.hero-metric-card strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--f600); }
.hero-metric-card p { font-size: 0.73rem; color: var(--muted); margin-top: 2px; }

.hero-cert-badge {
  position: absolute; top: -16px; right: -16px; z-index: 5;
  background: var(--f600); color: var(--white);
  border-radius: var(--r-md); padding: 12px 18px;
  text-align: center; box-shadow: var(--sh-lg);
  font-family: var(--ff-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5;
}
.hero-cert-badge strong { display: block; font-size: 1.1rem; color: var(--leaf3); }


/* ══ TRUST CLIENTS BAR ══════════════════════════════════════ */
.clients-bar { background: var(--f600); padding: 28px 0; border-top: 2px solid rgba(107,170,43,0.3); }
.clients-label { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-align: center; margin-bottom: 16px; }
.clients-track-wrap { overflow: hidden; }
.clients-track {
  display: flex; gap: 36px; width: max-content;
  animation: marquee 28s linear infinite; white-space: nowrap;
}
.client-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-size: 0.83rem; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.02em;
  padding: 7px 18px; border-radius: var(--r-full);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.client-chip i { color: var(--leaf3); font-size: 0.75rem; }
@keyframes marquee { to { transform: translateX(-50%); } }


/* ══ IMPACT SECTION ════════════════════════════════════════ */
.impact-section { background: var(--f600); padding: 90px 0 100px; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.impact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 40px 28px;
  text-align: center; position: relative; overflow: hidden;
  transition: all var(--ease);
}
.impact-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.impact-card::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--leaf); border-radius: var(--r-full); transition: width 0.5s var(--ease); }
.impact-card:hover::before { width: 70%; }
.impact-icon { font-size: 2rem; color: var(--leaf3); margin-bottom: 16px; }
.impact-num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 3px; margin-bottom: 8px; }
.impact-num { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: var(--white); line-height: 1; }
.impact-suf { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--leaf3); }
.impact-pre { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--leaf3); }
.impact-label { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.impact-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }


/* ══ CHALLENGE SECTION ══════════════════════════════════════ */
.challenge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.challenge-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 36px 30px; border-left: 4px solid var(--leaf);
  box-shadow: var(--sh-md); transition: all var(--ease); position: relative;
}
.challenge-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.ch-num { font-family: var(--ff-display); font-size: 4rem; font-weight: 700; color: var(--f100); line-height: 1; position: absolute; top: 20px; right: 24px; }
.ch-icon { width: 54px; height: 54px; border-radius: 13px; background: var(--f50); border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; color: var(--f600); font-size: 1.3rem; margin-bottom: 18px; }
.challenge-card h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; color: var(--f600); margin-bottom: 12px; }
.challenge-card p { font-size: 0.89rem; color: var(--muted); line-height: 1.85; }
.challenge-card strong { color: var(--f600); }
.ch-cost { display: inline-block; margin-top: 14px; background: rgba(239,68,68,0.08); color: #dc2626; border: 1px solid rgba(239,68,68,0.2); font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500; padding: 4px 10px; border-radius: var(--r-full); letter-spacing: 0.05em; }


/* ══ SOLUTIONS / HOW WE SOLVE IT ══════════════════════════ */
.solution-tabs { display: flex; gap: 0; justify-content: center; margin-bottom: 52px; background: var(--paper); border-radius: var(--r-full); padding: 5px; width: fit-content; margin-left: auto; margin-right: auto; border: 1px solid var(--bdr); }
.sol-tab { font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 26px; border-radius: var(--r-full); border: none; color: var(--muted); background: transparent; cursor: pointer; transition: all 0.25s; }
.sol-tab.active { background: var(--f600); color: var(--white); box-shadow: 0 4px 14px rgba(29,77,46,0.22); }
.sol-tab:hover:not(.active) { color: var(--f600); }

.solution-panels { position: relative; }
.sol-panel { display: none; }
.sol-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.sol-visual { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.sol-visual img { width: 100%; height: 400px; object-fit: cover; }
.sol-copy h3 { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--f600); margin-bottom: 14px; font-style: italic; }
.sol-copy p { font-size: 0.94rem; color: var(--muted); line-height: 1.9; margin-bottom: 22px; }
.sol-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.sol-stat { background: var(--f50); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 16px; text-align: center; }
.sol-stat-num { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; color: var(--f600); line-height: 1; }
.sol-stat-suf { font-size: 1.2rem; color: var(--leaf); font-weight: 700; }
.sol-stat-lbl { font-family: var(--ff-mono); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 5px; display: block; }
.sol-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.sol-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); }
.sol-features li i { color: var(--leaf); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }


/* ══ INDUSTRIES DEEP ════════════════════════════════════════ */
.industries-deep { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.ind-card {
  background: var(--white); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 32px 28px; display: flex; gap: 20px;
  transition: all var(--ease); align-items: flex-start;
  box-shadow: var(--sh-sm);
}
.ind-card:hover { border-color: var(--bdr-lf); box-shadow: var(--sh-md); transform: translateY(-4px); }
.ind-icon-box { width: 52px; height: 52px; border-radius: 13px; background: var(--f50); border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; color: var(--f600); font-size: 1.3rem; flex-shrink: 0; transition: all var(--ease); }
.ind-card:hover .ind-icon-box { background: var(--f600); color: var(--white); border-color: var(--f600); }
.ind-body h3 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--f600); margin-bottom: 8px; }
.ind-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.ind-tag { display: inline-block; font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--leaf); background: rgba(107,170,43,0.08); border: 1px solid var(--bdr-lf); padding: 4px 10px; border-radius: var(--r-full); }


/* ══ CASE STUDIES ══════════════════════════════════════════ */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.case-card {
  background: var(--white); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: all var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
}
.case-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: var(--bdr-lf); }
.case-banner { background: var(--f600); padding: 24px 24px 20px; }
.case-company { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf3); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.case-company i { font-size: 0.65rem; }
.case-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.case-body { padding: 22px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.case-metric { background: var(--f50); border-radius: var(--r-md); padding: 12px; text-align: center; }
.case-metric-num { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--f600); line-height: 1; }
.case-metric-suf { font-size: 0.9rem; color: var(--leaf); font-weight: 700; }
.case-metric-lbl { font-family: var(--ff-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 4px; display: block; }
.case-quote { font-size: 0.84rem; color: var(--muted); line-height: 1.75; font-style: italic; border-left: 3px solid var(--leaf); padding-left: 14px; margin-bottom: 16px; }
.case-dl-btn { margin-top: 14px; width: 100%; justify-content: center; text-align: center; }


/* Before / After comparison */
.case-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.ba-item { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--bdr); }
.ba-item img { width: 100%; height: 140px; object-fit: cover; display: block; }
.ba-label {
  position: absolute; bottom: 8px; left: 8px;
  font-family: var(--ff-mono); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--f600); color: var(--white);
  padding: 3px 10px; border-radius: var(--r-full);
}


/* ══ PRODUCT PORTFOLIO ═════════════════════════════════════ */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  font-family: var(--ff-mono); font-size: 0.71rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 22px; border-radius: var(--r-full);
  border: 1.5px solid var(--bdr); color: var(--body);
  background: var(--white); transition: all 0.25s; cursor: pointer;
}
.filter-btn:hover { border-color: var(--leaf); color: var(--f600); }
.filter-btn.active { background: var(--f600); color: var(--white); border-color: var(--f600); box-shadow: 0 4px 14px rgba(29,77,46,0.2); }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--bdr); overflow: hidden; transition: all var(--ease); }
.product-card:hover { border-color: var(--bdr-lf); box-shadow: var(--sh-lg); transform: translateY(-5px); }
.product-img-wrap { position: relative; height: 195px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge { position: absolute; top: 12px; left: 12px; font-family: var(--ff-mono); font-size: 0.61rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full); z-index: 2; }
.product-badge.new { background: var(--leaf); color: var(--white); }
.product-badge.popular { background: #d97706; color: var(--white); }
.product-hover { position: absolute; inset: 0; background: rgba(29,77,46,0.85); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; z-index: 3; }
.product-card:hover .product-hover { opacity: 1; }
.product-body { padding: 18px 20px; }
.product-cat { font-family: var(--ff-mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--leaf); display: block; margin-bottom: 7px; }
.product-body h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--f600); margin-bottom: 6px; }
.product-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }


/* ══ COMPLIANCE STRIP ══════════════════════════════════════ */
.compliance-strip { background: var(--f700); padding: 48px 0; }
.compliance-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.compliance-label { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-right: 12px; }
.compliance-badge {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md); padding: 10px 18px;
  font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.06em;
  transition: all var(--ease);
}
.compliance-badge:hover { background: rgba(107,170,43,0.15); border-color: rgba(107,170,43,0.3); color: var(--leaf3); }
.compliance-badge i { color: var(--leaf3); font-size: 0.8rem; }


/* ══ ABOUT B2B ══════════════════════════════════════════════ */
.about-b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-frame-b2b { border-radius: 44% 56% 52% 48% / 46% 46% 54% 54%; overflow: hidden; box-shadow: var(--sh-xl); animation: frameB2BMorph 14s ease-in-out infinite alternate; }
@keyframes frameB2BMorph { 0%{border-radius:44% 56% 52% 48% / 46% 46% 54% 54%;} 50%{border-radius:52% 48% 46% 54% / 54% 46% 54% 46%;} 100%{border-radius:48% 52% 56% 44% / 50% 52% 48% 52%;} }
.about-frame-b2b img { width: 100%; height: 460px; object-fit: cover; }
.about-badge-b2b { position: absolute; bottom: -24px; right: -20px; background: var(--f600); border-radius: var(--r-lg); padding: 20px 26px; text-align: center; box-shadow: var(--sh-xl); }
.about-badge-b2b strong { display: block; font-family: var(--ff-display); font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.about-badge-b2b span { font-family: var(--ff-mono); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--leaf3); display: block; margin-top: 5px; }
.about-float-card { position: absolute; top: 32px; left: -24px; background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--sh-lg); animation: cardFloat 6s ease-in-out infinite; }
.afc-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--f50); display: flex; align-items: center; justify-content: center; color: var(--leaf); font-size: 1rem; }
.about-float-card strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--f600); }
.about-float-card p { font-size: 0.73rem; color: var(--muted); margin-top: 2px; }
.about-b2b-body h2 { font-family: var(--ff-display); font-size: clamp(1.9rem,3vw,2.8rem); font-weight: 700; color: var(--f600); line-height: 1.2; margin-bottom: 6px; }
.about-formerly { font-family: var(--ff-mono); font-size: 0.7rem; color: var(--muted); margin-bottom: 22px; }
.about-b2b-body p { font-size: 0.94rem; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.about-b2b-body strong { color: var(--f600); }
.about-b2b-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.ab-stat { background: var(--f50); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 16px; text-align: center; }
.ab-stat-n { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--f600); line-height: 1; }
.ab-stat span { font-size: 1.3rem; font-weight: 700; color: var(--leaf); }
.ab-stat-l { font-family: var(--ff-mono); font-size: 0.63rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 5px; display: block; }
.pillars { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; background: var(--f50); border: 1px solid var(--bdr); border-radius: var(--r-md); padding: 16px; }
.pillar-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--white); border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; color: var(--leaf); font-size: 1rem; flex-shrink: 0; }
.pillar h4 { font-size: 0.88rem; font-weight: 700; color: var(--f600); margin-bottom: 3px; }
.pillar p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }


/* ══ TESTIMONIALS ══════════════════════════════════════════ */
.clients-logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 52px; padding: 22px 20px; background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-xl); box-shadow: var(--sh-sm); }
.client-tag { display: flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); background: var(--cream); padding: 7px 14px; border-radius: var(--r-full); border: 1px solid var(--bdr); transition: all 0.22s; }
.client-tag:hover { border-color: var(--leaf); color: var(--f600); }
.client-tag i { color: var(--leaf); font-size: 0.72rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background: var(--white); border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--bdr); box-shadow: var(--sh-sm); transition: all var(--ease); position: relative; }
.testimonial-card:hover { border-color: var(--bdr-lf); box-shadow: var(--sh-md); transform: translateY(-3px); }
.testimonial-card::before { content: '"'; position: absolute; top: 12px; right: 16px; font-family: var(--ff-display); font-size: 5rem; font-weight: 700; color: var(--f100); line-height: 1; pointer-events: none; }
.stars { color: #f59e0b; font-size: 0.88rem; margin-bottom: 12px; letter-spacing: 3px; }
.testimonial-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.85; font-style: italic; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.author-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--f600),var(--leaf)); color: var(--white); font-family: var(--ff-display); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.test-author strong { display: block; font-size: 0.84rem; color: var(--f600); font-weight: 600; }
.test-author span { font-family: var(--ff-mono); font-size: 0.67rem; color: var(--muted); display: block; margin-top: 3px; }


/* ══ FAQ ══════════════════════════════════════════════════ */
.faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-md); overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: var(--leaf); border-left-width: 4px; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--ff-body); font-size: 0.94rem; font-weight: 600; color: var(--f600); cursor: pointer; transition: background 0.22s; background: none; border: none; }
.faq-q:hover { background: var(--f50); }
.faq-arrow { font-size: 0.7rem; color: var(--leaf); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 22px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--muted); line-height: 1.88; }


/* ══ CTA BANNER ════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--f800) 0%, var(--f600) 50%, var(--f500) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(107,170,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-family: var(--ff-display); font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-banner h2 em { font-style: italic; color: var(--leaf3); }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 36px; }
.cta-trust-item { display: flex; align-items: center; gap: 7px; font-family: var(--ff-mono); font-size: 0.68rem; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; }
.cta-trust-item i { color: var(--leaf3); font-size: 0.8rem; }


/* ══ CONTACT ═══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-form-card { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--sh-md); }
.contact-form-card h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--f600); margin-bottom: 6px; }
.contact-form-card p.sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--f600); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; background: var(--cream); border: 1.5px solid var(--bdr); border-radius: var(--r-sm); font-family: var(--ff-body); font-size: 0.9rem; color: var(--ink); outline: none; transition: all 0.25s; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--leaf); background: var(--white); box-shadow: 0 0 0 3px rgba(107,170,43,0.1); }
.form-note { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--muted); text-align: center; margin-top: 10px; letter-spacing: 0.04em; }

.contact-info-col h3 { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--f600); margin-bottom: 8px; }
.contact-info-col .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.ci-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--cream); border: 1px solid var(--bdr); border-radius: var(--r-md); margin-bottom: 12px; transition: border-color 0.22s; }
.ci-item:hover { border-color: var(--bdr-lf); }
.ci-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--f50); border: 1px solid var(--bdr); display: flex; align-items: center; justify-content: center; color: var(--f600); font-size: 0.9rem; flex-shrink: 0; }
.ci-item label { font-family: var(--ff-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--leaf); display: block; margin-bottom: 4px; }
.ci-item p { font-size: 0.87rem; color: var(--body); line-height: 1.65; }
.ci-item a { color: var(--body); transition: color 0.2s; }
.ci-item a:hover { color: var(--f600); }
.btn-wa-full { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; background: #25d366; color: var(--white); font-weight: 700; font-size: 0.9rem; border-radius: var(--r-md); margin-top: 16px; transition: all var(--ease); border: none; cursor: pointer; }
.btn-wa-full:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.contact-socials { display: flex; gap: 10px; margin-top: 18px; }
.contact-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); border: 1px solid var(--bdr); color: var(--body); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; transition: all var(--ease); }
.contact-socials a:hover { background: var(--f600); color: var(--white); border-color: var(--f600); transform: translateY(-2px); }


/* ══ FOOTER ════════════════════════════════════════════════ */
.site-footer { background: var(--f600); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 60px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.35));
  transition: transform 0.3s var(--ease);
}
.footer-logo-img:hover {
  transform: scale(1.04);
}


.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 5px; }
.footer-tagline { font-family: var(--ff-mono); font-size: 0.68rem; color: var(--leaf3); letter-spacing: 0.05em; margin-top: 8px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: all var(--ease); border: 1px solid rgba(255,255,255,0.1); }
.footer-socials a:hover { background: var(--leaf); color: var(--white); border-color: var(--leaf); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--leaf3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col a:hover { color: var(--leaf3); padding-left: 4px; }
.footer-col a i { font-size: 0.75rem; color: var(--leaf); }
.footer-address { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; margin-top: 16px; display: flex; gap: 8px; align-items: flex-start; }
.footer-address i { color: var(--leaf); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-family: var(--ff-mono); font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }

/* ══ STICKY CTA ════════════════════════════════════════════ */
.sticky-wa { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 6px 20px rgba(37,211,102,0.5); transition: all var(--ease); }
.sticky-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.65); }
.scroll-top { position: fixed; bottom: 90px; right: 30px; z-index: 9999; width: 42px; height: 42px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--bdr); color: var(--f600); font-size: 0.88rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all var(--ease); box-shadow: var(--sh-sm); }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--f600); color: var(--white); transform: translateY(-2px); }

/* ══ ORGANIC DIVIDERS ══════════════════════════════════════ */
.wave-top, .wave-bot { line-height: 0; display: block; }
.wave-top svg, .wave-bot svg { display: block; width: 100%; }

/* ══ FILE UPLOAD DROPZONE ═════════════════════════════════ */
.upload-dropzone {
  display: block;
  padding: 20px 16px;
  background: var(--f50);
  border: 2px dashed var(--bdr-lf);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
}
.upload-dropzone:hover {
  background: rgba(107,170,43,0.08);
  border-color: var(--leaf);
  transform: translateY(-2px);
}



/* ══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-eyebrow, .hero-actions, .hero-proof { justify-content: center; margin-left: auto; margin-right: auto; }
  .sol-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .about-b2b-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-float-card { display: none; }
  .industries-deep { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .challenge-grid { grid-template-columns: 1fr; }
  .compliance-strip .compliance-inner { gap: 12px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .desktop-nav, .btn-quote { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-proof { flex-direction: row; flex-wrap: wrap; justify-content: center; width: 100%; }
  .proof-div { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 24px 18px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .about-b2b-stats { grid-template-columns: 1fr; }
  .sol-stats { grid-template-columns: 1fr 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .industries-deep { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .impact-grid { grid-template-columns: 1fr; }
}


/* ══ ROI CALCULATOR SECTION ═════════════════════════════════ */
.roi-section { background: linear-gradient(135deg, var(--f600) 0%, #12341e 100%); color: #ffffff; padding: 90px 0; }
.roi-card-wrap { background: #ffffff; color: var(--body); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-xl); margin-top: 36px; }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.roi-form-group { margin-bottom: 20px; }
.roi-form-group label { display: block; font-family: var(--ff-body); font-size: 0.88rem; font-weight: 600; color: var(--f600); margin-bottom: 8px; }
.roi-form-group input, .roi-form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--bdr); border-radius: var(--r-sm); font-size: 0.95rem; font-family: var(--ff-body); transition: border-color 0.2s var(--ease); }
.roi-form-group input:focus, .roi-form-group select:focus { border-color: var(--leaf); outline: none; box-shadow: 0 0 0 3px rgba(107,170,43,0.15); }
.roi-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.roi-results-box { background: var(--f50); border: 1px solid var(--bdr-lf); border-radius: var(--r-md); padding: 28px; }
.roi-result-card { background: #ffffff; border: 1px solid var(--bdr); border-radius: var(--r-sm); padding: 18px 20px; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--sh-sm); }
.roi-result-card.highlight { background: var(--f600); color: #ffffff; border-color: var(--f600); }
.roi-result-card.highlight .roi-val { color: var(--leaf3); }
.roi-lbl { font-size: 0.88rem; font-weight: 600; }
.roi-val { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--f600); }
.roi-progress-wrap { margin: 20px 0; }
.roi-progress-bar { background: var(--bdr); height: 12px; border-radius: var(--r-full); overflow: hidden; position: relative; }
.roi-progress-fill { background: linear-gradient(90deg, var(--leaf) 0%, var(--leaf3) 100%); height: 100%; width: 70%; transition: width 0.6s var(--ease); }
.roi-disclaimer-box { background: #fff9e6; border: 1px solid #ffe082; border-left: 4px solid #f57c00; border-radius: var(--r-sm); padding: 20px; font-size: 0.82rem; color: #5d4037; line-height: 1.6; margin-top: 30px; }
.roi-disclaimer-box h5 { color: #e65100; font-family: var(--ff-body); font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.roi-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
@media (max-width: 900px) { .roi-grid { grid-template-columns: 1fr; } .roi-input-row { grid-template-columns: 1fr; } .roi-card-wrap { padding: 24px; } }
@media print {
  body * { visibility: hidden; }
  #roi-calculator, #roi-calculator * { visibility: visible; }
  #roi-calculator { position: absolute; left: 0; top: 0; width: 100%; background: #fff; color: #000; padding: 20px; }
  .roi-actions, .site-header, .site-footer, .topbar { display: none !important; }
}
