:root {
  --bg: #f6f7f9;
  --panel: #ffffff;
  --text: #192026;
  --muted: #65717d;
  --line: #d9e0e7;
  --green: #1f7a4d;
  --blue: #255c99;
  --gold: #b87921;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: #fff;
  border: 2px solid var(--green);
  border-radius: 6px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(37,92,153,.35); outline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark {
  width: 118px; height: 42px; display: grid; place-items: center;
  background: #fff; border-radius: 6px; font-weight: 800;
}
.brand-mark img { width: 100%; max-height: 38px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: .78rem; }
.main-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a { padding: 9px 11px; border-radius: 7px; color: #27323b; font-weight: 650; font-size: .94rem; }
.main-nav a:hover { background: #edf3ee; }
.language-switch { display: flex; gap: 5px; margin-left: auto; }
.language-switch a {
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
}
.language-switch a.active { background: var(--green); border-color: var(--green); color: #fff; }
.header-search {
  position: relative;
  width: min(100%, 330px);
  flex: 0 1 330px;
}
.header-search input {
  width: 100%;
  min-height: 38px;
  border-color: #cbd6df;
  background: #fff;
}
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(92vw, 430px);
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(25,32,38,.18);
}
.search-suggestions a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 10px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}
.search-suggestions img,
.search-suggestions span {
  grid-row: span 3;
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #f1f4f6;
  border-radius: 6px;
}
.search-suggestions strong { color: var(--gold); font-size: .78rem; }
.search-suggestions em { font-style: normal; font-weight: 760; line-height: 1.25; }
.search-suggestions small { color: var(--muted); line-height: 1.25; }
.hero {
  min-height: 520px;
  padding: clamp(32px, 7vw, 84px) clamp(16px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18,28,24,.78), rgba(18,28,24,.36)),
    url("/legacy/upload/destacados/IMG_9445.png") center/cover no-repeat;
  color: #fff;
}
.hero-copy { max-width: 820px; }
.eyebrow { margin: 0 0 12px; color: #d9b36c; font-weight: 800; text-transform: uppercase; font-size: .82rem; }
.hero h1 { margin: 0; font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1; max-width: 900px; }
.hero p { max-width: 680px; color: rgba(255,255,255,.86); font-size: 1.08rem; line-height: 1.55; }
.hero-panel {
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  background: rgba(255,255,255,.94);
  color: var(--text);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
}
.hero-panel strong { font-size: 1.8rem; color: var(--green); }
.hero-panel span { align-self: center; color: var(--muted); }
.actions, .doc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.btn, button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  font-weight: 760;
  cursor: pointer;
}
.btn.primary, button[type=submit] { background: var(--green); border-color: var(--green); color: #fff; }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--muted); }
.section, .page-head, .text-page, .detail-layout { padding: clamp(26px, 4vw, 48px) clamp(16px, 5vw, 72px); }
.section-head { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 18px; }
.section-head h2, .page-head h1, .text-page h1 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.8rem); }
.section-head a { color: var(--blue); font-weight: 750; }
.category-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.catalog-grid {
  padding: 0 clamp(16px, 5vw, 72px) clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.product-grid.compact { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.catalog-grid.compact { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.category-tile, .product-card, .catalog-card, .tool-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.category-tile img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  aspect-ratio: 16/10;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  background: #e7ecef;
}
.category-tile h3, .category-tile p { margin: 12px 14px; }
.category-tile p, .product-body p, .page-head p { color: var(--muted); }
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.product-card:hover { transform: translateY(-2px); border-color: #b9cbd8; box-shadow: 0 12px 28px rgba(25,32,38,.08); }
.product-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f2f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  flex: 0 0 auto;
}
.product-image > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: clamp(8px, 5%, 18px);
}
.product-image span {
  max-width: 70%;
  padding: 8px 10px;
  text-align: center;
  color: #65717d;
  border: 1px dashed #bdc8d2;
  border-radius: 6px;
  background: #fff;
  font-size: .82rem;
  font-weight: 750;
}
.product-body {
  padding: 13px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 7px;
  min-height: 0;
}
.product-body small { color: var(--gold); font-weight: 800; }
.product-body h3 { margin: 0; font-size: 1rem; line-height: 1.25; overflow-wrap: anywhere; }
.product-body p { margin: 0; line-height: 1.4; }
.card-link { align-self: start; margin-top: auto; padding-top: 8px; color: var(--blue); font-size: .82rem; font-weight: 850; }
.filters, .search-inline { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
input, select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font: inherit;
}
.filters input { min-width: min(100%, 320px); }
.filters input, .filters select, .filters button, .filters .btn {
  height: 42px;
  font-size: .84rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0;
}
.filters select { min-width: min(100%, 230px); }
.family-menu-section { padding: 0 clamp(16px, 5vw, 72px) 24px; }
.family-menu-section h2 { margin: 0 0 12px; font-size: 1.1rem; }
.family-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.family-menu a {
  min-height: 156px;
  display: grid;
  grid-template-rows: 112px auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #27323b;
}
.family-menu a.active { border-color: var(--green); box-shadow: 0 0 0 2px rgba(31,122,77,.12); }
.family-menu span { display: grid; place-items: center; height: 112px; background: #e7ecef; border-radius: 6px; overflow: hidden; }
.family-menu img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px;
}
.family-menu strong { font-size: .78rem; line-height: 1.15; text-align: center; text-transform: uppercase; letter-spacing: 0; }
.back-link { display: inline-flex; margin-bottom: 16px; color: var(--blue); font-weight: 800; }
.product-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.product-facts div { padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.product-facts dt { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.product-facts dd { margin: 4px 0 0; font-weight: 760; }
.result-count { margin-bottom: 0; font-weight: 800; color: var(--muted); }
.empty-state { grid-column: 1 / -1; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.pagination { padding: 24px; display: flex; justify-content: center; gap: 8px; align-items: center; flex-wrap: wrap; }
.pagination a, .pagination .current { min-width: 36px; min-height: 36px; display: inline-grid; place-items: center; padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--blue); font-weight: 800; }
.pagination .current { background: var(--green); border-color: var(--green); color: #fff; }
.detail-layout { display: grid; grid-template-columns: minmax(280px, 560px) 1fr; gap: 32px; align-items: start; }
.detail-media > a,
.detail-media > img,
.product-image-large {
  width: 100%;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.detail-media > a img,
.detail-media > img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; object-position: center; padding: 12px; }
.gallery-count { margin: 8px 0 0; color: var(--muted); font-weight: 800; text-align: right; }
.thumb-row { margin-top: 10px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.thumb-button { min-height: 0; padding: 0; border: 1px solid var(--line); border-radius: 6px; background: #fff; overflow: hidden; }
.thumb-button.active { border-color: var(--green); box-shadow: 0 0 0 2px rgba(31,122,77,.15); }
.thumb-button img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; padding: 5px; }
.breadcrumb { color: var(--muted); font-weight: 700; }
.rich-text { line-height: 1.65; color: #29353f; }
.description-panel, .download-list, .request-panel {
  margin-top: 20px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.description-panel h2, .download-list h2, .request-panel h2 { margin: 0 0 12px; font-size: 1.1rem; }
.download-list { display: grid; gap: 10px; }
.download-list a { min-height: 44px; display: flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 820; }
.download-list a small { display: block; margin-top: 3px; color: var(--muted); font-weight: 650; line-height: 1.35; }
.download-icon {
  min-width: 42px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: #edf3ee;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
}
.catalog-card { display: grid; grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: 0; padding: 0; align-items: stretch; height: 100%; }
.catalog-cover { background: #e7ecef; border-bottom: 1px solid var(--line); }
.catalog-cover img { width: 100%; aspect-ratio: 4/3; object-fit: contain; padding: 10px; }
.catalog-copy { padding: 13px; display: grid; grid-template-rows: auto 1fr auto; gap: 12px; }
.catalog-copy h2 {
  min-height: 2.5em;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}
.catalog-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}
.catalog-meta { font-size: .82rem; font-weight: 800; color: var(--gold) !important; }
.catalog-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 2px; align-self: end; }
.catalog-actions .btn { justify-content: center; padding: 0 8px; font-size: .78rem; }
.subcategory-row { padding: 0 clamp(16px, 5vw, 72px) 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.subcategory-row a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.15;
}
.subcategory-row a.active {
  background: #eaf3ee;
  border-color: #9ec9af;
  color: var(--green);
}
.tool-panel { margin: 0 clamp(16px, 5vw, 72px); padding: 18px; }
progress { width: 100%; height: 18px; margin: 14px 0; }
pre { white-space: pre-wrap; background: #101820; color: #e6f2ff; padding: 12px; border-radius: 8px; min-height: 46px; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.site-footer { display: flex; justify-content: space-between; gap: 12px; padding: 22px clamp(16px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); }
.footer-social { display: flex; gap: 8px; align-items: center; }
.footer-social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-social a:hover { border-color: var(--green); background: #edf3ee; }
.company-v3-hero {
  min-height: min(680px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(12,26,20,.86), rgba(12,26,20,.48) 48%, rgba(12,26,20,.16)),
    url("/legacy/css/web/img/emp_1.jpg") center/cover no-repeat;
  color: #fff;
}
.company-v3-hero-inner { width: min(100%, 980px); }
.company-v3-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 1;
}
.company-v3-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 28px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.55;
}
.company-v3-section {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
}
.company-v3-section h2,
.company-v3-quality h2,
.company-v3-cta h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  line-height: 1.08;
}
.company-v3-section p,
.company-v3-quality p,
.company-v3-cta p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}
.company-v3-intro,
.company-v3-quality-layout {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.company-v3-intro figure,
.company-v3-responsible figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e7ecef;
}
.company-v3-intro img,
.company-v3-responsible img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.company-v3-band,
.company-v3-quality {
  background: #edf3ee;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.company-v3-metrics {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 26px clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.company-v3-metrics article {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid #cfe0d5;
  border-radius: 8px;
}
.company-v3-metrics strong { color: var(--green); font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.2; }
.company-v3-section-head { max-width: 860px; margin-bottom: 24px; }
.company-v3-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.company-v3-service-grid article {
  min-height: 250px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.company-v3-service-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #edf3ee;
  color: var(--green);
  font-weight: 900;
}
.company-v3-service-grid h3 { margin: 0 0 10px; font-size: 1.16rem; }
.company-v3-service-grid p { margin: 0; }
.company-v3-quality .company-v3-section { padding-top: clamp(42px, 5vw, 64px); padding-bottom: clamp(42px, 5vw, 64px); }
.company-v3-seals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.company-v3-seals img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 20px;
  background: #fff;
  border: 1px solid #cfe0d5;
  border-radius: 8px;
}
.company-v3-responsible {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: max(clamp(18px, 5vw, 72px), calc((100vw - 1300px) / 2));
  padding-right: max(clamp(18px, 5vw, 72px), calc((100vw - 1300px) / 2));
  background: #fff;
}
.company-v3-responsible > div { max-width: 820px; }
.company-v3-area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.company-v3-area-card {
  min-height: 250px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.company-v3-area-card:hover {
  transform: translateY(-3px);
  border-color: #b8d8c5;
  box-shadow: 0 14px 30px rgba(25,32,38,.08);
}
.company-v3-area-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #e7ecef;
}
.company-v3-area-card-contain img {
  object-fit: contain;
  padding: 24px;
}
.company-v3-area-card strong {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.2;
}
.company-v3-cta {
  width: min(calc(100% - 36px), 1300px);
  margin: 0 auto clamp(44px, 6vw, 80px);
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #173f2b;
  color: #fff;
  border-radius: 8px;
}
.company-v3-cta p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.86); }
.info-hero {
  padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.info-hero h1, .contact-copy h1 { margin: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.05; }
.info-hero p, .contact-copy p { color: var(--muted); line-height: 1.6; }
.info-hero img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; }
.services-hero {
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #17231d;
}
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(13,23,18,.84) 0%, rgba(13,23,18,.52) 42%, rgba(13,23,18,.16) 100%);
}
.services-hero-copy {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) clamp(16px, 5vw, 72px) clamp(52px, 7vw, 84px);
}
.services-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: .96;
  letter-spacing: 0;
}
.services-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
}
.services-hero .btn { background: rgba(255,255,255,.96); color: #17231d; border-color: rgba(255,255,255,.96); }
.services-hero .btn.primary { background: var(--green); color: #fff; border-color: var(--green); }
.services-hero-images { position: absolute; inset: 0; z-index: -2; }
.services-hero-images img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-process {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) clamp(16px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-process div {
  min-height: 132px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.service-process span { display: block; margin-bottom: 16px; color: var(--gold); font-weight: 900; font-size: .82rem; }
.service-process strong { display: block; margin-bottom: 8px; color: var(--green); font-size: 1.05rem; }
.service-process p { margin: 0; color: var(--muted); line-height: 1.45; }
.service-showcase {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
  padding: clamp(28px, 4vw, 56px) clamp(16px, 5vw, 72px);
}
.service-showcase article {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3.5vw, 46px);
  align-items: center;
}
.service-showcase article:nth-child(even) div { order: 2; }
.service-showcase article:nth-child(even) img { order: 1; }
.service-showcase h2,
.service-depth h2,
.contact-cta h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}
.service-showcase p:not(.eyebrow),
.service-depth p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.service-showcase a:not(.btn) { display: inline-flex; margin-top: 8px; color: var(--green); font-weight: 850; }
.service-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(25,32,38,.12);
}
.service-depth {
  padding: clamp(42px, 5vw, 70px) clamp(16px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #eef3f0;
}
.service-depth article {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.service-depth img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-depth article > div { padding: clamp(18px, 3vw, 30px); }
.contact-cta {
  margin: 0;
  padding: clamp(40px, 6vw, 76px) clamp(16px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #123b2a;
  color: #fff;
}
.contact-cta > div { max-width: 760px; }
.contact-cta p { color: rgba(255,255,255,.82); }
.contact-cta .btn.primary { background: #fff; color: #123b2a; border-color: #fff; }
.split-section, .service-grid, .contact-layout {
  padding: clamp(28px, 5vw, 64px) clamp(16px, 5vw, 72px);
  display: grid;
  gap: 16px;
}
.split-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split-section article, .service-grid article, .contact-card, .contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.split-section h2, .service-grid h2 { margin-top: 0; }
.seal-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 18px; }
.seal-row img { max-height: 58px; width: auto; }
.certificate-section { padding-top: 0; }
.certificate-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.certificate-card img { max-width: 140px; }
.certificate-card h2 { margin: 0 0 8px; }
.certificate-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.renewable-section { padding-top: 0; }
.renewable-card {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.renewable-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 6px; background: #e7ecef; }
.renewable-card h2 { margin: 0 0 8px; }
.renewable-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.service-grid article { overflow: hidden; padding: 0; }
.service-grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #e7ecef; }
.service-grid h2, .service-grid p { margin-left: 18px; margin-right: 18px; }
.service-grid h2 { margin-top: 18px; }
.service-grid p { margin-bottom: 20px; }
.service-grid p, .split-section p { color: var(--muted); line-height: 1.65; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #27323b;
  font-weight: 800;
}
.social-links span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: .74rem;
  text-transform: uppercase;
}
.contact-layout { grid-template-columns: minmax(280px, 460px) 1fr; align-items: start; }
.contact-card { margin-top: 20px; }
.contact-form { display: grid; gap: 14px; }
.contact-form.compact { padding: 0; border: 0; }
.contact-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 760; }
.contact-form textarea { min-height: 170px; padding: 12px; border: 1px solid var(--line); border-radius: 7px; font: inherit; resize: vertical; }
.check-line { display: flex !important; grid-template-columns: none; align-items: center; gap: 10px; }
.check-line input { min-height: auto; width: 18px; height: 18px; }
.hp-field { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin: 0; padding: 12px; border-radius: 8px; font-weight: 760; }
.form-message.success { background: #e9f6ef; color: var(--green); }
.form-message.error { background: #fff0f0; color: #9a2c2c; }
.map-strip { padding: 0 clamp(16px, 5vw, 72px) clamp(32px, 5vw, 64px); }
.map-strip iframe { border-radius: 8px; border: 1px solid var(--line) !important; }
.admin-body { background: #f3f5f7; }
.admin-topbar {
  min-height: 70px;
  padding: 12px clamp(16px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.admin-brand strong, .admin-brand span { display: block; }
.admin-brand strong { color: var(--green); font-size: 1.25rem; text-transform: uppercase; }
.admin-brand span { color: var(--muted); font-size: .85rem; }
.admin-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.admin-nav a, .admin-link-button { min-height: 36px; padding: 8px 10px; border: 1px solid transparent; border-radius: 6px; background: transparent; color: #27323b; font-weight: 760; }
.admin-nav a.active { background: #edf3ee; border-color: #cfe0d5; color: var(--green); }
.admin-page { padding: clamp(22px, 4vw, 44px); }
.admin-head { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 20px; }
.admin-head h1 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.6rem); }
.admin-head p { margin: 6px 0 0; color: var(--muted); }
.admin-login {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
}
.admin-login-card {
  width: min(100%, 430px);
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(25,32,38,.11);
}
.admin-login-logo { width: 180px; height: 64px; object-fit: contain; margin: 0 auto 18px; }
.admin-login-card h1 { margin: 0 0 22px; text-align: center; font-size: 1.45rem; }
.admin-form { display: grid; gap: 16px; }
.admin-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 760; }
.admin-form input, .admin-form select, .admin-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 7px; font: inherit; }
.admin-form textarea { min-height: 160px; padding: 12px; }
.password-line { position: relative; }
.password-line button { position: absolute; right: 6px; bottom: 6px; min-height: 32px; padding: 0 10px; font-size: .82rem; }
.admin-messages, .admin-stats, .admin-quick, .admin-columns, .admin-search, .admin-list { margin-bottom: 18px; }
.admin-message { padding: 12px; border-radius: 8px; background: #e9f6ef; color: var(--green); font-weight: 760; }
.admin-stats, .admin-quick { display: flex; flex-wrap: wrap; gap: 12px; }
.admin-stats a { min-width: 160px; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.admin-stats strong, .admin-stats span { display: block; }
.admin-stats strong { color: var(--green); font-size: 1.8rem; }
.admin-search { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-search input, .admin-search select { min-width: 0; max-width: 100%; }
.admin-loading, .admin-inline-error {
  align-self: center;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 760;
}
.admin-inline-error { color: #9a2c2c; }
.admin-search.is-loading input, .admin-search.is-loading select { opacity: .72; }
.admin-row {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
}
.admin-row--product { grid-template-columns: 20px 76px minmax(0, 1fr) auto; }
.admin-row--standard, .admin-row--duplicate { grid-template-columns: 76px minmax(0, 1fr) auto; }
.admin-row--user { grid-template-columns: 48px minmax(180px, 1fr) minmax(260px, .85fr) auto; }
.admin-thumb {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f8f9;
  border: 1px solid #e4e8eb;
  border-radius: 6px;
  color: var(--green);
  font-weight: 850;
}
.admin-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}
.admin-row-main { min-width: 0; text-align: left; overflow-wrap: normal; word-break: normal; }
.admin-row-main h2 { margin: 4px 0; font-size: 1rem; line-height: 1.25; }
.admin-row-main p {
  margin: 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.admin-row-main small { display: block; margin-top: 7px; color: var(--muted); }
.admin-card-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-card-meta span, .status { padding: 3px 7px; border-radius: 999px; background: #edf3ee; color: var(--green); font-size: .72rem; font-weight: 850; }
.status.off { background: #f6eeee; color: #9a2c2c; }
.admin-row-actions { width: auto; justify-self: end; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.admin-row-actions form { margin: 0; }
.danger { background: #9a2c2c; border-color: #9a2c2c; color: #fff; }
.warn { background: #fff9ed; border-color: #ecd6ae; }
.admin-form-layout { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: 18px; align-items: start; }
.admin-form-layout aside, .admin-form-layout section { padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.admin-preview { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #f2f4f6; border-radius: 6px; margin-bottom: 12px; }
.admin-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: grid; gap: 14px; }
.admin-form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.admin-shell { display: block; }
.admin-menu-button { display: none; }
.admin-panel {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 18px;
}
.admin-panel h2 { margin-top: 0; font-size: 1.05rem; }
.admin-stats.compact { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.admin-stats.compact a { min-width: 0; }
.admin-quality {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.quality-score, .quality-grid a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.quality-score { display: grid; align-content: center; gap: 8px; }
.quality-score strong { color: var(--green); font-size: 2.8rem; line-height: 1; }
.quality-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.quality-grid strong, .quality-grid span { display: block; }
.quality-grid strong { color: var(--green); font-size: 1.45rem; }
.admin-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.admin-mini-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-top: 1px solid var(--line);
}
.admin-mini-row.no-thumb { grid-template-columns: 1fr auto; }
.admin-mini-row span, .admin-mini-row small, .admin-mini-row strong { display: block; }
.admin-mini-row small { color: var(--muted); }
.mini-thumb {
  width: 64px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #f3f5f7;
  border-radius: 6px;
  overflow: hidden;
  color: var(--green);
  font-weight: 850;
}
.mini-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.admin-bulkbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
}
.admin-bulkbar select { min-width: 0; max-width: 100%; flex: 1 1 220px; }
.admin-indicators { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.admin-indicators span {
  padding: 2px 6px;
  border-radius: 999px;
  background: #f3f5f7;
  color: #394650;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 760;
  white-space: nowrap;
}
.admin-indicators .status-pending {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.admin-indicators .status-complete {
  background: #ecfdf5;
  color: #166534;
  border-color: #bbf7d0;
}
.admin-indicators .status-unavailable {
  background: #f3f4f6;
  color: #4b5563;
  border-color: #d1d5db;
}
.admin-indicators .status-review {
  background: #fffbeb;
  color: #92400e;
  border-color: #fde68a;
}
.admin-indicators .status-quality-perfect {
  background: #dcfce7;
  color: #14532d;
  border-color: #86efac;
}
.admin-indicators .status-quality-high {
  background: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}
.admin-indicators .status-quality-medium {
  background: #fff7ed;
  color: #9a3412;
  border-color: #fed7aa;
}
.admin-indicators .status-quality-low {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.admin-note, .admin-warning {
  padding: 10px 12px;
  border-radius: 8px;
  background: #f5f8f5;
  color: #394650;
}
.admin-warning { background: #fff4e1; }
.duplicate-tools {
  width: min(100%, 1280px);
  margin: 0 auto 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.duplicate-tools .admin-note { flex: 1 1 360px; margin: 0; }
.duplicate-panel { width: min(100%, 1280px); margin-left: auto; margin-right: auto; }
.duplicate-group {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.duplicate-group summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: #f7f9f8;
  border-bottom: 1px solid var(--line);
}
.duplicate-group summary strong { color: var(--green); }
.duplicate-group summary span { color: var(--muted); font-weight: 760; }
.duplicate-group .admin-row {
  min-height: 104px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.duplicate-group .admin-note { margin: 12px; }
.admin-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf3ee;
  color: var(--green);
  font-weight: 900;
}
.admin-user-meta {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(90px, .8fr) minmax(100px, .7fr) minmax(150px, 1fr);
  gap: 8px;
  color: var(--muted);
  font-size: .86rem;
}
.admin-user-meta span { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.translation-grid, .doc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.admin-form-actions.sticky {
  position: sticky;
  bottom: 0;
  z-index: 5;
  padding: 12px;
  background: rgba(243,245,247,.96);
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) {
  .site-header, .section-head, .site-footer { align-items: flex-start; flex-direction: column; }
  .hero, .detail-layout, .info-hero, .split-section, .contact-layout, .company-v3-intro, .company-v3-quality-layout { grid-template-columns: 1fr; }
  .hero { min-height: 620px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .company-v3-hero { min-height: 580px; }
  .company-v3-metrics, .company-v3-service-grid, .company-v3-area-grid, .company-v3-seals { grid-template-columns: 1fr; }
  .company-v3-cta { align-items: flex-start; flex-direction: column; }
  .brand { min-width: 0; }
  .main-nav a { font-size: .88rem; }
  .language-switch { margin-left: 0; }
  .header-search { width: 100%; flex-basis: auto; order: 4; }
  .certificate-card { grid-template-columns: 1fr; }
  .renewable-card { grid-template-columns: 1fr; }
  .admin-topbar, .admin-head { align-items: flex-start; flex-direction: column; }
  .admin-menu-button { display: inline-flex; }
  .admin-nav { display: none; width: 100%; }
  .admin-menu-open .admin-nav { display: flex; }
  .admin-row--product { grid-template-columns: 20px 76px minmax(0, 1fr); align-items: start; }
  .admin-row--standard, .admin-row--duplicate { grid-template-columns: 76px minmax(0, 1fr); align-items: start; }
  .admin-row--user { grid-template-columns: 48px minmax(0, 1fr); align-items: start; }
  .admin-form-layout, .admin-quality, .admin-columns, .translation-grid, .doc-grid { grid-template-columns: 1fr; }
  .admin-row--product .admin-row-actions, .admin-row--standard .admin-row-actions, .admin-row--duplicate .admin-row-actions, .admin-row--user .admin-row-actions, .admin-user-meta { grid-column: 1 / -1; }
  .admin-row-actions { justify-self: start; justify-content: flex-start; }
  .admin-user-meta { grid-template-columns: 1fr; }
  .admin-page { padding-inline: 14px; }
  .admin-indicators { gap: 3px; }
  .admin-indicators span { padding: 2px 5px; font-size: .68rem; }
  .admin-row--product .admin-row-main p { -webkit-line-clamp: 1; }
  .duplicate-tools { justify-content: flex-start; }
  .duplicate-tools .admin-note { flex-basis: 100%; }
  .services-hero { min-height: 540px; }
  .services-hero-copy { padding-top: 76px; padding-bottom: 42px; }
  .service-process,
  .service-showcase article,
  .service-depth {
    grid-template-columns: 1fr;
  }
  .service-process { gap: 10px; }
  .service-showcase article:nth-child(even) div,
  .service-showcase article:nth-child(even) img { order: initial; }
  .service-showcase img { aspect-ratio: 16 / 10; }
  .contact-cta { align-items: flex-start; flex-direction: column; }
}
@media (min-width: 821px) and (max-width: 1180px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-v3-metrics, .company-v3-service-grid, .company-v3-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
