:root {
  --green-950: #0d1a12;
  --green-900: #132b1b;
  --green-800: #194427;
  --green-700: #236333;
  --gold: #c8a45b;
  --gold-soft: #ead8a7;
  --ink: #142016;
  --muted: #5d6a61;
  --line: #dbe3db;
  --paper: #f7f8f2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 33, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

span,
small {
  display: block;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 26, 18, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-wrap {
  width: 78px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(200, 164, 91, 0.75);
  border-radius: 7px;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.3;
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.site-nav a small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}

.site-nav a:hover,
.site-nav a:hover small {
  color: var(--gold-soft);
}

.site-nav .nav-contact {
  min-width: 112px;
  padding: 8px 13px;
  border-radius: 6px;
  line-height: 1.15;
}

.site-nav .nav-whatsapp {
  color: var(--white);
  background: var(--green-700);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav .nav-whatsapp small {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav .nav-email {
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  background: rgba(200, 164, 91, 0.08);
}

.site-nav .nav-email small {
  color: rgba(234, 216, 167, 0.85);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  border-radius: 6px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--green-950);
}

.section-heading {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
  overflow-wrap: anywhere;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section-heading h2 small {
  margin-top: 8px;
  color: inherit;
  font-size: 0.58em;
  font-weight: 700;
}

.section-heading p:not(.eyebrow) {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero {
  padding: 0 0 28px;
  background: var(--green-950);
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--green-950);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions-only {
  justify-content: center;
  margin-top: 22px;
}

.hero-actions-only .btn {
  min-width: 360px;
}

.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 28px;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.btn small {
  font-size: 0.78em;
  font-weight: 700;
  margin-top: 4px;
}

.btn-primary {
  color: var(--green-950);
  background: var(--gold);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.btn-large {
  min-width: 430px;
  min-height: 86px;
  padding: 15px 44px;
  font-size: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-card,
.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #eef1e8;
}

.category-card div {
  padding: 22px;
}

.category-card h3,
.product-card h3,
.full-image-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.category-card h3 small,
.product-card h3 small,
.full-image-card h3 small,
.site-footer h3 small {
  color: var(--green-700);
  font-size: 0.72em;
  margin-top: 4px;
}

.category-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-section {
  overflow: hidden;
}

.product-container {
  width: min(1680px, calc(100% - 48px));
}

.slider-wrap {
  position: relative;
}

.product-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(205px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 24px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.12);
}

.product-card {
  scroll-snap-align: start;
  color: var(--ink);
}

.product-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #eef1e8;
}

.product-card div {
  padding: 15px;
}

.product-card h3 {
  font-size: 17px;
}

.product-card p {
  font-size: 13px;
  line-height: 1.45;
}

.product-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.slider-btn {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  color: var(--green-950);
  background: var(--gold);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-prev {
  left: -12px;
}

.slider-next {
  right: -12px;
}

.capability-stack,
.display-stack {
  display: grid;
  gap: 30px;
}

.full-image-card {
  overflow: hidden;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.full-image-card img,
.display-stack img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #eef1e8;
}

.wide-feature,
.process-image {
  overflow: hidden;
  padding: 4px;
  border: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.wide-feature img,
.process-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--green-950);
}

.display-stack img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-section {
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
  padding-bottom: 36px;
}

.cta-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--green-950);
}

.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #08120c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer h3 small {
  color: var(--gold-soft);
}

.site-footer p {
  margin: 6px 0;
}

@media (min-width: 1380px) {
  .product-slider {
    grid-auto-columns: calc((100% - 70px) / 6);
  }
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn-large {
    min-width: 320px;
    min-height: 76px;
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .container,
  .product-container {
    width: min(100% - 28px, 1440px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand-logo-wrap {
    width: 58px;
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--green-950);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
    text-align: left;
  }

  .site-nav .nav-contact {
    min-width: 0;
    margin-top: 8px;
    padding: 12px;
    text-align: center;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 24px;
    line-height: 1.14;
  }

  .section-heading h2 span,
  .section-heading h2 small,
  .section-heading p,
  .category-card h3,
  .category-card p,
  .product-card h3,
  .product-card p,
  .full-image-card h3,
  .site-footer p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .section-heading h2 small {
    font-size: 0.62em;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero {
    padding-bottom: 22px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions-only .btn {
    min-width: 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: auto;
    min-height: 0;
  }

  .product-slider {
    grid-auto-columns: minmax(78vw, 1fr);
  }

  .product-card img {
    height: 220px;
  }

  .slider-btn {
    display: none;
  }

  .full-image-card {
    padding: 12px;
  }

  .cta-section {
    padding-bottom: 28px;
  }

  .cta-button-row {
    width: min(100% - 28px, 1440px);
    margin-top: 20px;
  }

  .btn-large {
    width: 100%;
    min-width: 0;
    min-height: 72px;
    font-size: 18px;
    padding: 14px 20px;
  }
}
