:root {
  --green-bright: #96c11f;
  --green-deep: #4f7011;
  --green-dark: #294114;
  --charcoal: #202224;
  --graphite: #454a50;
  --white: #ffffff;
  --off-white: #f5f6f1;
  --line: rgba(32, 34, 36, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius: 24px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--green-bright);
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 22, 23, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  width: 178px;
  height: 92px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--green-bright); }
.nav-links .nav-cta {
  color: var(--charcoal);
  background: var(--green-bright);
  padding: 12px 20px;
  border-radius: 999px;
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible { color: var(--charcoal); background: #afd83e; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 112px);
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: url("../images/hero-green-edge.png") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,10,8,.18), rgba(8,10,8,.68));
}
.hero-content { padding-block: 120px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-bright);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: .94;
  letter-spacing: .04em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 720px;
  margin: 0 auto 38px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-bright); color: var(--charcoal); }
.btn-primary:hover { background: #afd83e; }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.12); }
.btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--green-deep); }
.btn-whatsapp { background: #25d366; color: #082514; }

.section { padding: 110px 0; }
.section-dark { padding: 110px 0; background: var(--charcoal); color: var(--white); }
.section-heading { max-width: 820px; margin: 0 auto 62px; text-align: center; }
.section-heading h2,
.split-copy h2,
.corporate-content h2,
.contact-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading > p:last-child { margin: 0; color: #62666b; }
.section-heading.light h2 { color: var(--white); }

.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split-copy p:not(.eyebrow) { color: rgba(255,255,255,.74); font-size: 1.05rem; }
.brand-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.brand-gallery img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.brand-gallery img:nth-child(2) { margin-top: 64px; }

.products-section { background: var(--off-white); }
.product-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 650px;
  margin-bottom: 54px;
  overflow: hidden;
  background: var(--white);
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(19, 24, 18, .09);
}
.product-feature-reverse .product-visual { order: 2; }
.product-feature-reverse .product-content { order: 1; }
.product-visual { min-height: 100%; overflow: hidden; background: #d9e7cf; }
.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  transition: transform .8s ease;
}
.product-feature:hover .product-visual img { transform: scale(1.025); }
.product-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 88px);
}
.product-number {
  color: var(--green-bright);
  font-weight: 800;
  letter-spacing: .14em;
}
.product-kicker {
  margin: 14px 0 4px;
  color: var(--green-deep);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-content h3,
.accessory-card h3 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1;
}
.product-lead { margin: 0 0 18px; font-size: 1.25rem; font-weight: 700; }
.product-content > p:not(.product-kicker):not(.product-lead) { color: #585d60; }
.spec-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 30px;
  padding: 0;
  list-style: none;
}
.spec-list li { padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.product-content .btn { align-self: flex-start; }
.brochure-trigger {
  position: absolute;
  right: 22px;
  bottom: 22px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(32,34,36,.88);
  color: var(--white);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.product-feature-reverse .brochure-trigger { right: auto; left: 22px; }
.brochure-trigger:hover { background: var(--green-deep); }

.comparison-section { background: var(--white); }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0,0,0,.06);
}
table { width: 100%; min-width: 900px; border-collapse: collapse; background: var(--white); }
th, td { padding: 20px 18px; text-align: left; border-bottom: 1px solid var(--line); }
thead th { background: var(--charcoal); color: var(--white); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
tbody th { color: var(--green-deep); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f6f9ee; }

.accessories-section { background: var(--charcoal); color: var(--white); }
.accessory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.accessory-card {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 32px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: #292c2f;
}
.accessory-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}
.accessory-card h3 { font-size: clamp(2rem, 3vw, 3.5rem); }
.accessory-card p { color: rgba(255,255,255,.72); }
.light-list li { border-color: rgba(255,255,255,.12); }

.corporate-section {
  min-height: 650px;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}
.corporate-bg, .corporate-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.corporate-bg { z-index: -2; object-fit: cover; object-position: center; }
.corporate-overlay { z-index: -1; background: linear-gradient(90deg, rgba(8,10,10,.88) 0%, rgba(8,10,10,.64) 48%, rgba(8,10,10,.18) 100%); }
.corporate-content { padding-block: 110px; }
.corporate-content { max-width: var(--container); }
.corporate-content h2 { max-width: 720px; }
.corporate-content > p:not(.eyebrow) { max-width: 650px; margin-bottom: 32px; color: rgba(255,255,255,.82); font-size: 1.08rem; }

.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.contact-copy > p:last-child { max-width: 620px; color: #62666b; }
.contact-card {
  padding: 44px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-card h3 { margin: 0 0 10px; font-size: 1.8rem; }
.contact-card p { color: #62666b; }
.contact-card small { display: block; margin-top: 18px; color: #787c80; }

.site-footer { padding: 80px 0 24px; background: #151719; color: rgba(255,255,255,.64); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: 190px; height: 110px; object-fit: contain; }
.site-footer h3 { margin: 0 0 16px; color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--green-bright); }
.footer-bottom { margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

.image-modal {
  width: min(94vw, 760px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  color: var(--white);
  box-shadow: 0 35px 100px rgba(0,0,0,.55);
}
.image-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(6px); }
.image-modal img { width: 100%; max-height: calc(92vh - 68px); object-fit: contain; }
.modal-bar { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 18px; }
.modal-bar h2 { margin: 0; font-size: 1rem; }
.modal-close { width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); font-size: 1.7rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .navbar { min-height: 96px; }
  .brand img { width: 150px; height: 76px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .7rem; }
  .hero { min-height: calc(100vh - 96px); }
  .split-layout { gap: 45px; }
  .accessory-card { grid-template-columns: 1fr; }
  .accessory-card img { height: 520px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    background: #151719;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: min(100%, var(--container)); margin-inline: auto; }
  .nav-links a { display: block; padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .split-layout, .contact-grid { grid-template-columns: 1fr; }
  .brand-gallery { max-width: 650px; }
  .product-feature { grid-template-columns: 1fr; }
  .product-feature-reverse .product-visual, .product-feature-reverse .product-content { order: initial; }
  .product-visual img { min-height: 420px; max-height: 520px; }
  .product-feature-reverse .brochure-trigger { right: 22px; left: auto; }
  .accessory-grid { grid-template-columns: 1fr; }
  .corporate-overlay { background: linear-gradient(90deg, rgba(8,10,10,.9), rgba(8,10,10,.58)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .navbar { min-height: 84px; }
  .brand img { width: 132px; height: 66px; }
  .hero { min-height: calc(100svh - 84px); background-position: 48% center; }
  .hero-content { padding-block: 82px; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 4.6rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .section, .section-dark { padding: 78px 0; }
  .section-heading { margin-bottom: 42px; }
  .brand-gallery { grid-template-columns: 1fr; }
  .brand-gallery img { height: 480px; }
  .brand-gallery img:nth-child(2) { display: none; }
  .product-feature { border-radius: 22px; }
  .product-visual img { min-height: 320px; max-height: 380px; }
  .product-content { padding: 34px 24px 82px; }
  .brochure-trigger { right: 16px; bottom: 16px; }
  .accessory-card { padding: 18px; }
  .accessory-card img { height: 480px; }
  .corporate-section { min-height: 590px; }
  .contact-card { padding: 30px 24px; }
  .contact-card .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand img { width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
