/* AGS Bonlife storefront — base design system */
:root {
  --bg: #ffffff;
  --surface: #f4f6f9;
  --surface-2: #eef2f6;
  --ink: #14202e;
  --muted: #5c6b7c;
  --line: #e1e7ee;
  --brand: #123a5a;
  --brand-dark: #0e2c44;
  --brand-ink: #eaf2f8;
  --accent: #e56a1c;
  --accent-dark: #c4550e;
  --ok: #1f9d55;
  --sale: #d64545;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16, 32, 48, .06), 0 8px 24px rgba(16, 32, 48, .06);
  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
svg.icon { flex: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; }
.main { min-height: 50vh; padding-bottom: 56px; }
.muted { color: var(--muted); }
.lead { font-size: 1.12rem; color: var(--muted); }

.visually-hidden {
  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: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: var(--radius-sm); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--radius-sm); border: 1px solid transparent;
  font: inherit; font-weight: 600; cursor: pointer; background: var(--surface-2);
  color: var(--ink); transition: background .15s, border-color .15s, color .15s;
  text-align: center;
}
.btn:hover { background: var(--line); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; border-color: var(--line); }
.btn--ghost:hover { background: var(--surface); }
.btn--outline { background: transparent; border-color: var(--accent); color: var(--accent-dark); }
.btn--outline:hover { background: #fff3ea; }
.btn--lg { padding: 14px 24px; font-size: 1.02rem; }
.btn--sm { padding: 7px 12px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn--icon { padding: 10px; }
.link-btn { background: none; border: 0; color: var(--muted); font: inherit; cursor: pointer; text-decoration: underline; padding: 0; }
.link-btn:hover { color: var(--ink); }

/* Header */
.site-header { border-bottom: 1px solid var(--line); }
.utility { background: var(--brand-dark); color: var(--brand-ink); font-size: .86rem; }
.utility__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 12px; }
.utility__contacts { display: flex; gap: 18px; flex-wrap: wrap; min-width: 0; }
.utility__item { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-ink); }
.utility__item--muted { opacity: .8; }

.lang { position: relative; }
.lang__toggle {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 8px; border-radius: var(--radius-sm); color: var(--brand-ink);
}
.lang__toggle::-webkit-details-marker { display: none; }
.lang__caret { transform: rotate(90deg); opacity: .8; }
.lang__menu {
  position: absolute; right: 0; top: 100%; margin: 6px 0 0; padding: 6px; list-style: none;
  background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); min-width: 160px; z-index: 40;
}
.lang__menu a { display: block; padding: 8px 12px; border-radius: 6px; }
.lang__menu a:hover { background: var(--surface); }
.lang__menu a.is-current { color: var(--accent-dark); font-weight: 600; }

.masthead { background: #fff; }
.masthead__inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: inline-grid; place-items: center; width: 44px; height: 44px; flex: none;
  background: var(--brand); color: #fff; border-radius: 10px; font-weight: 800;
  letter-spacing: .5px; font-size: .95rem;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 700; font-size: 1.14rem; }
.brand__tagline { font-size: .78rem; color: var(--muted); }

.search { flex: 1 1 auto; display: flex; min-width: 0; max-width: 560px; }
.search__input {
  flex: 1 1 auto; min-width: 0; padding: 11px 14px; border: 1px solid var(--line);
  border-right: 0; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font: inherit; background: var(--surface);
}
.search__input:focus { outline: 2px solid var(--brand); outline-offset: -1px; background: #fff; }
.search__btn {
  flex: none; display: inline-grid; place-items: center; width: 48px; border: 1px solid var(--brand);
  background: var(--brand); color: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; cursor: pointer;
}
.search__btn:hover { background: var(--brand-dark); }
.search--page { max-width: 640px; margin: 0 0 28px; }
.search--page .search__input { border-right: 1px solid var(--line); border-radius: var(--radius-sm); }
.search--page .btn { margin-left: 10px; }

.masthead__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.cart-link { position: relative; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-sm); color: var(--ink); }
.cart-link:hover { background: var(--surface); }
.cart-link__count {
  position: absolute; top: 4px; right: 2px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; background: var(--accent); color: #fff; border-radius: 999px;
  font-size: .74rem; font-weight: 700;
}
.cart-link__count.is-empty { display: none; }
.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; color: var(--ink); }

.site-nav { background: var(--brand); }
.site-nav__inner { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav__link { padding: 13px 14px; color: var(--brand-ink); font-weight: 500; font-size: .96rem; border-bottom: 2px solid transparent; }
.site-nav__link:hover { color: #fff; border-bottom-color: var(--accent); }
.site-nav__spacer { flex: 1 1 auto; }

/* Flashes */
.flashes { margin: 16px auto 0; }
.flash { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 10px; border: 1px solid var(--line); background: var(--surface); }
.flash--success { border-color: #b7e2c7; background: #eafaf0; }
.flash--error { border-color: #f0c0c0; background: #fdedea; }
.flash--info { border-color: #c9dcef; background: #eef4fb; }

/* Hero */
.hero { background: linear-gradient(160deg, var(--brand) 0%, var(--brand-dark) 100%); color: #fff; }
.hero__inner { display: flex; align-items: center; gap: 40px; padding: 56px 20px; }
.hero__content { flex: 1 1 auto; min-width: 0; max-width: 680px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: #a9c4da; margin-bottom: 12px; }
.hero__title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 16px; }
.hero__lead { font-size: 1.1rem; color: #d5e2ee; max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 20px; }
.hero__points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero__points li { display: inline-flex; align-items: center; gap: 8px; color: #cddcea; font-size: .95rem; }
.hero__points svg { color: var(--accent); }
.hero__aside { flex: none; }
.hero__badge { display: inline-grid; place-items: center; width: 132px; height: 132px; border-radius: 24px; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.hero__photo { width: 100%; max-width: 520px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 18px 40px rgba(0,0,0,.28); }

/* Sections */
.section { padding: 48px 0; }
.section--muted { background: var(--surface); }
.section__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.section__title { font-size: 1.5rem; margin: 0; }
.section__title--center { text-align: center; margin-bottom: 32px; }
.section__more { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-dark); font-weight: 600; }
.section__more:hover { color: var(--accent); }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.cat-card {
  display: flex; align-items: center; gap: 14px; padding: 18px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .12s, border-color .12s;
}
.cat-card:hover { transform: translateY(-2px); border-color: #c7d3e0; }
.cat-card__icon { display: grid; place-items: center; width: 52px; height: 52px; flex: none; border-radius: 12px; background: var(--surface-2); color: var(--brand); }
.cat-card__body { display: flex; flex-direction: column; min-width: 0; }
.cat-card__name { font-weight: 600; }
.cat-card__count { font-size: .84rem; color: var(--muted); }
.cat-card__arrow { margin-left: auto; color: var(--muted); flex: none; }

/* Product grid + card */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card:hover { border-color: #c7d3e0; }
.card__media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--surface); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { display: flex; flex-direction: column; gap: 6px; padding: 14px; flex: 1 1 auto; }
.card__cat { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.card__title { font-size: 1rem; margin: 0; font-weight: 600; }
.card__title a:hover { color: var(--accent-dark); }
.card__desc { font-size: .88rem; color: var(--muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 8px; }
.card__price { display: flex; flex-direction: column; min-width: 0; }
.price { font-weight: 700; font-size: 1.06rem; }
.price--request { font-weight: 600; font-size: .96rem; color: var(--brand); }
.price--lg { font-size: 1.7rem; }
.price-old { text-decoration: line-through; color: var(--muted); font-size: .82rem; }
.price__unit { color: var(--muted); font-weight: 500; font-size: .9rem; }

.badge { position: absolute; top: 10px; left: 10px; padding: 4px 8px; border-radius: 6px; font-size: .76rem; font-weight: 700; color: #fff; }
.badge--sale { background: var(--sale); }
.badge--muted { background: rgba(20,32,46,.72); left: auto; right: 10px; }

/* Placeholder */
.ph { display: grid; place-items: center; width: 100%; height: 100%; min-height: 120px; background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%); color: #9fb0c2; }
.ph__icon { display: grid; place-items: center; }

/* Breadcrumbs + page head */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 18px 0; font-size: .88rem; color: var(--muted); }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs__sep { color: var(--line); }
.page-head { margin-bottom: 28px; }
.page-head__title { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.page-head__lead { color: var(--muted); max-width: 70ch; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { padding: 8px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; }
.chip:hover { border-color: var(--accent); color: var(--accent-dark); }

/* Catalog root list */
.cat-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.cat-block { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: #fff; box-shadow: var(--shadow); }
.cat-block__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.cat-block__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--surface-2); color: var(--brand); flex: none; }
.cat-block__name { font-weight: 700; }
.cat-block__count { margin-left: auto; font-size: .82rem; color: var(--muted); }
.cat-block__children { list-style: none; margin: 0; padding: 0 0 0 56px; display: flex; flex-direction: column; gap: 4px; }
.cat-block__children a { color: var(--muted); font-size: .92rem; }
.cat-block__children a:hover { color: var(--accent-dark); }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.feature { text-align: center; padding: 12px; }
.feature__icon { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; background: var(--surface-2); color: var(--accent-dark); margin-bottom: 14px; }
.feature__title { font-size: 1.08rem; }
.feature__text { color: var(--muted); font-size: .95rem; }

/* CTA */
.cta { background: var(--brand); color: #fff; }
.cta--soft { background: var(--surface); color: var(--ink); border-radius: var(--radius); margin: 40px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 36px 20px; flex-wrap: wrap; }
.cta__title { font-size: 1.5rem; margin-bottom: 6px; }
.cta__lead { color: inherit; opacity: .9; margin: 0; }
.cta--soft .cta__lead { color: var(--muted); }
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* Ghost buttons on dark surfaces (hero, solid CTA) need light styling. */
.hero .btn--ghost, .cta:not(.cta--soft) .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .5); background: transparent; }
.hero .btn--ghost:hover, .cta:not(.cta--soft) .btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .8); }

/* Empty state */
.empty { text-align: center; padding: 48px 20px; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty__icon { display: inline-grid; place-items: center; width: 76px; height: 76px; border-radius: 20px; background: var(--surface); color: #9fb0c2; }

/* Product detail */
.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; margin-bottom: 32px; }
.product__stage { position: relative; aspect-ratio: 4 / 3; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.product__stage img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb { width: 72px; height: 72px; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-current { border-color: var(--accent); }
.product__cat { color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-size: .8rem; }
.product__title { font-size: clamp(1.4rem, 3vw, 2rem); margin: 6px 0 12px; }
.product__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin-bottom: 16px; color: var(--muted); font-size: .92rem; }
.stock { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.stock--in { color: var(--ok); }
.stock--order { color: var(--muted); }
.product__lead { font-size: 1.05rem; color: var(--muted); }
.product__buy { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--surface); margin: 18px 0; display: flex; flex-direction: column; gap: 14px; }
.product__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.buy-form { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.qty__btn { width: 40px; height: 44px; border: 0; background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--ink); }
.qty__btn:hover { background: var(--surface); }
.qty__input { width: 56px; height: 44px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); text-align: center; font: inherit; }
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty__input { -moz-appearance: textfield; }

/* Specs + prose */
.specs { margin-top: 8px; }
.specs__title { font-size: 1.1rem; }
.specs__table { width: 100%; border-collapse: collapse; }
.specs__table th, .specs__table td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
.specs__table th { color: var(--muted); font-weight: 500; width: 46%; padding-right: 16px; }
.prose { max-width: 74ch; margin: 24px 0; }
.prose__title { font-size: 1.3rem; margin-top: 24px; }

/* Steps */
.steps { list-style: none; margin: 0 0 8px; padding: 0; display: grid; gap: 14px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; }
.step__num { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--brand); color: #fff; font-weight: 700; }
.step__title { font-size: 1.05rem; margin: 2px 0 4px; }
.step p { margin: 0; color: var(--muted); }

/* Info cards */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 8px 0 28px; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: #fff; }
.info-card__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: var(--surface-2); color: var(--brand); margin-bottom: 12px; }
.info-card__title { font-size: 1.1rem; }
.info-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Cart */
.cart { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; margin-top: 12px; }
.cart__items { display: flex; flex-direction: column; gap: 12px; }
.cart-row { display: grid; grid-template-columns: 88px minmax(0, 1fr) auto auto auto; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.cart-row__media { width: 88px; height: 88px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); flex: none; }
.cart-row__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__info { min-width: 0; }
.cart-row__name { font-weight: 600; }
.cart-row__name:hover { color: var(--accent-dark); }
.cart-row__unit { font-size: .86rem; color: var(--muted); }
.cart-row__qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.cart-row__qty .qty__apply { margin: 4px; }
.cart-row__sum { font-weight: 700; white-space: nowrap; }
.cart__summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); position: sticky; top: 16px; }
.cart__summary-title { font-size: 1.2rem; }
.cart__row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; }
.cart__row--total { font-weight: 700; font-size: 1.15rem; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 14px; }
.cart__note { font-size: .85rem; color: var(--muted); background: var(--surface); border-radius: var(--radius-sm); padding: 10px 12px; }
.cart__summary .btn, .cart__clear { margin-top: 10px; }
.cart__clear { text-align: center; }

/* Checkout */
.checkout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.checkout__summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); position: sticky; top: 16px; }
.checkout__items { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.checkout__item { display: flex; justify-content: space-between; gap: 12px; font-size: .94rem; }
.checkout__hint { color: var(--muted); font-size: .9rem; background: var(--surface); padding: 12px 14px; border-radius: var(--radius-sm); }
.fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin: 0 0 18px; }
.fieldset__legend { font-weight: 600; padding: 0 8px; }
.field-row { margin-bottom: 14px; }
.field-label { display: block; margin-bottom: 6px; font-size: .92rem; font-weight: 500; }
.req { color: var(--sale); }
.field { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font: inherit; background: #fff; }
.field:focus { outline: 2px solid var(--brand); outline-offset: -1px; }
textarea.field { resize: vertical; }
.field-error { display: block; color: var(--sale); font-size: .85rem; margin-top: 4px; }

/* Confirm */
.confirm { text-align: center; padding: 28px 0 8px; }
.confirm__icon { display: inline-grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: #eafaf0; color: var(--ok); margin-bottom: 16px; }
.confirm__icon--muted { background: var(--surface); color: var(--muted); }
.confirm__title { font-size: 1.6rem; }
.confirm__lead { color: var(--muted); }
.confirm__card { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin: 24px 0; box-shadow: var(--shadow); }
.confirm__card-title { font-size: 1.1rem; }
.confirm__items { list-style: none; margin: 0 0 8px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.confirm__items li { display: flex; justify-content: space-between; gap: 12px; }
.confirm__action { background: var(--surface); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.confirm__action p { margin: 0 0 12px; color: var(--muted); }
.confirm .btn { margin-top: 8px; }

/* Contacts */
.contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 8px 0 28px; }
.contact-card { display: flex; flex-direction: column; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.contact-card__icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; background: var(--surface-2); color: var(--brand); margin-bottom: 6px; }
.contact-card__label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.contact-card__value { font-weight: 600; }
.requisites__body { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; color: var(--muted); }

/* Pager */
.pager { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 32px 0 0; }
.pager__link { padding: 9px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 600; }
.pager__link:hover { border-color: var(--accent); color: var(--accent-dark); }
.pager__status { color: var(--muted); font-size: .9rem; }

/* Footer */
.site-footer { background: var(--brand-dark); color: #c6d5e2; margin-top: 40px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; padding: 44px 20px; }
.brand--footer .brand__mark { width: 40px; height: 40px; }
.brand--footer .brand__name { color: #fff; }
.site-footer__about { font-size: .9rem; margin: 14px 0; max-width: 40ch; }
.site-footer__head { font-size: 1rem; color: #fff; margin-bottom: 14px; }
.site-footer__list, .site-footer__contacts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: .92rem; }
.site-footer__list a:hover { color: #fff; }
.site-footer__contacts li { display: flex; align-items: center; gap: 10px; }
.site-footer__contacts a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials__link { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; }
.socials__link:hover { background: var(--accent); }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; padding: 16px 20px; font-size: .85rem; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 980px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cart { grid-template-columns: 1fr; }
  .checkout { grid-template-columns: 1fr; }
  .cart__summary, .checkout__summary { position: static; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav__inner { flex-direction: column; align-items: stretch; padding-top: 6px; padding-bottom: 6px; }
  .site-nav__link { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav__spacer { display: none; }
  html.js .site-nav { display: none; }
  html.js .site-nav.is-open { display: block; }
  .product { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .masthead__inner { flex-wrap: wrap; min-height: 0; padding: 12px 20px; gap: 12px; }
  .search { order: 3; flex-basis: 100%; max-width: none; }
  .brand { margin-right: auto; }
  .hero__inner { flex-direction: column; align-items: flex-start; padding: 40px 20px; }
  .hero__aside { display: none; }
  .cart-row { grid-template-columns: 72px minmax(0, 1fr) auto; grid-auto-rows: auto; }
  .cart-row__media { width: 72px; height: 72px; }
  .cart-row__qty { grid-column: 2 / 4; justify-self: start; }
  .cart-row__sum { grid-column: 2; }
  .cart-row__remove { grid-column: 3; grid-row: 3; justify-self: end; }
  .utility__contacts { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .cta__inner { padding: 26px 18px; }
  .btn--lg { padding: 12px 18px; }
}

/* AGS Bonlife Kazakhstan — 2026 redesign */
:root {
  --bg: #fbfaf7;
  --surface: #f3f4ef;
  --surface-2: #e7efeb;
  --ink: #142b2c;
  --muted: #657575;
  --line: #dce4df;
  --brand: #0a7679;
  --brand-dark: #073f43;
  --brand-ink: #ecffff;
  --accent: #d9a34b;
  --accent-dark: #9b6819;
  --ok: #16865b;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(16, 49, 47, .09);
  --container: 1240px;
  --display: "Trebuchet MS", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); letter-spacing: -.005em; }
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -.035em; }
a, button, input, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(10, 118, 121, .38); outline-offset: 3px; }
.main { padding-bottom: 0; overflow: clip; }
.container--article { max-width: 980px; }
.section { padding: 84px 0; }
.section--soft { background: #f0f4f0; }
.section--compact { padding-top: 36px; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 3rem); }
.section__intro { max-width: 620px; margin: 10px 0 0; color: var(--muted); }
.section-kicker { margin: 0 0 12px; color: var(--brand); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.section-kicker--light { color: #8bdadd; }
.display-title { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.04; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--brand); font-weight: 750; }
.text-link:hover { color: var(--accent-dark); }

.btn { border-radius: 999px; min-height: 46px; font-weight: 750; }
.btn--accent { background: var(--accent); color: #172b2b; box-shadow: 0 8px 22px rgba(175, 123, 35, .2); }
.btn--accent:hover { background: #e6b663; color: #0e2626; transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--brand-dark); }
.btn--light:hover { background: #e9ffff; }
.btn--ghost { border-color: rgba(20, 43, 44, .18); }
.btn--icon { min-width: 44px; padding: 10px; }

.site-header { position: relative; z-index: 50; border: 0; background: rgba(255, 255, 255, .96); }
.utility { background: var(--brand-dark); }
.utility__inner { min-height: 36px; }
.utility__item--country { color: #bde8e6; font-weight: 650; letter-spacing: .01em; }
.masthead { background: #fff; }
.masthead__inner { min-height: 82px; }
.brand { gap: 10px; }
.brand__mark { position: relative; width: 48px; height: 48px; overflow: hidden; border-radius: 15px 4px 15px 4px; background: linear-gradient(145deg, #14afb0, #087175); box-shadow: 0 8px 22px rgba(10, 118, 121, .22); }
.brand__mark::after { content: ""; position: absolute; width: 34px; height: 34px; right: -18px; bottom: -16px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.brand__mark > span { position: relative; z-index: 1; }
.brand__name { color: var(--brand-dark); font-size: 1.28rem; line-height: 1; font-weight: 800; }
.brand__tagline { margin-top: 3px; color: var(--brand); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .17em; }
.search__input { border-color: transparent; border-right: 0; border-radius: 999px 0 0 999px; background: #f2f6f3; padding-left: 20px; }
.search__btn { border-color: var(--brand); border-radius: 0 999px 999px 0; background: var(--brand); }
.cart-link { border: 1px solid var(--line); border-radius: 50%; }
.cart-link__count { background: var(--accent); color: #142b2c; }
.site-nav { background: #fff; border-top: 1px solid #edf1ee; border-bottom: 1px solid var(--line); }
.site-nav__inner { min-height: 51px; }
.site-nav__link { position: relative; padding: 15px 17px; color: #294142; font-size: .92rem; font-weight: 700; border: 0; }
.site-nav__link::after { content: ""; position: absolute; left: 17px; right: 17px; bottom: 8px; height: 2px; border-radius: 2px; background: var(--brand); transform: scaleX(0); transition: transform .2s ease; }
.site-nav__link:hover { color: var(--brand); border: 0; }
.site-nav__link:hover::after { transform: scaleX(1); }
.site-nav__link--subtle { color: var(--muted); }
.lang__menu { border-radius: 14px; }

.hero--new { position: relative; min-height: 670px; overflow: hidden; background: radial-gradient(circle at 12% 18%, rgba(32, 167, 167, .25), transparent 34%), radial-gradient(circle at 86% 18%, rgba(217, 163, 75, .14), transparent 30%), linear-gradient(135deg, #06383b 0%, #095e61 58%, #0a7777 100%); }
.hero--new::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to right, transparent, #000 55%, #000); }
.hero--new .hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr); min-height: 670px; padding-top: 54px; padding-bottom: 54px; }
.hero--new .hero__content { max-width: 690px; }
.hero--new .hero__eyebrow { display: flex; align-items: center; gap: 10px; color: #9ee3df; font-weight: 800; }
.hero--new .hero__eyebrow > span { width: 28px; height: 1px; background: var(--accent); }
.hero--new .hero__title { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.7rem, 5.3vw, 5.05rem); line-height: .98; letter-spacing: -.06em; }
.hero--new .hero__lead { max-width: 610px; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.7; }
.hero--new .hero__actions { margin: 30px 0 36px; }
.hero__proof { display: flex; gap: 42px; }
.hero__proof > div { display: grid; grid-template-columns: auto minmax(0, 130px); gap: 11px; align-items: center; }
.hero__proof strong { font: 800 1.75rem/1 var(--display); color: #fff; }
.hero__proof span { color: #a9cfcd; font-size: .78rem; line-height: 1.35; }
.hero-products { position: relative; min-height: 550px; }
.hero-product { position: absolute; z-index: 3; display: block; overflow: hidden; border: 7px solid rgba(255,255,255,.85); border-radius: 28px; background: #fff; box-shadow: 0 30px 70px rgba(0, 30, 30, .35); transition: transform .25s ease; }
.hero-product:hover { z-index: 8; }
.hero-product img { width: 100%; height: 100%; object-fit: cover; }
.hero-product > span { position: absolute; left: 10px; right: 10px; bottom: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(5, 40, 42, .82); color: #fff; font-size: .75rem; font-weight: 750; backdrop-filter: blur(8px); }
.hero-product--1 { left: 0; top: 50%; width: 285px; height: 365px; transform: translateY(-50%) rotate(-4deg); }
.hero-product--1:hover { transform: translateY(-52%) rotate(-2deg); }
.hero-product--2 { right: 0; top: 35px; width: 235px; height: 295px; transform: rotate(5deg); }
.hero-product--2:hover { transform: translateY(-5px) rotate(2deg); }
.hero-product--3 { right: 22px; bottom: 24px; width: 215px; height: 265px; transform: rotate(-4deg); }
.hero-product--3:hover { transform: translateY(-5px) rotate(-1deg); }
.hero-products__orb { position: absolute; z-index: 1; display: block; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); }
.hero-products__orb--one { width: 390px; height: 390px; left: 70px; top: 72px; }
.hero-products__orb--two { width: 260px; height: 260px; right: 10px; bottom: 42px; border-color: rgba(217,163,75,.4); }

.trust-strip { position: relative; z-index: 2; margin-top: -1px; background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 24px 22px; border-right: 1px solid var(--line); color: var(--brand); }
.trust-item:last-child { border: 0; }
.trust-item span { display: flex; flex-direction: column; color: var(--muted); font-size: .76rem; }
.trust-item strong { color: var(--ink); font-size: .92rem; }

.section--products { background: #fbfaf7; }
.section__head--wide { align-items: flex-end; }
.product-grid--featured, .product-grid--catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.card { border-color: rgba(15, 72, 70, .1); border-radius: 24px; box-shadow: 0 14px 38px rgba(13, 56, 54, .07); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(10,118,121,.3); box-shadow: 0 24px 60px rgba(13, 56, 54, .13); }
.card__media { aspect-ratio: 1 / 1.05; background: #edf2ed; }
.card__media img { object-fit: cover; transition: transform .45s ease; }
.card:hover .card__media img { transform: scale(1.025); }
.card__view { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 5px; padding: 8px 11px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--brand-dark); font-size: .75rem; font-weight: 750; opacity: 0; transform: translateY(6px); transition: .2s ease; }
.card:hover .card__view { opacity: 1; transform: none; }
.card__body { gap: 9px; padding: 20px; }
.card__eyebrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__eyebrow > span { color: var(--ok); font-size: .72rem; font-weight: 750; }
.card__cat { color: var(--brand); font-weight: 750; }
.card__title { font-size: 1.28rem; }
.card__desc { min-height: 2.8em; line-height: 1.45; }
.card__foot { padding-top: 12px; border-top: 1px solid #edf1ee; }
.price { color: var(--brand-dark); }

.story-section { background: #fff; }
.story-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.story-copy > p:not(.section-kicker) { max-width: 620px; color: var(--muted); }
.story-lead { margin-top: 24px; color: var(--ink) !important; font-size: 1.16rem; line-height: 1.65; }
.story-panel { position: relative; padding: clamp(35px, 6vw, 70px); overflow: hidden; border-radius: 36px; background: linear-gradient(145deg, #f1e6d6, #f7f4eb); }
.story-panel::before { content: "“"; position: absolute; right: 22px; top: -42px; color: rgba(10,118,121,.12); font: 180px/1 Georgia, serif; }
.story-panel blockquote { position: relative; margin: 0; font: 700 clamp(1.4rem, 2.5vw, 2.25rem)/1.35 var(--display); color: var(--brand-dark); }
.story-panel__footer { display: flex; align-items: center; gap: 12px; margin-top: 32px; color: var(--muted); font-size: .86rem; font-weight: 750; }
.story-panel__footer .brand__mark { width: 40px; height: 40px; font-size: .75rem; }

.partner-band { position: relative; overflow: hidden; background: #073f43; color: #fff; }
.partner-band::after { content: ""; position: absolute; right: -15%; bottom: -60%; width: 600px; height: 600px; border-radius: 50%; background: rgba(30, 177, 175, .14); filter: blur(3px); }
.partner-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.partner-band__visual { position: relative; min-height: 430px; }
.partner-band__ring { position: absolute; border: 1px solid rgba(139,218,221,.35); border-radius: 50%; }
.partner-band__ring--one { inset: 25px; }
.partner-band__ring--two { inset: 85px; border-color: rgba(217,163,75,.45); }
.partner-band__badge { position: absolute; inset: 50%; width: 190px; height: 190px; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(145deg,#0c7779,#075053); box-shadow: 0 20px 70px rgba(0,0,0,.28); }
.partner-band__badge strong { margin-top: 10px; font: 800 2rem/1 var(--display); }
.partner-band__badge span { margin-top: 5px; color: #a8dad9; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; }
.partner-band__content { max-width: 680px; }
.partner-band__content > p:not(.section-kicker) { color: #b7d2d1; font-size: 1.05rem; }
.check-list { display: grid; gap: 11px; margin: 24px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #d6eeee; }
.check-list svg { color: var(--accent); }

.section--news { background: #f0f4f0; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 12px 34px rgba(13,56,54,.06); }
.news-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #0a7679, #073f43); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__media img { transform: scale(1.03); }
.news-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: rgba(255,255,255,.9); font: 800 3rem/1 var(--display); letter-spacing: -.08em; }
.news-card__video { position: absolute; left: 14px; top: 14px; display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 999px; background: rgba(5,45,46,.84); color: #fff; font-size: .73rem; font-weight: 750; }
.news-card__body { padding: 20px; }
.news-card__body time, .article__header time { color: var(--muted); font-size: .78rem; font-weight: 700; }
.news-card__body h3 { margin: 8px 0; font-size: 1.24rem; }
.news-card__body p { color: var(--muted); font-size: .9rem; }
.news-empty { display: flex; align-items: center; gap: 16px; padding: 24px; border: 1px dashed #b8cac4; border-radius: 18px; background: rgba(255,255,255,.6); }
.news-empty > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--brand); color: #fff; }
.news-empty p { margin: 3px 0 0; color: var(--muted); }

.final-cta { background: #122e2f; color: #fff; }
.final-cta--teal { background: linear-gradient(135deg, #0a696c, #073f43); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 250px; padding-top: 44px; padding-bottom: 44px; }
.final-cta h2 { max-width: 720px; margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.final-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }

.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #073f43, #0a7374); color: #fff; }
.page-hero::after { content: ""; position: absolute; right: -60px; top: -160px; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.page-hero__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; min-height: 340px; padding-top: 60px; padding-bottom: 60px; }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.7rem, 6vw, 5.5rem); }
.page-hero p:not(.page-hero__eyebrow) { max-width: 690px; margin-top: 14px; color: #bfdddd; font-size: 1.06rem; }
.page-hero__eyebrow { margin: 0 0 10px; color: #8bdadd; text-transform: uppercase; letter-spacing: .16em; font-size: .75rem; font-weight: 800; }
.page-hero__mark { flex: none; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(255,255,255,.07); font: 800 2.1rem/1 var(--display); backdrop-filter: blur(8px); }
.page-hero__mark span { margin-top: 8px; color: #9dd4d2; font-size: .65rem; text-transform: uppercase; letter-spacing: .15em; }
.page-hero--catalog { background: linear-gradient(135deg, #073f43, #0c7d79); }
.page-hero--partners { background: linear-gradient(135deg, #2f1830, #773d58); }
.page-hero--news { background: linear-gradient(135deg, #123536, #075d60); }
.breadcrumbs { padding-top: 22px; }
.chips--catalog { margin: 10px 0 0; }
.chips--catalog .chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; background: #fff; }
.chips--catalog .chip > span { display: grid; place-items: center; min-width: 22px; height: 22px; border-radius: 50%; background: var(--surface-2); color: var(--brand); font-size: .72rem; font-weight: 800; }

.about-intro__grid, .leadership-grid, .partner-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.prose--large { max-width: none; margin: 0; color: #405556; font-size: 1.08rem; line-height: 1.8; }
.prose--large p:last-child { margin-bottom: 0; }
.leadership-card { position: sticky; top: 20px; display: flex; gap: 22px; padding: 28px; border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.leadership-card__monogram { flex: none; display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(145deg,#0ca4a1,#07565a); color: #fff; font: 800 2.2rem/1 var(--display); }
.leadership-card h2 { margin-bottom: 5px; font-size: 2rem; }
.leadership-card p:last-child { margin: 0; color: var(--muted); }
.mission-section { background: #073f43; color: #fff; }
.mission-section__inner { max-width: 1060px; }
.mission-section blockquote { margin: 0; font: 700 clamp(2rem, 4.7vw, 4rem)/1.2 var(--display); letter-spacing: -.045em; }
.mission-section__closing { margin: 30px 0 0; color: #9ed2d1; font-size: 1.08rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.value-card > span { color: var(--brand); font-size: .78rem; font-weight: 800; }
.value-card h2 { margin-top: 22px; }
.value-card p { margin: 0; color: var(--muted); }
.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; padding: 30px; border-radius: 22px; background: #eef3ef; }
.page-cta h2 { margin: 0; }
.page-cta p { margin: 5px 0 0; color: var(--muted); }
.page-cta > div:last-child { display: flex; gap: 10px; }

.partner-intro > p { margin: 0; color: var(--muted); font-size: 1.18rem; line-height: 1.75; }
.partner-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-benefits article { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.partner-benefits article > span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px; border-radius: 16px; background: var(--surface-2); color: var(--brand); }
.partner-benefits h3 { font-size: 1.2rem; }
.partner-benefits p { margin: 0; color: var(--muted); font-size: .92rem; }
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.journey li { display: flex; gap: 18px; min-height: 160px; padding: 26px; border-top: 2px solid var(--brand); background: #fff; box-shadow: 0 12px 32px rgba(13,56,54,.05); }
.journey li > span { color: var(--brand); font-weight: 800; }
.journey h3 { margin: 0 0 8px; }
.journey p { margin: 0; color: var(--muted); }

.product { gap: clamp(30px, 5vw, 70px); align-items: start; }
.product__media { min-width: 0; }
.product__stage { aspect-ratio: 1 / 1; border: 0; border-radius: 26px; background: #eef2ed; box-shadow: 0 16px 50px rgba(13,56,54,.08); }
.product__stage img { object-fit: cover; }
.thumbs { flex-wrap: nowrap; padding: 3px 2px 10px; overflow-x: auto; scrollbar-width: thin; }
.thumb { flex: 0 0 78px; width: 78px; height: 78px; border-radius: 13px; }
.thumb.is-current { border: 2px solid var(--brand); box-shadow: 0 0 0 2px rgba(10,118,121,.13); }
.product__cat { color: var(--brand); font-weight: 800; }
.product__title { font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1; }
.product__lead { font-size: 1.12rem; line-height: 1.65; }
.product__highlights { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; padding: 0; list-style: none; }
.product__highlights li { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 999px; background: #edf4ef; color: #385152; font-size: .78rem; font-weight: 700; }
.product__highlights svg { color: var(--brand); }
.product__buy { border: 0; border-radius: 22px; background: #eef3ef; padding: 24px; }
.specs__table th, .specs__table td { padding: 12px 0; }
.product-description { max-width: 880px; margin-top: 58px; }
.product-notice { display: flex; gap: 14px; max-width: 880px; margin: 28px 0; padding: 18px 20px; border-left: 3px solid var(--accent); border-radius: 0 14px 14px 0; background: #f7f1e7; }
.product-notice > span { color: var(--accent-dark); }
.product-notice strong { display: block; margin-bottom: 4px; }
.product-notice p { margin: 0; color: var(--muted); font-size: .88rem; }

.contact-empty { display: flex; align-items: flex-start; gap: 20px; margin-top: 22px; padding: 28px; border-radius: 22px; background: #eef3ef; }
.contact-empty > span { display: grid; place-items: center; flex: none; width: 58px; height: 58px; border-radius: 50%; background: var(--brand); color: #fff; }
.contact-empty h2 { margin-top: 2px; }
.contact-empty p { color: var(--muted); }

.news-grid--archive { row-gap: 34px; }
.article { padding: 32px 0 60px; }
.article__header { max-width: 850px; margin-bottom: 38px; }
.article__header h1 { margin: 0 0 14px; font-size: clamp(2.5rem, 5.5vw, 4.9rem); line-height: 1.03; }
.article__lead { max-width: 760px; margin-top: 22px; color: var(--muted); font-size: 1.2rem; line-height: 1.65; }
.article__cover { margin: 0 0 34px; overflow: hidden; border-radius: 26px; background: var(--surface); }
.article__cover img { width: 100%; max-height: 650px; object-fit: cover; }
.article__body { max-width: 760px; font-size: 1.06rem; line-height: 1.8; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; margin: 34px 0; overflow: hidden; border-radius: 24px; background: #071d1e; box-shadow: var(--shadow); }
.video-frame video, .video-frame iframe { width: 100%; height: 100%; border: 0; object-fit: contain; }

.site-footer { margin: 0; background: #092e31; color: #a9c6c5; }
.site-footer__grid { grid-template-columns: 1.55fr 1fr 1fr 1fr; padding-top: 64px; padding-bottom: 64px; }
.site-footer__col--brand { padding-right: 30px; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tagline { color: #8bcaca; }
.site-footer__head { color: #fff; letter-spacing: -.01em; }
.site-footer__bar { border-color: rgba(255,255,255,.08); }

@media (max-width: 1040px) {
  .hero--new .hero__inner { grid-template-columns: minmax(0, 1fr) 410px; }
  .hero-product--1 { width: 245px; height: 320px; }
  .hero-product--2 { width: 205px; height: 260px; }
  .hero-product--3 { width: 180px; height: 225px; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-nav { background: #fff; }
  .site-nav__inner { padding: 10px 20px 14px; }
  .site-nav__link { color: var(--ink); border-bottom: 1px solid var(--line); }
  .site-nav__link::after { display: none; }
  .hero--new .hero__inner { display: block; min-height: 0; padding-top: 70px; padding-bottom: 54px; }
  .hero--new .hero__content { max-width: 740px; }
  .hero-products { max-width: 600px; min-height: 440px; margin: 30px auto 0; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-grid, .partner-band__inner, .about-intro__grid, .leadership-grid, .partner-intro { grid-template-columns: 1fr; }
  .partner-band__visual { min-height: 330px; }
  .leadership-card { position: static; }
  .values-grid, .journey { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .page-hero__mark { width: 120px; height: 120px; }
}

@media (max-width: 720px) {
  .utility__contacts { display: flex; }
  .utility__item--country { font-size: .72rem; }
  .masthead__inner { padding-top: 13px; padding-bottom: 13px; }
  .hero--new .hero__title { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero__proof { gap: 22px; }
  .hero-products { min-height: 370px; }
  .hero-product--1 { left: 1%; width: 210px; height: 270px; }
  .hero-product--2 { right: 1%; top: 18px; width: 175px; height: 220px; }
  .hero-product--3 { right: 7%; bottom: 8px; width: 150px; height: 185px; }
  .hero-products__orb--one { width: 280px; height: 280px; left: 15%; }
  .product-grid--featured, .product-grid--catalog { grid-template-columns: 1fr; }
  .product-grid--featured .card, .product-grid--catalog .card { max-width: 520px; width: 100%; margin: 0 auto; }
  .section { padding: 62px 0; }
  .partner-band__visual { min-height: 280px; }
  .partner-band__badge { width: 150px; height: 150px; }
  .page-hero__inner { min-height: 300px; }
  .page-hero__mark { display: none; }
  .page-cta, .final-cta__inner { align-items: flex-start; flex-direction: column; }
  .news-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .utility__item--country span { max-width: 245px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand__mark { width: 44px; height: 44px; }
  .brand__name { font-size: 1.15rem; }
  .hero--new .hero__inner { padding-top: 54px; }
  .hero--new .hero__lead { font-size: 1rem; }
  .hero__proof > div { grid-template-columns: 1fr; gap: 4px; }
  .hero-products { min-height: 315px; }
  .hero-product { border-width: 4px; border-radius: 18px; }
  .hero-product > span { display: none; }
  .hero-product--1 { width: 170px; height: 220px; }
  .hero-product--2 { width: 145px; height: 180px; }
  .hero-product--3 { width: 120px; height: 150px; }
  .trust-item { padding: 18px 10px; }
  .trust-item svg { display: none; }
  .story-panel { padding: 30px 24px; border-radius: 24px; }
  .partner-band__visual { min-height: 230px; }
  .partner-benefits { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 2.7rem; }
  .page-cta > div:last-child { width: 100%; flex-direction: column; }
  .page-cta .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .product__buy { padding: 18px; }
  .buy-form > .btn { flex: 1 1 100%; }
  .contact-empty { flex-direction: column; }
}

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