:root {
  --ae-primary: #F47C20;
  --ae-secondary: #2E7D32;
  --ae-dark: #222222;
  --ae-light: #F9F9F9;
  --ae-accent: #0B5ED7;
  --ae-line: #E2E8E4;
  --ae-muted: #66746B;
  --ae-radius: 16px;
  --ae-shadow: 0 20px 55px rgba(21, 34, 27, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ae-dark); font-family: "Poppins", system-ui, sans-serif; line-height: 1.7; background: #fff; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ae-primary); }
:focus-visible { outline: 3px solid var(--ae-accent); outline-offset: 3px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { z-index: 9999; width: auto; height: auto; padding: 12px 18px; clip: auto; background: #fff; color: var(--ae-dark); }
.ae-container { width: min(90%, 1200px); margin-inline: auto; }
.ae-section { padding: 110px 0; }
.ae-section--light { background: var(--ae-light); }
.ae-kicker, .ae-section-heading span { display: inline-block; color: var(--ae-primary); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ae-section-heading { max-width: 780px; margin-bottom: 46px; }
.ae-section-heading h2, .ae-page-hero h1, .ae-hero h1, .ae-cta h2 { margin: 14px 0; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.02; letter-spacing: 0; }
.ae-section-heading p, .ae-page-hero p, .ae-hero p { max-width: 680px; color: var(--ae-muted); font-size: 1.08rem; }

.ae-button, button, input[type="submit"] { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 24px; border: 0; border-radius: 999px; font-weight: 800; cursor: pointer; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.ae-button:hover, button:hover, input[type="submit"]:hover { transform: translateY(-2px); }
.ae-button--primary, input[type="submit"] { background: var(--ae-primary); color: #fff; box-shadow: 0 12px 28px rgba(244, 124, 32, .28); }
.ae-button--secondary { background: var(--ae-secondary); color: #fff; }
.ae-button--glass { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.ae-arrow { display: inline-flex; margin-top: 14px; color: var(--ae-secondary); font-weight: 800; border-bottom: 2px solid var(--ae-primary); }

.ae-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(226,232,228,.8); }
.ae-header__inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ae-logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ae-secondary); font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.ae-logo__mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--ae-secondary); color: #fff; font-size: 1.4rem; }
.ae-logo__text small { display: block; color: var(--ae-muted); font-size: .56rem; letter-spacing: .16em; }
.ae-menu { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; }
.ae-menu a { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.ae-menu li { position: relative; }
.ae-mega-menu { position: absolute; top: 100%; left: 0; min-width: 260px; display: none; padding: 18px; border-radius: var(--ae-radius); background: #fff; box-shadow: var(--ae-shadow); list-style: none; }
.ae-menu li:hover > .ae-mega-menu, .ae-menu li:focus-within > .ae-mega-menu { display: grid; gap: 10px; }
.ae-header__actions { display: flex; align-items: center; gap: 10px; }
.ae-icon-button, .ae-cart-link { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ae-light); color: var(--ae-dark); }
.ae-cart-link { position: relative; }
.ae-cart-link span { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--ae-primary); color: #fff; font-size: .66rem; }
.ae-menu-toggle { display: none; background: var(--ae-light); color: var(--ae-secondary); width: 44px; height: 44px; padding: 0; }
.ae-search-panel { padding: 18px 0; border-top: 1px solid var(--ae-line); background: #fff; }

.ae-hero { position: relative; min-height: clamp(620px, 78vh, 760px); display: flex; align-items: center; overflow: hidden; color: #fff; }
.ae-hero__media, .ae-hero__overlay { position: absolute; inset: 0; }
.ae-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; transform: scale(1.025); animation: aeHeroZoom 14s ease-in-out infinite alternate; }
.ae-hero__overlay { background: linear-gradient(90deg, rgba(16,28,19,.92), rgba(16,28,19,.68) 52%, rgba(16,28,19,.12)); }
.ae-hero__content { position: relative; z-index: 1; padding: calc(var(--ae-topbar-height, 36px) + var(--ae-header-height, 82px) + 58px) 0 86px; }
.ae-hero h1 { max-width: 840px; color: #fff; font-size: clamp(2.75rem, 5.2vw, 5rem); font-weight: 900; }
.ae-hero p { color: rgba(255,255,255,.86); }
.ae-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0; }
.ae-hero__trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; color: rgba(255,255,255,.92); font-size: .88rem; font-weight: 700; }
.ae-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.ae-hero__trust i { color: #9ddd87; }
.ae-floating-search { max-width: 760px; margin-top: 40px; padding: 14px; border-radius: 999px; background: rgba(255,255,255,.96); box-shadow: var(--ae-shadow); }

.ae-stats { margin-top: -56px; position: relative; z-index: 2; }
.ae-stats__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ae-stat { padding: 26px; border-radius: var(--ae-radius); background: #fff; box-shadow: var(--ae-shadow); text-align: center; }
.ae-stat strong { display: block; color: var(--ae-secondary); font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; }
.ae-stat span { color: var(--ae-muted); font-weight: 700; }

.ae-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.ae-about img { border-radius: var(--ae-radius); box-shadow: var(--ae-shadow); }
.ae-category-grid, .ae-card-grid, .ae-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ae-category-card, .ae-card, .ae-icon-card { border: 1px solid var(--ae-line); border-radius: var(--ae-radius); background: #fff; box-shadow: 0 10px 28px rgba(21,34,27,.06); transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; }
.ae-category-card:hover, .ae-card:hover, .ae-icon-card:hover, .ae-product-card:hover { transform: translateY(-6px); box-shadow: var(--ae-shadow); }
.ae-category-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ae-category-card span, .ae-card, .ae-icon-card { padding: 26px; }
.ae-icon-card i { color: var(--ae-primary); font-size: 2.1rem; }
.ae-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.ae-timeline li { padding: 22px; border-radius: var(--ae-radius); background: var(--ae-light); border-left: 4px solid var(--ae-primary); }
.ae-timeline span { display: block; color: var(--ae-primary); font-weight: 900; }
.ae-export-map svg { width: 100%; filter: drop-shadow(0 18px 40px rgba(21,34,27,.1)); }
.ae-map-point { fill: var(--ae-secondary); stroke: #fff; stroke-width: 4; cursor: pointer; }
.ae-testimonial { min-height: 220px; padding: 36px; border-radius: var(--ae-radius); background: #fff; box-shadow: var(--ae-shadow); }
.ae-logo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ae-logo-strip span { display: grid; place-items: center; min-height: 96px; border-radius: var(--ae-radius); background: #fff; border: 1px solid var(--ae-line); color: var(--ae-muted); font-weight: 800; }
.ae-product-fallbacks { grid-template-columns: repeat(4, 1fr); }
.ae-insight-card h3 { margin-top: 14px; }
.ae-assurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ae-assurance-card { padding: 30px; border: 1px solid var(--ae-line); border-radius: var(--ae-radius); background: #fff; box-shadow: 0 12px 32px rgba(21,34,27,.07); }
.ae-assurance-card i { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 20px; border-radius: 14px; background: rgba(46,125,50,.1); color: var(--ae-secondary); font-size: 1.25rem; }
.ae-assurance-card h3 { margin: 0 0 10px; }
.ae-assurance-card p { margin: 0; color: var(--ae-muted); }
.ae-export-callout { background: linear-gradient(125deg, #173c23, #245d31 58%, #16331e); color: #fff; }
.ae-export-callout__inner { display: grid; grid-template-columns: minmax(0, 1.5fr) auto; gap: 48px; align-items: center; }
.ae-export-callout h2 { max-width: 820px; margin: 12px 0; color: #fff; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.08; }
.ae-export-callout p { max-width: 760px; color: rgba(255,255,255,.78); }
.ae-export-callout__actions { display: grid; gap: 12px; min-width: 230px; }
.ae-newsletter-band { background: var(--ae-secondary); color: #fff; }
.ae-newsletter-band h2 { color: #fff; }
.ae-newsletter, .ae-product-search { display: flex; gap: 10px; }
.ae-newsletter input, .ae-product-search input, .ae-form input, .ae-form textarea, .ae-form select, .search-field { width: 100%; min-height: 50px; padding: 13px 16px; border: 1px solid var(--ae-line); border-radius: 999px; background: #fff; color: var(--ae-dark); }
.ae-form textarea { border-radius: var(--ae-radius); }
.ae-form label { display: grid; gap: 8px; color: var(--ae-dark); font-weight: 700; }
.ae-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ae-rfq-form { display: grid; gap: 18px; max-width: 920px; padding: 34px; border: 1px solid var(--ae-line); border-radius: var(--ae-radius); box-shadow: var(--ae-shadow); }
.ae-cta { padding: 90px 0; background: var(--ae-dark); color: #fff; text-align: center; }
.ae-cta h2 { color: #fff; }

.ae-page-hero { padding: 110px 0 80px; background: linear-gradient(135deg, var(--ae-secondary), #14501b); color: #fff; }
.ae-page-hero h1 { color: #fff; }
.ae-page-hero p, .ae-page-hero a { color: rgba(255,255,255,.82); }
.ae-page-hero--center { text-align: center; }
.ae-entry { padding: 70px 0; }
.ae-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 46px; padding: 70px 0; }
.ae-sidebar { display: grid; gap: 20px; align-content: start; }
.ae-widget { padding: 24px; border: 1px solid var(--ae-line); border-radius: var(--ae-radius); background: #fff; }
.ae-post-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ae-meta { color: var(--ae-muted); font-size: .86rem; font-weight: 700; }
.ae-search-result { padding: 24px 0; border-bottom: 1px solid var(--ae-line); }
.ae-empty { padding: 34px; }
.ae-dashboard__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ae-dashboard__card { display: grid; gap: 12px; padding: 28px; border-radius: var(--ae-radius); background: var(--ae-light); font-weight: 800; }
.ae-dashboard__card i { color: var(--ae-primary); font-size: 1.8rem; }

.ae-footer { padding: 80px 0 28px; background: #151515; color: rgba(255,255,255,.72); }
.ae-footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 46px; }
.ae-footer h2 { color: #fff; font-size: 1rem; }
.ae-footer-menu { margin: 0; padding: 0; list-style: none; }
.ae-footer-menu a { display: inline-block; padding: 5px 0; color: rgba(255,255,255,.72); }
.ae-social { display: flex; gap: 10px; }
.ae-social a, .ae-back-to-top { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.ae-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.ae-back-to-top { position: fixed; right: 20px; bottom: 20px; z-index: 90; border: 0; background: var(--ae-primary); opacity: 0; pointer-events: none; }
.ae-back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.ae-quick-modal { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.58); }
.ae-quick-modal.is-open { display: grid; }
.ae-quick-modal__dialog { width: min(920px, 100%); max-height: 90vh; overflow: auto; padding: 28px; border-radius: var(--ae-radius); background: #fff; }
.ae-quick-modal__close { float: right; width: 44px; height: 44px; padding: 0; }
.ae-quick-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }

@keyframes aeHeroZoom { from { transform: scale(1.025); } to { transform: scale(1.075); } }

@media (max-width: 1180px) {
  .ae-menu { gap: 12px; }
  .ae-header__actions .ae-button { display: none; }
}

@media (max-width: 980px) {
  .ae-menu-toggle { display: grid; }
  .ae-primary-nav { position: absolute; top: 88px; left: 5%; right: 5%; display: none; padding: 24px; border-radius: var(--ae-radius); background: #fff; box-shadow: var(--ae-shadow); }
  .ae-primary-nav.is-open { display: block; }
  .ae-menu { align-items: flex-start; flex-direction: column; }
  .ae-header__actions { gap: 6px; }
  .ae-stats__grid, .ae-split, .ae-category-grid, .ae-card-grid, .ae-icon-grid, .ae-timeline, .ae-logo-strip, .ae-content-layout, .ae-dashboard__grid, .ae-footer__grid, .ae-quick-modal__grid, .ae-product-fallbacks, .ae-assurance-grid, .ae-export-callout__inner { grid-template-columns: 1fr; }
  .ae-export-callout__actions { min-width: 0; }
  .ae-shop-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .ae-section { padding: 72px 0; }
  .ae-hero { min-height: 640px; }
  .ae-hero__media img { object-position: 61% center; }
  .ae-hero__content { padding: 148px 0 70px; }
  .ae-hero h1 { font-size: clamp(2.25rem, 11vw, 3.45rem); line-height: 1.04; }
  .ae-hero__actions, .ae-newsletter, .ae-product-search, .ae-footer__bottom { align-items: stretch; flex-direction: column; }
  .ae-hero__trust { display: grid; gap: 8px; }
  .ae-form__grid { grid-template-columns: 1fr; }
  .ae-header__actions .ae-icon-button:not(.ae-search-toggle), .ae-cart-link { display: none; }
}

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