:root {
  --green-900: #063f32;
  --green-800: #07523e;
  --green-700: #0b6b51;
  --green-600: #108566;
  --green-100: #e9f5ef;
  --blue-700: #0b5b8f;
  --ink: #172321;
  --muted: #586965;
  --line: #d7e4df;
  --soft: #f5faf7;
  --white: #ffffff;
  --amber: #d9972f;
  --shadow: 0 18px 42px rgba(6, 63, 50, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.router-root {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--soft);
}

.router-root__panel {
  width: min(420px, calc(100% - 32px));
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.router-root__panel img {
  width: 220px;
  margin: 0 auto 20px;
}

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

.topbar {
  background: var(--green-800);
  color: #fff;
  font-size: 14px;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.site-header .wrap {
  width: min(1760px, calc(100% - 28px));
}

.logo {
  display: block;
  flex: 0 0 160px;
  min-width: 0;
}

.logo img {
  width: 160px;
  max-width: none;
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(7px, .7vw, 13px);
  min-width: 0;
  font-size: clamp(12px, .72vw, 14px);
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  color: #22302e;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active { color: var(--green-700); }

.nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 8px;
  border: 1px solid var(--green-700);
  color: var(--green-800);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow-wrap: anywhere;
  word-break: normal;
}

.nav__cta {
  flex: 0 0 auto;
}

.nav__cta,
.button--primary {
  background: var(--green-600);
  color: #fff !important;
  border-color: var(--green-600);
}

.button--light {
  background: #fff;
  color: var(--green-800) !important;
  border-color: #fff;
}

.nav-toggle { display: none; }

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}

.burger span {
  width: 20px;
  height: 2px;
  background: var(--green-800);
  border-radius: 999px;
}

.social-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.social-links a {
  color: var(--green-800);
  text-decoration: none;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-icon:hover {
  transform: translateY(-1px);
  border-color: var(--green-600);
  background: var(--green-100);
}

.social-icon--disabled,
.social-icon[aria-disabled="true"] {
  opacity: .62;
  cursor: default;
}

.social-links--nav {
  display: inline-flex;
  flex-wrap: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--muted);
  font-size: clamp(11px, .68vw, 13px);
  white-space: nowrap;
}

.language-switcher a b {
  font-weight: 900;
}

.language-switcher a.active {
  color: #fff;
  background: var(--green-700);
}

.hero {
  min-height: 690px;
  position: relative;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: var(--green-900);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,63,50,.96) 0%, rgba(6,63,50,.75) 42%, rgba(6,63,50,.12) 80%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 96px 0 64px;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p,
.page-hero p {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255,255,255,.9);
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  min-width: 0;
  margin: 28px 0;
}

.actions a {
  min-width: 0;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255,255,255,.32);
  max-width: 860px;
  margin-top: 52px;
  background: rgba(6, 63, 50, .48);
}

.hero__stats div {
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.hero__stats div:last-child { border-right: 0; }
.hero__stats strong { display: block; font-size: 28px; line-height: 1.1; }
.hero__stats span { color: rgba(255,255,255,.82); }

.eyebrow {
  display: inline-block;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

.section--soft { background: var(--soft); }
.section--dark { background: var(--green-900); color: #fff; }
.section--dark .eyebrow { color: #9fe6ca; }
.section--dark p { color: rgba(255,255,255,.84); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  min-width: 0;
}

.split > * {
  min-width: 0;
}

h2 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--green-800);
  overflow-wrap: anywhere;
}

.section--dark h2 { color: #fff; }
h3 { margin: 0 0 10px; color: var(--green-800); line-height: 1.18; overflow-wrap: anywhere; }
p { margin: 0 0 18px; }

.trust-grid,
.cards-4,
.article-grid,
.project-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid div,
.cards-4 article,
.article-grid article,
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(6,63,50,.05);
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid div {
  min-height: 160px;
}

.trust-grid strong,
.cards-4 strong,
.article-grid h3,
.card strong {
  display: block;
  color: var(--green-800);
  font-size: 20px;
}

.trust-grid span,
.cards-4 span,
.article-grid p,
.card span {
  color: var(--muted);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.6vw, 48px);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.product-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.product-detail,
.visual-card,
.form-panel,
.project-card,
.portal-shell {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__image {
  height: 270px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--muted);
  font-weight: 900;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.product-card__image img {
  width: min(88%, 360px);
  height: calc(100% - 36px);
  object-fit: contain;
  padding: 0;
}

.product-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  background: #fff;
}

.product-card__body p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.product-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.product-card .text-link {
  margin-top: auto;
}

.product-card__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

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

.project-card p {
  color: var(--muted);
}

.form-panel--light {
  color: var(--ink);
}

.spec-mini {
  margin: 18px 0;
}

.spec-mini div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

dt { font-weight: 900; color: var(--green-800); }
dd { margin: 0; color: var(--muted); overflow-wrap: anywhere; }

.text-link {
  color: var(--green-700);
  font-weight: 900;
}

.visual-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.comparison,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.comparison th,
.comparison td,
.spec-table th,
.spec-table td {
  padding: 17px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison th,
.spec-table th {
  width: 34%;
  color: var(--green-800);
  background: #f8fbf9;
}

.price-demo {
  min-height: 330px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-demo div {
  flex: 1;
  background: linear-gradient(180deg, var(--green-600), var(--blue-700));
  border-radius: 7px 7px 0 0;
}

.price-demo .bar-25 { height: 25%; }
.price-demo .bar-30 { height: 30%; }
.price-demo .bar-35 { height: 35%; }
.price-demo .bar-45 { height: 45%; }
.price-demo .bar-62 { height: 62%; }
.price-demo .bar-78 { height: 78%; }
.price-demo .bar-88 { height: 88%; }

.note {
  padding: 14px 16px;
  background: #fff7e8;
  border-left: 4px solid var(--amber);
  color: #4b3720;
}

.page-hero {
  padding: 100px 0 70px;
  color: #fff;
  background: radial-gradient(circle at right top, rgba(16,133,102,.45), transparent 38%), var(--green-900);
}

.product-hero {
  padding: 86px 0 72px;
  color: #fff;
  background: radial-gradient(circle at 75% 15%, rgba(16,133,102,.58), transparent 36%), var(--green-900);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 46px;
  align-items: center;
}

.product-hero h1 {
  margin: 12px 0 18px;
  max-width: 820px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.product-hero p {
  max-width: 700px;
  font-size: 20px;
  color: rgba(255,255,255,.86);
  overflow-wrap: anywhere;
}

.product-hero__media {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-hero__media img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.badge-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.info-block {
  margin-bottom: 22px;
}

.info-block h2 {
  font-size: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.download-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.download-item strong,
.download-item span {
  display: block;
}

.download-item strong {
  color: var(--green-800);
  overflow-wrap: anywhere;
}

.download-item span,
.download-item em {
  color: var(--muted);
  font-style: normal;
}

.download-item .text-link {
  flex: 0 0 auto;
  white-space: normal;
  text-align: right;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.section--dark .related-products .product-card {
  color: var(--ink);
}

.page-hero .eyebrow { color: #9fe6ca; }

.product-list {
  display: grid;
  gap: 28px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
}

.product-detail__media {
  display: grid;
  place-items: center;
  min-height: 420px;
  background: var(--green-100);
  color: var(--muted);
  font-weight: 900;
  overflow: hidden;
}

.product-detail__media img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  padding: 28px;
}

.product-detail__content {
  padding: 30px;
  min-width: 0;
}

.product-detail__content h2 {
  font-size: clamp(30px, 3.2vw, 46px);
}

.tabs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.tabs-grid div {
  min-width: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.tabs-grid .download-list {
  margin: 12px 0 0;
}

.tabs-grid .download-item {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}

.tabs-grid .download-item .text-link {
  text-align: left;
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #523508;
  background: #fff1d4;
  font-weight: 900;
  font-size: 12px;
}

.faq {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

.form-panel {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-800);
  font-weight: 900;
}

input,
select,
textarea {
  max-width: 100%;
  min-width: 0;
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d8d3;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.social-icon:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(16, 133, 102, .22);
  outline-offset: 2px;
  border-color: var(--green-600);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #b5523a;
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--green-800);
  background: var(--green-100);
  font-weight: 900;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline div {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--amber);
  color: #fff;
  font-weight: 950;
  margin-bottom: 12px;
}

.portal-shell {
  padding: 24px;
}

.search-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.portal-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portal-actions a {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  background: var(--green-800);
  border-radius: 8px;
  text-decoration: none;
}

.portal-actions span { color: rgba(255,255,255,.78); }

.footer {
  padding: 34px 0;
  background: #071f1a;
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer strong,
.footer span,
.footer small {
  display: block;
}

.footer span,
.footer small {
  color: rgba(255,255,255,.72);
}

.footer .social-links .social-icon { color: #9fe6ca; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.footer .social-links { gap: 14px; }

@media (max-width: 1080px) {
  .burger { display: inline-flex; }
  .header__inner { flex-wrap: wrap; min-height: 64px; padding: 10px 0; }
  .logo { flex-basis: 160px; }
  .logo img { width: 160px; }
  .nav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 10px 0 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .nav a,
.social-links--nav,
.language-switcher {
    padding: 10px 0;
  }
  .social-links--nav {
    justify-content: flex-start;
  }
  .language-switcher {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border: 0;
  }
  .language-switcher a {
    justify-content: flex-start;
    padding: 10px 0;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .trust-grid,
  .cards-4,
  .article-grid,
  .product-grid,
  .product-grid--featured,
  .related-products,
  .project-grid,
  .timeline,
  .portal-actions,
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail,
  .product-hero__grid,
  .split { grid-template-columns: 1fr; }
  .tabs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .topbar { display: none; }
  .hero { min-height: 620px; }
  .hero__media::after { background: linear-gradient(180deg, rgba(6,63,50,.94), rgba(6,63,50,.62)); }
  .hero__content { padding: 62px 0 38px; }
  .hero h1,
  .page-hero h1 { font-size: 42px; }
  html[lang="da"] .hero h1,
  html[lang="sv"] .hero h1,
  html[lang="zh-Hans"] .hero h1,
  html[lang="da"] .page-hero h1,
  html[lang="sv"] .page-hero h1,
  html[lang="zh-Hans"] .page-hero h1 { font-size: 38px; }
  .hero p,
  .page-hero p { font-size: 17px; }
  .hero__stats,
  .trust-grid,
  .cards-4,
  .article-grid,
  .product-grid,
  .product-grid--featured,
  .related-products,
  .project-grid,
  .tabs-grid,
  .form-grid,
  .timeline,
  .portal-actions,
  .filters,
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .section { padding: 58px 0; }
  h2 { font-size: 34px; }
  .product-card__image { height: 180px; }
  .product-hero { padding: 58px 0 48px; }
  .product-hero h1 { font-size: 38px; }
  .product-hero p { font-size: 17px; }
  .product-hero__media { min-height: 260px; padding: 18px; }
  .product-hero .actions,
  .page-hero .actions,
  .hero .actions { align-items: stretch; }
  .product-hero .actions .button,
  .page-hero .actions .button,
  .hero .actions .button { flex: 1 1 100%; }
  .product-detail__media { min-height: 260px; }
  .product-detail__content,
  .form-panel { padding: 20px; }
  .download-item {
    align-items: flex-start;
    flex-direction: column;
  }
  .download-item .text-link {
    text-align: left;
  }
  .comparison th,
  .comparison td,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    overflow-wrap: anywhere;
  }
  .form-grid,
  .filters,
  .tabs-grid {
    min-width: 0;
  }
  .contact-form,
  .search-panel,
  .portal-shell,
  .form-panel,
  .visual-card,
  .product-detail,
  .product-card {
    min-width: 0;
  }
  .visual-card img { height: 280px; }
}
