:root {
  --ink: #171a18;
  --muted: #65706b;
  --line: #e0e4de;
  --paper: #f5f2eb;
  --surface: #ffffff;
  --surface-warm: #fbfaf6;
  --green: #205b49;
  --green-dark: #0e1915;
  --gold: #bd8a42;
  --blue: #315d78;
  --shadow: 0 22px 58px rgba(18, 24, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(220, 229, 224, 0.9);
  background: rgba(245, 242, 235, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0e1915, #315d78);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

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

.brand small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.nav-links {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--surface);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  border-radius: 7px;
  padding: 12px;
  color: #34423d;
  font-weight: 700;
}

.nav-links a:hover {
  background: #ede9df;
  color: var(--green);
}

.header-cta,
.primary-button,
.secondary-button,
.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  display: none;
}

.header-email {
  display: none;
}

.header-contact {
  display: none;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 470px;
}

.header-contact > a:first-child {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.primary-button,
.header-cta {
  background: var(--green);
  color: #fff;
}

.header-cta-secondary {
  background: #314238;
}

.header-email {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--surface);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.quote-button {
  width: 100%;
  background: var(--green-dark);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #121b18;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 16, 0.92), rgba(12, 18, 16, 0.56)),
    url("./assets/ig_0a25bb0973125fe1016a2fb64b2c088191a40b6740be56e036.png");
  background-color: #121b18;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
}

.hero-content {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 64px 16px 36px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.02;
}

h2 {
  margin-bottom: 14px;
  font-size: 31px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-content > p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(640px, 100%);
  margin: 34px 0 0;
}

.hero-stats div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 12px;
  margin: -88px 16px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(14, 25, 21, 0.86);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 20px;
  line-height: 1.25;
}

.hero-panel a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

.trust-strip span {
  padding: 16px;
  background: var(--surface);
  color: #394640;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.language-strip {
  display: grid;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-warm);
}

.language-strip div {
  display: grid;
  gap: 3px;
}

.language-strip span,
.language-strip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.language-strip span {
  color: var(--gold);
  text-transform: uppercase;
}

.language-strip strong {
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.2;
}

.language-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.language-strip a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--surface);
  color: #33433d;
  font-size: 12px;
  font-weight: 900;
}

.section {
  padding: 58px 16px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-heading p,
.ru-line,
.inquiry-copy p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.ru-line {
  margin-top: -4px;
}

.split {
  display: grid;
  gap: 16px;
  max-width: none;
}

.capability-grid,
.project-grid,
.proof-grid,
.product-grid {
  display: grid;
  gap: 14px;
}

.capability-grid article,
.project-grid article,
.product-card,
.inquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(20, 31, 27, 0.05);
}

.capability-grid article,
.project-grid article {
  padding: 20px;
}

.intro {
  padding-top: 12px;
  padding-bottom: 8px;
}

.intro .section-heading {
  margin-bottom: 8px;
}

.intro .section-heading p:not(.eyebrow) {
  max-width: 760px;
}

.intro .capability-grid {
  gap: 7px;
}

.intro .capability-grid article {
  padding: 8px 10px;
}

.capability-grid strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.capability-grid span,
.project-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.products-section {
  background:
    linear-gradient(180deg, #f5f2eb 0%, #ebe8df 100%);
}

.export-focus {
  background: var(--surface-warm);
}

.export-layout {
  display: grid;
  gap: 24px;
}

.export-visual {
  min-height: 380px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 25, 21, 0.04), rgba(14, 25, 21, 0.2)),
    url("./assets/ig_0a25bb0973125fe1016a2fb675c0a0819181d3352e8bc01120.png");
  background-color: #f5f1e7;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain;
  box-shadow: var(--shadow);
}

.export-copy {
  display: grid;
  align-content: center;
}

.export-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.export-lines {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.export-lines article,
.proof-grid article,
.toolkit-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--surface);
}

.export-lines span,
.proof-grid span,
.toolkit-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.export-lines strong,
.proof-grid strong,
.toolkit-grid strong {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.32;
}

.export-lines p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-grid {
  margin-top: 16px;
}

.proof-grid article,
.toolkit-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.buyer-kit {
  background:
    linear-gradient(180deg, #f5f2eb 0%, #efe8dc 100%);
  padding-top: 8px;
  padding-bottom: 6px;
}

.buyer-kit .section-heading,
.currency-section .section-heading {
  margin-bottom: 7px;
}

.buyer-kit h2,
.currency-section h2 {
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 1.12;
}

.buyer-kit .section-heading p,
.currency-section .section-heading p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.25;
}

.toolkit-grid {
  display: grid;
  gap: 7px;
}

.currency-section {
  background: #ece7dc;
  padding-top: 7px;
  padding-bottom: 8px;
}

.currency-panel {
  display: grid;
  gap: 7px;
}

.rate-card,
.currency-input {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 9px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 31, 27, 0.06);
}

.rate-card span,
.currency-input {
  color: #33433d;
  font-size: 11px;
  font-weight: 900;
}

.rate-card strong {
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.1;
}

.rate-card small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.rate-card.result {
  background: var(--green-dark);
}

.rate-card.result span,
.rate-card.result strong,
.rate-card.result small {
  color: #fff;
}

.currency-input input {
  width: 100%;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface-warm);
  color: var(--ink);
}

.currency-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.currency-note a {
  color: var(--ink);
  font-weight: 800;
}

.feature-systems {
  background: var(--surface);
}

.system-grid {
  display: grid;
  gap: 14px;
}

.system-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-warm);
  box-shadow: 0 12px 30px rgba(20, 31, 27, 0.07);
}

.system-card > div:last-child {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 16px;
}

.system-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.system-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.system-image {
  min-height: 190px;
  background-color: #f4f0e7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.system-image.mattress {
  background-image:
    linear-gradient(0deg, rgba(16, 24, 22, 0.04), rgba(16, 24, 22, 0.04)),
    url("./assets/ig_0a25bb0973125fe1016a2fb675c0a0819181d3352e8bc01120.png");
  background-size: cover, contain;
  background-repeat: no-repeat, no-repeat;
}

.system-image.sofa {
  background-image: url("./assets/ig_0a25bb0973125fe1016a2fb6f0b1888191b09d8604f5918d7f.png");
}

.system-image.project {
  background-image: url("./assets/ig_0a25bb0973125fe1016a2fb6126d408191ae3168bd2d4b0c40.png");
}

.system-image.commercial {
  background-image: url("./assets/ig_0a25bb0973125fe1016a2fb6aead608191a89b8e2ae59032de.png");
}

.spaces {
  background: var(--green-dark);
  color: #fff;
  padding-top: 28px;
  padding-bottom: 28px;
}

.spaces .section-heading {
  margin-bottom: 12px;
}

.spaces .section-heading p,
.spaces .ru-line {
  color: rgba(255, 255, 255, 0.72);
}

.space-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.space-grid article {
  display: grid;
  gap: 6px;
  min-height: 86px;
  align-content: end;
  padding: 14px;
  background: #14221e;
}

.space-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.space-grid strong {
  font-size: 15px;
  line-height: 1.22;
}

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-bar button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  cursor: pointer;
  color: #35443e;
  font-weight: 800;
  white-space: nowrap;
}

.catalog-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.catalog-link,
.load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 0 16px;
  background: var(--surface);
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
}

.catalog-actions span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-search {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #33433d;
  font-size: 14px;
  font-weight: 900;
}

.product-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--ink);
}

.filter-bar button.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.product-card {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 91, 73, 0.32);
  box-shadow: var(--shadow);
}

.product-image-wrap {
  display: grid;
  place-items: center;
  height: 240px;
  overflow: visible;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(32, 91, 73, 0.08), rgba(189, 138, 66, 0.08)),
    #e8e5dc;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-card-body {
  display: grid;
  gap: 7px;
  padding: 11px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.product-summary {
  color: var(--muted);
  font-size: 14px;
}

.product-category {
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.product-topline span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--surface-warm);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.product-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card dd {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 2px 0 0;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.price-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 7px;
  background: var(--surface-warm);
  color: var(--green-dark);
  font-size: 13px;
  line-height: 1.24;
}

.price-line b {
  display: inline-grid;
  min-height: 22px;
  place-items: center;
  border-radius: 6px;
  background: #e9efe9;
  color: var(--green);
  font-size: 10px;
}

.cny-price {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.cny-price b {
  background: #eef1ed;
  color: #6c756b;
}

.kzt-price {
  border-color: rgba(189, 138, 66, 0.38);
  background: #fff9ed;
  color: #111c17;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
}

.kzt-price b {
  background: rgba(189, 138, 66, 0.16);
  color: #8b6125;
  font-size: 11px;
  font-weight: 950;
}

.converted-price {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.variant-picker {
  display: grid;
  gap: 7px;
  color: #394640;
  font-size: 13px;
  font-weight: 900;
}

.variant-picker select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  background: var(--surface-warm);
  color: var(--ink);
  cursor: pointer;
}

.load-more-button {
  width: 100%;
  margin-top: 20px;
}

.load-more-button[hidden] {
  display: none;
}

.project-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #eef3f0;
  color: var(--green);
  font-weight: 900;
}

.process {
  background: var(--surface);
}

.market-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 14px;
  align-items: center;
}

.market-links span,
.market-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--surface);
  color: #34423d;
  font-size: 12px;
  font-weight: 900;
}

.market-links span {
  border-color: transparent;
  background: transparent;
  color: var(--gold);
  text-transform: uppercase;
}

.landing-page {
  background: var(--surface-warm);
}

.landing-nav {
  display: flex;
  flex-direction: row;
  border: 0;
  padding: 0;
  background: transparent;
}

.landing-hero,
.landing-grid,
.landing-keywords {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-hero {
  padding: 74px 0 32px;
}

.landing-hero h1 {
  max-width: 820px;
  color: var(--green-dark);
  font-size: 44px;
}

.landing-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.secondary-button.light {
  border-color: var(--line);
  color: var(--green-dark);
}

.landing-grid {
  display: grid;
  gap: 12px;
  padding: 0 0 28px;
}

.landing-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(20, 31, 27, 0.05);
}

.landing-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-grid p,
.landing-grid li {
  color: var(--muted);
  line-height: 1.55;
}

.landing-grid ul {
  margin: 0;
  padding-left: 18px;
}

.landing-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 58px;
}

.landing-keywords span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #ede9df;
  color: #34423d;
  font-size: 12px;
  font-weight: 800;
}

.process-grid {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  gap: 11px;
  min-height: 210px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface-warm);
}

.process-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.process-grid strong {
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inquiry-section {
  display: grid;
  gap: 24px;
  background: var(--green-dark);
  color: #fff;
}

.inquiry-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  color: var(--ink);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: #33433d;
  font-size: 14px;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
}

.inquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact {
  display: grid;
  gap: 20px;
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

address a,
address span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface);
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 16px;
  background: #20b35a;
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px 16px;
  background: #101816;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

@media (min-width: 640px) {
  h1 {
    font-size: 56px;
  }

  .hero-stats,
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-grid,
  .project-grid,
  .proof-grid,
  .system-grid,
  .space-grid,
  .toolkit-grid,
  .process-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 48px;
  }

  .menu-button {
    display: none;
  }

  .nav-links {
    grid-column: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .header-cta {
    display: inline-flex;
  }

  .header-email {
    display: inline-flex;
  }

  .header-contact {
    display: flex;
  }

  .hero {
    min-height: calc(100vh - 73px);
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(12, 18, 16, 0.92), rgba(12, 18, 16, 0.38)),
      url("./assets/ig_0a25bb0973125fe1016a2fb64b2c088191a40b6740be56e036.png");
    background-color: #121b18;
    background-position: center, right center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, min(62vw, 900px) auto;
  }

  .hero-content {
    min-height: calc(100vh - 73px);
    padding: 92px 64px 56px;
  }

  .hero-panel {
    position: absolute;
    right: 64px;
    bottom: 48px;
    width: 360px;
    margin: 0;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 43px;
  }

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

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

  .language-strip {
    grid-template-columns: minmax(320px, 0.58fr) 1fr;
    align-items: center;
    padding: 10px 64px;
  }

  .language-strip nav {
    justify-content: flex-end;
  }

  .section {
    padding: 82px 64px;
  }

  .spaces {
    padding: 52px 64px;
  }

  .spaces .section-heading {
    margin-bottom: 20px;
  }

  .spaces h2 {
    font-size: 36px;
  }

  .spaces .space-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .space-grid article {
    min-height: 126px;
    padding: 18px;
  }

  .intro {
    padding: 24px 64px 18px;
  }

  .intro .section-heading {
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) 1fr;
    gap: 16px;
    align-items: end;
    max-width: none;
    margin-bottom: 6px;
  }

  .intro h2 {
    margin-bottom: 0;
    font-size: 20px;
  }

  .intro .capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .intro .capability-grid article {
    padding: 7px 9px;
  }

  .intro .capability-grid strong {
    font-size: 13px;
  }

  .buyer-kit {
    padding: 7px 64px 5px;
  }

  .currency-section {
    padding: 6px 64px 8px;
  }

  .buyer-kit .section-heading,
  .currency-section .section-heading {
    grid-template-columns: minmax(240px, 0.42fr) 1fr;
    gap: 14px;
    align-items: end;
    margin-bottom: 5px;
  }

  .buyer-kit h2,
  .currency-section h2 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .toolkit-grid article {
    min-height: 0;
    padding: 6px 9px;
  }

  .toolkit-grid strong {
    font-size: 12px;
  }

  .split,
  .inquiry-section,
  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .capability-grid,
  .proof-grid,
  .system-grid,
  .space-grid,
  .toolkit-grid,
  .process-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .export-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }

  .export-visual {
    min-height: 620px;
  }

  .export-copy {
    padding: 28px 0 28px 22px;
  }

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

  .system-card.large {
    grid-row: auto;
  }

  .catalog-actions {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .currency-panel {
    grid-template-columns: 0.92fr 0.78fr 1.05fr 0.86fr;
    align-items: stretch;
  }

  .currency-panel .rate-card,
  .currency-panel .currency-input {
    min-height: 48px;
  }

  .catalog-actions span {
    text-align: right;
  }

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

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

  .inquiry-form {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 28px 64px;
  }

  .landing-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .landing-hero h1 {
    font-size: 56px;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (min-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .product-image-wrap {
    height: 230px;
  }

  .product-card-body {
    gap: 7px;
    padding: 10px;
  }

  .product-card h3 {
    margin-bottom: 0;
    font-size: 18px;
  }

  .variant-picker select {
    min-height: 38px;
  }

  .quote-button {
    min-height: 40px;
  }

  .product-card dd {
    grid-template-columns: 1fr 1fr;
  }

  .converted-price {
    grid-column: 1 / -1;
  }
}
