/* Jawad Polymer Recycling — brand spec tokens */
:root {
  --jg: #1E7B33;
  --jg-hover: #166028;
  --lime: #7AC143;
  --navy: #14356B;
  --grey: #9EA3A8;
  --off: #F7F8F6;
  --ink: #2B2B2B;
  --border: rgba(158, 163, 168, .35);
  --grad: linear-gradient(120deg, #1E7B33, #7AC143);
  --radius-card: 15px;
  --radius-btn: 9px;
  --pad-y: 88px;
  --pad-x: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', 'Hind Siliguri', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off);
}
:lang(bn) { font-family: 'Hind Siliguri', sans-serif; }

main, .site-header, .site-footer { max-width: 1440px; margin: 0 auto; }

h1, h2 {
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 20px;
}
h1 { font-size: clamp(34px, 4.5vw, 58px); line-height: 1.12; letter-spacing: -1.2px; }
h1 em { font-style: normal; color: var(--jg); }
h2 { font-size: clamp(26px, 2.6vw, 35px); letter-spacing: -0.6px; color: var(--jg); }
h3 { font-weight: 700; font-size: 19px; margin: 0 0 8px; color: var(--navy); }
.h2-onnavy { color: #fff; }

a { color: var(--jg); }
a:hover { color: var(--lime); }

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--jg);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}
.eyebrow-rule { display: inline-block; width: 56px; border-top: 4px dotted var(--lime); }
.eyebrow-onnavy { color: var(--lime); }
.section-num { font-size: 34px; font-weight: 800; color: var(--lime); letter-spacing: 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--jg); color: #fff; }
.btn-primary:hover { background: var(--jg-hover); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 12px 26px; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }
.btn-header { padding: 11px 22px; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px var(--pad-x);
  background: var(--off);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-jawad { font-weight: 800; font-size: 21px; letter-spacing: 0.5px; color: var(--jg); }
.brand-sub { font-weight: 700; font-size: 9.5px; letter-spacing: 2.6px; color: var(--navy); }
.site-nav { display: flex; gap: 28px; margin-left: auto; }
.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.site-nav a:hover { color: var(--jg); }

/* Sections */
.section-light, .hero { padding: var(--pad-y) var(--pad-x); }
.section-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, .88);
  padding: var(--pad-y) var(--pad-x);
}
.section-intro { max-width: 640px; margin: 0 0 48px; }
.onnavy { color: rgba(255, 255, 255, .82); }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 64px;
  align-items: center;
  padding-top: 56px;
}
.hero > * { min-width: 0; }
.lead { font-size: 19px; max-width: 560px; margin: 0 0 32px; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.stats { display: flex; gap: 48px; margin: 0; }
.stats dt { font-weight: 800; font-size: 26px; color: var(--jg); }
.stats dd { margin: 4px 0 0; font-size: 14px; color: var(--grey); font-weight: 600; }

.hero-media { position: relative; }
.photo { margin: 0; position: relative; }
.photo-fill { display: block; width: 100%; height: auto; border-radius: 18px; }
.photo-note { font-size: 12.5px; color: var(--grey); margin-top: 10px; font-weight: 600; }
.pellet-accent { position: absolute; width: 110px; right: -28px; bottom: 8px; }

/* Process */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 36px;
  counter-reset: step;
}
.process-steps li { position: relative; }
.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 66px;
  right: -22px;
  border-top: 4px dotted var(--lime);
  opacity: .7;
}
.step-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.step-green { background: var(--jg); color: #fff; }
.step-lime { background: var(--lime); color: var(--navy); }
.step-white { background: #fff; color: var(--navy); }
.process-steps h3 { color: #fff; }
.process-steps p { font-size: 14.5px; color: rgba(255, 255, 255, .75); margin: 0; }

/* Product cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-width: 0;
}
.card-photo svg { display: block; width: 100%; height: auto; }
.card-body { padding: 24px 26px 28px; }
.card-body p { font-size: 15px; margin: 0 0 16px; }
.text-link { font-weight: 700; font-size: 15px; text-decoration: none; }

/* Sustainability gradient panel */
.gradient-panel {
  background: var(--grad);
  border-radius: 22px;
  padding: 64px 72px;
  color: #fff;
}
.gradient-panel p { max-width: 680px; color: rgba(255, 255, 255, .92); }
.gradient-panel .bn { font-size: 21px; font-weight: 700; margin-top: 22px; }
.claim-chips {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.claim-chips li {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Partners split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 64px;
  align-items: center;
}
.split > * { min-width: 0; }
.split-copy p { max-width: 560px; }
.split-copy .bn { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 30px; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 72px;
  align-items: start;
}
.contact > * { min-width: 0; }
.logo-reversed {
  filter: grayscale(1) brightness(0) invert(1);
  margin-bottom: 28px;
  height: auto;
}
.contact-lines { list-style: none; padding: 0; margin: 32px 0 0; }
.contact-lines li { margin-bottom: 14px; font-size: 16px; }
.contact-lines a { color: #fff; text-decoration: none; }
.contact-lines a:hover { color: var(--lime); }
.contact-label {
  display: inline-block;
  min-width: 150px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lime);
}
.placeholder-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, .8);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 10px;
}

.quote-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 36px 38px 40px;
  color: var(--ink);
}
.quote-card h3 { font-size: 22px; margin-bottom: 20px; color: var(--jg); text-transform: uppercase; letter-spacing: -0.3px; }
.quote-card label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
}
.quote-card input, .quote-card textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid rgba(158, 163, 168, .5);
  border-radius: 8px;
  background: var(--off);
}
.quote-card input:focus, .quote-card textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
  border-color: var(--jg);
}
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status { min-height: 1.4em; margin: 14px 0 0; font-size: 14.5px; font-weight: 600; }
.form-status.ok { color: var(--jg); }
.form-status.err { color: #a03030; }

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px var(--pad-x);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.site-footer p { margin: 0; font-size: 13px; color: var(--grey); }
.footer-tag { font-weight: 700; letter-spacing: 3px; }

/* Responsive */
@media (max-width: 1080px) {
  :root { --pad-y: 64px; --pad-x: 36px; }
  .hero, .split, .contact { grid-template-columns: 1fr; gap: 44px; }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .process-steps li:not(:last-child)::after { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .gradient-panel { padding: 44px 34px; }
  .pellet-accent { display: none; }
}
@media (max-width: 700px) {
  :root { --pad-y: 52px; --pad-x: 20px; }
  .site-header { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .brand { gap: 9px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-jawad { font-size: 17px; }
  .brand-sub { font-size: 8px; letter-spacing: 2px; }
  .site-nav { order: 3; width: 100%; gap: 16px; margin-left: 0; flex-wrap: wrap; }
  .btn-header { margin-left: auto; padding: 9px 14px; font-size: 13px; }
  .stats { gap: 28px; flex-wrap: wrap; }
  .process-steps { grid-template-columns: 1fr; }
}
