@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-sans: "Manrope", system-ui, sans-serif;
  --color-brand: #cc0000;
  --color-text: #101828;
  --color-text-muted: #6a7282;
  --color-heading: #1e2939;
  --color-surface: #ffffff;
  --color-surface-muted: #f9fafb;
  --color-surface-red: #fef2f2;
  --color-border: #f3f4f6;
  --color-dark: #000000;
  --content: 1240px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4.5rem;
  --radius: 12px;
  --header-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: var(--color-text); background: var(--color-surface); line-height: 1.55; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul li::marker { content: ""; }
.bos-wrap { width: min(100% - 2.5rem, var(--content)); margin-inline: auto; }
.bos-badge { display: inline-flex; align-items: center; padding: 0.45rem 0.85rem; border-radius: 999px; background: var(--color-surface-red); color: var(--color-brand); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.bos-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 44px; padding: 0 1.15rem; border-radius: 8px; border: 1px solid transparent; font-weight: 600; font-size: 0.9rem; cursor: pointer; background: var(--color-brand); color: #fff; }
.bos-btn:hover { opacity: 0.9; }
.bos-btn--ghost { background: #fff; color: var(--color-heading); border-color: #e5e7eb; }
.bos-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.bos-header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.bos-logo img { height: 40px; width: auto; }
.bos-nav { display: none; gap: 1.4rem; font-weight: 600; font-size: 0.95rem; }
.bos-nav a:hover { color: var(--color-brand); }
.bos-header__tools { display: flex; align-items: center; gap: 0.9rem; }
.bos-langs { display: flex; gap: 0.4rem; }
.bos-langs img { width: 18px; height: 11px; object-fit: cover; }
.bos-menu-toggle { display: inline-flex; border: 0; background: transparent; font-size: 1.4rem; cursor: pointer; }
.bos-nav--open { display: flex; flex-direction: column; position: absolute; inset: var(--header-h) 0 auto 0; background: #fff; padding: 1rem 1.25rem 1.25rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 1100px) {
  .bos-nav { display: flex; }
  .bos-menu-toggle { display: none; }
  .bos-nav--open { position: static; flex-direction: row; padding: 0; border: 0; background: transparent; }
}
.bos-hero { position: relative; min-height: 620px; display: grid; place-items: end stretch; color: #fff; overflow: hidden; background: #111; }
.bos-hero__media { position: absolute; inset: 0; height: auto; }
.bos-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bos-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.2) 100%); }
.bos-hero__inner { position: relative; z-index: 1; display: grid; gap: 1.5rem; padding: 5rem 0 4rem; max-width: 640px; }
.bos-hero h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.15; font-weight: 800; white-space: pre-line; }
.bos-hero p { margin: 0; max-width: 28rem; font-size: 1.05rem; }
.bos-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (max-width: 767px) {
  .bos-hero { min-height: 0; display: block; color: var(--color-text); background: var(--color-surface); }
  .bos-hero::after { display: none; }
  .bos-hero__media { position: relative; display: block; height: auto; }
  .bos-hero__inner { padding: 1.5rem 0 2.5rem; max-width: none; }
}
.bos-stats { background: var(--color-surface-muted); padding: var(--space-xl) 0; }
.bos-stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 499px) { .bos-stats__grid { grid-template-columns: repeat(1, 1fr); } }
.bos-stats strong { display: block; font-size: clamp(1.8rem, 4vw, 3.4rem); color: var(--color-brand); line-height: 1; }
.bos-stats span { display: block; font-weight: 600; margin-top: 0.45rem; }
.bos-stats small { color: var(--color-text-muted); }
@media (min-width: 1100px) { .bos-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.bos-about { padding: var(--space-xl) 0; }
.bos-about__grid { display: grid; gap: 2.5rem; align-items: center; }
.bos-about h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin: 0.8rem 0 1rem; white-space: pre-line; }
.bos-about p { color: var(--color-text-muted); }
.bos-checklist { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.bos-checklist ul { padding: 0; margin: 0; }
.bos-checklist li { position: relative; padding-left: 1.7rem; margin: 0.55rem 0; }
.bos-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--color-brand); font-weight: 700; }
.bos-about__media { position: relative; }
.bos-about__media img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 441px; }
.bos-about__card { position: absolute; left: 1rem; bottom: 1rem; background: var(--color-brand); color: #fff; padding: 1.1rem 1.25rem; border-radius: 10px; max-width: 16rem; }
.bos-about__card strong { font-size: 1.7rem; }
@media (min-width: 1100px) { .bos-about__grid { grid-template-columns: 1fr 1.15fr; } }
.bos-section { padding: var(--space-xl) 0; }
.bos-section__intro { text-align: center; max-width: 46rem; margin: 0 auto 2.5rem; }
.bos-section__intro h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.7rem 0 0.8rem; text-transform: uppercase; letter-spacing: 0.02em; }
.bos-products { display: grid; gap: 1.25rem; }
.bos-product { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.bos-product__img { height: 220px; display: grid; place-items: center; overflow: hidden; }
.bos-product__img img { box-sizing: border-box; width: 100%; height: 100%; padding: 20px; object-fit: contain; }
.bos-product__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.bos-product h3 { margin: 0; color: var(--color-brand); font-size: 1.1rem; }
.bos-product__teaser { color: var(--color-text-muted); font-size: 0.92rem; }
.bos-product__teaser p { margin: 0; }
.bos-specs { background: var(--color-surface-muted); border-radius: 8px; padding: 0.9rem 1rem; font-size: 0.88rem; margin-top: auto; }
.bos-specs small { display: block; color: var(--color-text-muted); margin-bottom: 0.4rem; font-weight: 600; text-transform: uppercase; }
.bos-specs div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.2rem 0; }
.bos-product .bos-btn { width: 100%; }
.bos-video-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.bos-video-card { overflow: hidden; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface); }
.bos-video-card h2, .bos-video-card h3 { margin: 0; padding: 1rem 1.25rem; font-size: 1rem; }
.bos-video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.bos-lazy-video { position: relative; background: #000; }
.bos-lazy-video button { position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; background: #000; color: #fff; }
.bos-lazy-video button img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; opacity: 0.82; }
.bos-lazy-video button span { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); min-width: max-content; padding: 0.7rem 1rem; border-radius: 999px; background: rgba(0,0,0,.78); font-weight: 700; }
.bos-lazy-video button span::before { content: "▶"; margin-right: 0.45rem; }
.bos-video-grid--technology { margin-top: 2.5rem; }
.bos-product-detail__image { width: 100%; max-height: 36rem; object-fit: contain; border-radius: var(--radius); background: var(--color-surface-muted); }
.bos-product-detail__video { margin: 2rem 0; }
@media (min-width: 768px) { .bos-products { grid-template-columns: repeat(2, 1fr); } .bos-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bos-products { grid-template-columns: repeat(4, 1fr); } }
.bos-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.75rem; }
.bos-filters a { border: 1px solid #e5e7eb; background: #fff; border-radius: 999px; padding: 0.4rem 0.9rem; font-size: 0.85rem; font-weight: 600; }
.bos-filters .is-active { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }
.bos-modules { display: grid; gap: 1rem; }
.bos-module { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1rem; background: #fff; display: grid; gap: 0.6rem; }
.bos-module img { width: 100%; height: 140px; object-fit: contain; background: var(--color-surface-muted); border-radius: 8px; }
.bos-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-brand); }
.bos-module h3 { margin: 0; font-size: 1.05rem; }
.bos-module p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }
@media (min-width: 768px) { .bos-modules { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bos-modules { grid-template-columns: repeat(3, 1fr); } }
.bos-slider { padding: var(--space-lg) 0 var(--space-xl); }
.bos-slider__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; }
.bos-slider__track img { flex: 0 0 min(80%, 720px); height: 360px; object-fit: cover; border-radius: var(--radius); scroll-snap-align: center; }
@media (max-width: 767px) { .bos-slider__track img { height: 220px; flex-basis: 88%; } }
.bos-cta { position: relative; overflow: hidden; color: #fff; background: #111 center / cover no-repeat; min-height: 420px; }
.bos-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35)); }
.bos-cta__inner { position: relative; z-index: 1; padding: var(--space-xl) 0; max-width: 36rem; }
.bos-cta h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 0 0 0.8rem; }
.bos-cta ul { list-style: none; padding: 0; }
.bos-cta li { margin: 0.45rem 0; }
.bos-cta .bos-btn { margin-top: 1rem; }
.bos-services { padding: var(--space-xl) 0; }
.bos-service-grid { display: grid; gap: 1rem; }
.bos-service { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.bos-service img { width: 100%; height: 210px; object-fit: cover; }
.bos-service h3 { margin: 1.2rem 1.4rem 0.5rem; }
.bos-service p { margin: 0 1.4rem 1.4rem; color: var(--color-text-muted); }
@media (min-width: 768px) { .bos-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .bos-service-grid { grid-template-columns: repeat(2, 1fr); } }
.bos-footer { background: #0b0b0b; color: #d1d5dc; padding: 2.5rem 0 1.25rem; font-size: 0.92rem; }
.bos-footer a:hover { color: #fff; }
.bos-footer__grid { display: grid; gap: 1.5rem; }
.bos-footer h4 { color: #fff; margin: 0 0 0.8rem; }
.bos-footer ul { list-style: none; padding: 0; margin: 0; }
.bos-footer li { margin: 0.4rem 0; }
.bos-footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #222; font-size: 0.82rem; }
.bos-form { display: grid; gap: 0.7rem; max-width: 32rem; }
.bos-form input, .bos-form textarea { width: 100%; border: 1px solid #e5e7eb; border-radius: 8px; padding: 0.7rem 0.8rem; }
@media (min-width: 1100px) { .bos-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
#bos-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #111; color: #fff; box-shadow: 0 -8px 24px rgba(0,0,0,.2); }
#bos-cookie[hidden] { display: none !important; }
.bos-legal { padding: var(--space-xl) 0; max-width: 48rem; }
.bos-legal > .bos-section { padding: 0; }
.bos-legal h1 { margin-top: 0; }
.mod_article { margin: 0; }
.mod_article.bos-wrap { margin-inline: auto; }
#wrapper, #container, #main { padding: 0; width: auto; max-width: none; }
#header, #footer { padding: 0; background: transparent; }
#header .inside, #footer .inside, #main .inside, #container .inside { max-width: none; width: auto; padding: 0; }
