:root {
  --green-dark: #0D5D43;
  --green-primary: #178A58;
  --green: #2E9A46;
  --green-light: #69C15C;
  --green-soft: #EDF8F0;
  --orange: #F59A23;
  --navy: #14304D;
  --blue: #178A58;
  --accent: #F59A23;
  --soft: #F8FAF9;
  --white: #FFFFFF;
  --ink: #1F2937;
  --muted: #667085;
  --line: #DDEEDF;
  --shadow: 0 18px 50px rgba(13, 93, 67, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #E8F2EC;
  box-shadow: 0 8px 30px rgba(13,93,67,.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(13, 93, 67, .1); }
.header-topbar {
  border-bottom: 0;
  background: #0B3D31;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.header-topbar-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.header-phones {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phones a {
  color: #fff;
  transition: color .2s ease;
}
.header-phones a:hover {
  color: var(--green-light);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  padding: 15px 0;
}
.brand img {
  width: 300px;
  height: 110px;
  object-fit: contain;
  filter: none;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #2D3748;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a {
  position: relative;
  transition: color .22s ease;
}
.main-nav a:hover,
.main-nav a.is-active,
.main-nav a[aria-current="page"] {
  color: var(--green-primary);
}
.main-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-light);
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .22s ease, transform .22s ease;
}
.main-nav a:hover::before,
.main-nav a.is-active::before,
.main-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleX(1);
}
.nav-mega a::before { display: none; }
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.has-mega > .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .8;
  transition: transform .2s ease;
}
.has-mega:hover > .nav-link::after,
.has-mega:focus-within > .nav-link::after {
  transform: rotate(225deg) translateY(-1px);
}
.nav-mega {
  position: absolute;
  top: calc(100% + 24px);
  right: -180px;
  width: min(1160px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(11, 61, 49, .98);
  box-shadow: 0 24px 70px rgba(13, 93, 67, .28);
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: translate(var(--mega-shift, 0px), 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}
.has-mega:hover .nav-mega,
.has-mega:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(var(--mega-shift, 0px), 0);
}
.segments-mega {
  left: -250px;
  right: auto;
  width: min(980px, calc(100vw - 28px));
  grid-template-columns: 240px 1fr;
}
.segments-mega .mega-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mega-intro {
  padding: 20px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(105,193,92,.28), transparent 34%),
    linear-gradient(135deg, rgba(23,138,88,.92), rgba(13,93,67,.94));
}
.mega-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mega-intro strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
}
.mega-intro p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 14px;
  max-height: calc(100vh - 230px);
  overflow: auto;
  padding-right: 4px;
}
.mega-group {
  display: grid;
  align-content: start;
  gap: 6px;
}
.mega-group h3 {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mega-links a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.9);
  font-size: 12.5px;
  line-height: 1.18;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.mega-links a:hover,
.mega-links a:focus {
  transform: translateX(4px);
  border-color: rgba(105,193,92,.5);
  background: rgba(105,193,92,.14);
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(245, 154, 35, .25); }
.btn-accent:hover { background: #F28C12; box-shadow: 0 16px 34px rgba(245, 154, 35, .34); }
.btn-primary { background: var(--green-dark); color: #fff; box-shadow: 0 12px 25px rgba(13,93,67,.2); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.btn-whatsapp { background: #18B963; color: #fff; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23,138,88,.26);
  border-radius: 7px;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(105,193,92,.22), transparent 28%),
    linear-gradient(135deg, #0D5D43 0%, #178A58 45%, #14304D 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 24%),
    radial-gradient(circle at 72% 18%, rgba(105,193,92,.18), transparent 20%),
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.07) 35%, transparent 36% 100%);
  opacity: .85;
  animation: heroGlow 12s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% 46%;
  height: 70%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  animation: heroOrbit 16s ease-in-out infinite alternate;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  align-items: center;
  gap: 38px;
  padding: 58px 0 64px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow::after,
.section-kicker::after {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  margin: 16px 0 18px;
  max-width: 820px;
  font-size: clamp(42px, 3.85vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-media {
  position: relative;
  min-height: 410px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(13, 93, 67, .24);
}

@keyframes heroGlow {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 1%, 0) scale(1.04); }
}

@keyframes heroOrbit {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
  to { transform: translate3d(-5%, -7%, 0) scale(1.08); opacity: .55; }
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,93,67,.18), transparent 52%);
}
.metric-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.metric-card strong,
.metric-card span { display: block; }
.metric-card span { color: var(--muted); font-size: 13px; }

.epi-banner-section {
  padding: 52px 0 18px;
  background: linear-gradient(180deg, #fff 0%, #fff 62%, var(--soft) 100%);
}
.epi-banner {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.epi-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section { padding: 82px 0; }
.section.soft { background: var(--soft); }
.section.compact { padding-top: 42px; }
.section-heading {
  text-align: center;
  margin: 0 auto 36px;
}
.section-heading h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
}
.section-heading.light h2 { color: #fff; }
.section-heading.light h2::after { background: var(--green-light); }

.category-grid,
.segment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-grid.six { grid-template-columns: repeat(6, 1fr); }
.icon-card {
  min-height: 132px;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FCF8;
  text-align: center;
  box-shadow: 0 12px 34px rgba(13,93,67,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.icon-card:hover,
.product-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 15px 35px rgba(23,138,88,.18);
}
.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border: 1px solid rgba(23,138,88,.2);
  border-radius: 50%;
  color: var(--green-primary);
  font-size: 23px;
  background: rgba(237,248,240,.9);
  transition: color .22s ease, border-color .22s ease, background .22s ease;
}
.icon-card:hover .line-icon {
  border-color: rgba(105,193,92,.55);
  background: rgba(105,193,92,.15);
  color: var(--green-light);
}
.icon-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-grid.related { grid-template-columns: repeat(3, 1fr); }
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FCF8;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(13,93,67,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-media,
.blog-image,
.main-product-photo,
.gallery-strip div {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-soft);
}
.product-media {
  aspect-ratio: 1 / .82;
  margin-bottom: 14px;
}
.featured-products .product-media {
  height: 220px;
  aspect-ratio: auto;
  background: linear-gradient(180deg, #fff, #EDF8F0);
}
.featured-products .product-media img {
  object-fit: contain;
  padding: 12px;
}
.product-card img,
.blog-card img,
.main-product-photo img,
.gallery-strip img,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.crop-kraft img { object-position: 11% 64%; }
.crop-stretch img { object-position: 31% 64%; }
.crop-bolha img { object-position: 51% 64%; }
.crop-glove img { object-position: 36% 14%; }
.crop-boot img { object-position: 59% 14%; }
.crop-helmet img { object-position: 12% 14%; }
.crop-worker img { object-position: 80% 52%; }
.crop-boxes img { object-position: 13% 88%; }
.product-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}
.product-card p {
  flex: 1;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.product-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(23,138,88,.12);
  color: var(--green-primary);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.product-card a,
.blog-card a {
  display: inline-flex;
  align-self: flex-start;
  color: var(--green-primary);
  font-size: 13px;
  font-weight: 900;
  transition: color .22s ease;
}
.product-card a:hover,
.blog-card a:hover { color: var(--green-light); }

.benefits-band {
  padding: 78px 0;
  color: #fff;
  background: linear-gradient(135deg, #0B3D31 0%, var(--green-dark) 48%, var(--green-primary) 100%);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.benefit {
  padding: 10px;
  text-align: center;
}
.benefit span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(105,193,92,.48);
  border-radius: 50%;
  color: var(--green-light);
  font-size: 21px;
}
.benefit h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
}
.benefit p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 54px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-copy h2::after,
.content-block h2::after,
.contact-info h2::after,
.contact-form h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
}
.split-copy h2,
.content-block h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.14;
}
.split-copy p,
.content-block p {
  color: var(--muted);
  margin: 0 0 16px;
}

.cta-strip {
  margin: 0 auto;
  color: #fff;
  background:
    radial-gradient(circle at 82% 50%, rgba(245,154,35,.28), transparent 22%),
    linear-gradient(90deg, #0D5D43, #178A58);
}
.cta-inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
}
.cta-inner h2 {
  max-width: 720px;
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}
.cta-inner p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.brands {
  background:
    linear-gradient(180deg, #fff 0%, #fff 55%, var(--green-soft) 100%);
}
.brands .section-heading {
  margin-bottom: 48px;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(130px, 1fr));
  align-items: center;
  gap: 26px 34px;
}
.brand-logo {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  border: 1px solid rgba(221,238,223,.75);
  border-radius: var(--radius);
  background: rgba(255,255,255,.9);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.brand-logo::before {
  content: "";
  position: absolute;
  inset: -80% auto auto -50%;
  width: 70%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(105,193,92,.26), transparent);
  transform: rotate(18deg) translateX(-140%);
  transition: transform .55s ease;
}
.brand-logo:hover {
  transform: translateY(-6px);
  border-color: rgba(46,154,70,.42);
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 138, 88, .16);
}
.brand-logo:hover::before {
  transform: rotate(18deg) translateX(260%);
}
.brand-row img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.02);
  opacity: .96;
  transition: transform .24s ease, filter .24s ease, opacity .24s ease;
}
.brand-logo:hover img {
  filter: saturate(1.2) contrast(1.05);
  opacity: 1;
  transform: scale(1.04);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FCF8;
  box-shadow: 0 12px 34px rgba(13,93,67,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.blog-image {
  height: 150px;
  border-radius: 0;
}
.blog-card span {
  display: inline-flex;
  margin: 16px 16px 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(23,138,88,.12);
  color: var(--green-primary);
  font-size: 11px;
  font-weight: 900;
}
.blog-card h3 {
  min-height: 78px;
  margin: 0 16px 14px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}
.blog-card p {
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.blog-card a { margin: 0 16px 18px; }

.site-footer {
  color: rgba(255,255,255,.76);
  background: #0B3D31;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 44px;
  padding: 54px 0 34px;
}
.footer-logo {
  width: 150px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-grid h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 16px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 9px;
  font-size: 14px;
}
.footer-grid a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}
.footer-credits {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.68);
}
.footer-credits a {
  color: rgba(255,255,255,.88);
  transition: color .2s ease;
}
.footer-credits a:hover {
  color: var(--green-light);
}

.product-hero {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, #fff, var(--soft));
}
.page-hero {
  padding: 34px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(105,193,92,.24), transparent 28%),
    linear-gradient(135deg, #0D5D43, #178A58 54%, #14304D);
}
.page-hero .breadcrumb {
  color: rgba(255,255,255,.72);
}
.page-hero .breadcrumb a:hover {
  color: var(--accent);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 48px;
  padding-top: 26px;
}
.page-hero h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}
.page-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}
.contact-highlight {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 20px 48px rgba(13,93,67,.22);
}
.contact-highlight strong,
.contact-highlight span {
  display: block;
}
.contact-highlight strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}
.contact-highlight span {
  color: rgba(255,255,255,.72);
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumb a:hover { color: var(--accent); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 38px;
  align-items: center;
}
.gallery-panel,
.product-summary,
.content-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(13,93,67,.09);
}
.gallery-panel { padding: 18px; }
.main-product-photo { aspect-ratio: 1.35 / 1; }
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  aspect-ratio: 1.25 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.thumb.active { border-color: var(--green-primary); }
.product-summary { padding: 34px; }
.product-summary h1 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}
.product-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}
.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.feature-mini-grid article {
  min-height: 118px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: #F7FCF8;
}
.feature-mini-grid span {
  display: block;
  color: var(--green-primary);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.feature-mini-grid strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.3;
}
.product-content { background: #fff; }
.content-block { padding: 28px; margin-bottom: 34px; }
.two-column-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  margin-top: 34px;
}
.check-list {
  columns: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  break-inside: avoid;
  position: relative;
  padding-left: 24px;
  margin: 0 0 12px;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-weight: 900;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}
.spec-table th,
.spec-table td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}
.spec-table th {
  width: 32%;
  color: var(--navy);
  background: var(--soft);
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-strip div { aspect-ratio: 1.6 / 1; }
.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .25s ease;
}
.final-cta { margin-bottom: 0; }

.contact-section {
  background: var(--soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-info,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(13,93,67,.09);
}
.contact-info {
  padding: 30px;
}
.contact-info h2,
.contact-form h2 {
  margin: 10px 0 22px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}
.contact-list {
  display: grid;
  gap: 16px;
}
.contact-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FCF8;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23,138,88,.12);
  color: var(--green-primary);
  font-size: 22px;
  font-weight: 900;
}
.contact-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.contact-list p {
  margin: 0 0 4px;
  color: var(--muted);
}
.contact-list a {
  color: var(--green-primary);
  font-weight: 800;
}
.contact-list a:hover {
  color: var(--green-light);
}
.contact-form {
  padding: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}
.contact-form textarea {
  resize: vertical;
  padding: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(23,138,88,.75);
  box-shadow: 0 0 0 4px rgba(23,138,88,.12);
}
.map-section {
  padding: 74px 0 86px;
  background: #fff;
}
.map-frame {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.company-intro {
  background: #fff;
}
.company-intro .about-image img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}
.company-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.company-principles .content-block {
  height: 100%;
  margin-bottom: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.company-location {
  background: var(--soft);
}
.company-location .map-frame {
  min-height: 100%;
}
.company-location .map-frame iframe {
  height: 100%;
  min-height: 480px;
}
.logistics-benefits {
  grid-template-columns: repeat(4, 1fr);
}
.logistics-benefits .benefit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F7FCF8;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(13,93,67,.07);
}
.logistics-benefits .benefit p {
  color: var(--muted);
}
.info-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .brand img { width: 180px; height: 62px; }
  .main-nav { gap: 12px; font-size: 12px; }
  .nav-mega {
    right: -96px;
    width: min(1040px, calc(100vw - 24px));
    grid-template-columns: 240px 1fr;
  }
  .segments-mega {
    left: -180px;
    right: auto;
    width: min(940px, calc(100vw - 24px));
  }
  .segments-mega .mega-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mega-links a {
    font-size: 12px;
  }
  .hero-grid,
  .split,
  .product-detail-grid,
  .page-hero-grid,
  .contact-grid,
  .company-principles,
  .two-column-section { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; padding-top: 42px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid,
  .category-grid.six { grid-template-columns: repeat(3, 1fr); }
  .category-grid,
  .segment-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-topbar-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    line-height: 1.35;
  }
  .header-phones {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
  .header-inner { min-height: 78px; }
  .brand img { width: 170px; height: 58px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid #E8F2EC;
    background: #fff;
    color: #2D3748;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; border-bottom: 1px solid #E8F2EC; }
  .main-nav a::before { display: none; }
  .main-nav a:hover,
  .main-nav a:focus { color: var(--green-primary); }
  .nav-item {
    display: block;
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
  }
  .nav-mega {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-mega::before {
    display: none;
  }
  .has-mega:hover .nav-mega,
  .has-mega:focus-within .nav-mega {
    display: grid;
  }
  .mega-intro {
    display: none;
  }
  .mega-links {
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: 340px;
    overflow: auto;
  }
  .mega-group {
    gap: 6px;
  }
  .mega-group h3 {
    margin: 8px 0 2px 12px;
  }
  .mega-links a {
    min-height: 38px;
    margin-left: 12px;
    border-color: #E8F2EC;
    background: #F7FCF8;
    color: #2D3748;
  }
  .hero-grid { min-height: auto; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .hero-media,
  .hero-media img { min-height: 300px; }
  .epi-banner-section { padding: 34px 0 8px; }
  .epi-banner img {
    min-height: 0;
  }
  .section { padding: 58px 0; }
  .category-grid,
  .category-grid.six,
  .segment-grid,
  .benefit-grid,
  .values-grid,
  .product-grid,
  .product-grid.related,
  .blog-grid,
  .footer-grid,
  .feature-mini-grid,
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .brand-row { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom,
  .footer-credits {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-summary { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .check-list { columns: 1; }
}

@media (max-width: 480px) {
  .hero-actions,
  .summary-actions { flex-direction: column; align-items: stretch; }
  .category-grid,
  .category-grid.six,
  .segment-grid,
  .benefit-grid,
  .product-grid,
  .product-grid.related,
  .blog-grid,
  .footer-grid,
  .feature-mini-grid,
  .gallery-strip,
  .thumb-row { grid-template-columns: 1fr; }
  .brand-row { grid-template-columns: repeat(2, 1fr); }
  .blog-card h3 { min-height: auto; }
  .product-summary h1 { font-size: 34px; }
  .content-block { padding: 22px; }
  .spec-table th,
  .spec-table td { display: block; width: 100%; }
}
