:root {
  color-scheme: light;
  --bg: #f5f8fa;
  --surface: #ffffff;
  --surface-2: #eaf1f4;
  --text: #102630;
  --muted: #59717c;
  --line: #cbd9df;
  --brand: #086b78;
  --brand-dark: #064b5f;
  --accent: #e8a31a;
  --success: #16835c;
  --shadow: 0 16px 44px rgba(12, 49, 60, .11);
  --radius: 6px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b171c;
  --surface: #11242b;
  --surface-2: #173039;
  --text: #edf7f7;
  --muted: #a6bec5;
  --line: #29454f;
  --brand: #2bb2ad;
  --brand-dark: #87d8d1;
  --accent: #f1b846;
  --success: #5dd39e;
  --shadow: 0 18px 50px rgba(0, 0, 0, .3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 15px/1.65 "Segoe UI", Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky; top: 0; z-index: 50; min-height: 68px; padding: 0 4vw;
  display: flex; align-items: center; gap: 26px; background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font: 800 20px Manrope, sans-serif; white-space: nowrap; }
.brand small { color: var(--brand); font-size: .65em; }
.brand-mark { width: 36px; aspect-ratio: 1; display: grid; place-items: center; background: var(--brand-dark); color: #fff; border-radius: 5px; font-size: 12px; }
.main-menu { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.main-menu a { font-weight: 600; font-size: 13px; color: var(--muted); }
.main-menu a:hover { color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-switch { display: flex; border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.language-switch a { padding: 7px 9px; font-size: 11px; font-weight: 800; color: var(--muted); }
.language-switch a.active { background: var(--brand-dark); color: #fff; }
.icon-button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--text); }
.menu-button { display: none; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.eyebrow { color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.button { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--brand-dark); border-radius: 5px; background: var(--brand-dark); color: #fff; font-weight: 750; }
.button.secondary { background: transparent; color: var(--brand-dark); }
.button:hover { transform: translateY(-1px); box-shadow: 0 9px 24px rgba(8, 107, 120, .18); }

.hero {
  min-height: min(760px, calc(100vh - 68px)); position: relative; display: flex; align-items: end;
  background: #16313c; overflow: hidden;
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .7; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,24,31,.92) 0%, rgba(5,24,31,.55) 50%, rgba(5,24,31,.18) 100%); }
.hero-content { position: relative; z-index: 1; width: min(1180px, 92vw); margin: 0 auto; padding: 70px 0 82px; color: #fff; }
.hero h1 { max-width: 760px; margin: 10px 0 18px; font: 800 clamp(40px, 6vw, 78px)/1.02 Manrope, sans-serif; letter-spacing: 0; }
.hero p { max-width: 650px; margin: 0 0 28px; color: #d9e8ec; font-size: clamp(16px, 2vw, 20px); }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero .button.secondary { border-color: rgba(255,255,255,.65); color: #fff; }

.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-strip .container { min-height: 72px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-strip span { padding: 0 18px; border-right: 1px solid var(--line); text-align: center; font-size: 13px; font-weight: 700; color: var(--muted); }
.trust-strip span:last-child { border-right: 0; }

.section { padding: 84px 0; }
.section.alt { background: var(--surface); }
.section-heading { max-width: 720px; margin-bottom: 30px; }
.section-heading h2 { margin: 8px 0 10px; font: 800 clamp(30px, 4vw, 48px)/1.08 Manrope, sans-serif; }
.section-heading p { color: var(--muted); font-size: 17px; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.category-link { min-height: 128px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; }
.category-link strong { font: 750 18px Manrope, sans-serif; }
.category-link span { color: var(--brand); font-weight: 700; font-size: 12px; }
.category-link:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow); }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.product-card-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover img { transform: scale(1.025); }
.product-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 11px; }
.tag { padding: 4px 7px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.tag.status { color: var(--success); }
.product-card h3 { margin: 0 0 8px; font: 750 21px/1.2 Manrope, sans-serif; }
.product-card p { margin: 0 0 18px; color: var(--muted); }
.product-card .card-link { margin-top: auto; color: var(--brand); font-weight: 800; }

.filter-bar { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-bar button { padding: 8px 12px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--muted); font-weight: 700; }
.filter-bar button.active { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }

.finder { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--brand-dark); color: #fff; }
.finder-copy { padding: clamp(40px, 7vw, 86px); }
.finder-copy h2 { margin: 8px 0 12px; font: 800 clamp(34px, 4vw, 54px)/1.05 Manrope, sans-serif; }
.finder-copy p { color: #d5e7ea; font-size: 17px; }
.finder-form { padding: clamp(38px, 6vw, 72px); background: var(--surface); color: var(--text); }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field label { font-size: 12px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 5px; background: var(--bg); color: var(--text); }
.finder-result { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.finder-result a { padding: 10px; background: var(--surface-2); border-left: 3px solid var(--brand); font-weight: 700; }
.consent-line { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; color: var(--muted); font-size: 12px; }
.consent-line input { width: 18px; height: 18px; flex: 0 0 auto; }
.consent-line a { color: var(--brand); text-decoration: underline; }
.finder-success, .finder-error { margin: 7px 0 0; padding: 10px; font-size: 12px; }
.finder-success { background: rgba(22, 131, 92, .12); color: var(--success); }
.finder-error { background: rgba(232, 163, 26, .14); color: var(--text); }

.catalog-hero { padding: 70px 0 44px; background: var(--surface); border-bottom: 1px solid var(--line); }
.catalog-hero h1 { margin: 8px 0 10px; font: 800 clamp(38px, 5vw, 62px)/1.04 Manrope, sans-serif; }
.catalog-hero p { max-width: 720px; color: var(--muted); font-size: 18px; }

.product-hero { padding: 46px 0 52px; background: var(--surface); border-bottom: 1px solid var(--line); }
.product-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.product-hero h1 { margin: 10px 0 16px; font: 800 clamp(38px, 5vw, 66px)/1.02 Manrope, sans-serif; }
.product-hero .lead { color: var(--muted); font-size: 19px; }
.product-hero-media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--surface-2); }
.product-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
.detail-copy h2 { font: 800 32px Manrope, sans-serif; margin: 0 0 14px; }
.detail-copy > p { color: var(--muted); font-size: 17px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; list-style: none; margin: 28px 0; }
.feature-list li { padding: 14px 14px 14px 38px; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 5px; }
.feature-list li::before { content: "✓"; position: absolute; left: 14px; color: var(--success); font-weight: 900; }
.contact-panel { position: sticky; top: 92px; padding: 25px; background: var(--surface); border: 1px solid var(--line); border-top: 4px solid var(--brand); border-radius: var(--radius); }
.contact-panel h2 { margin: 0 0 8px; font: 800 24px Manrope, sans-serif; }
.contact-panel p { color: var(--muted); }
.contact-panel .button { width: 100%; margin-top: 8px; }

.site-footer { background: #09202a; color: #e7f1f3; }
.footer-primary { width: min(1180px, 92vw); margin: auto; padding: 58px 0; display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 50px; }
.footer-primary p { color: #a9bec5; max-width: 440px; }
.footer-primary h2 { margin: 0 0 12px; font: 750 16px Manrope, sans-serif; }
.footer-primary > div > a:not(.brand) { display: block; margin-bottom: 8px; color: #c4d7dc; }
.contact-email { color: #fff !important; font-weight: 800; font-size: 17px; }
.signal-contact { margin: 16px 0 10px; padding: 10px; max-width: 310px; display: flex !important; align-items: center; gap: 12px; border: 1px solid #34515b; background: #102e39; border-radius: 5px; }
.signal-contact img { width: 64px; height: 64px; object-fit: cover; object-position: top; border-radius: 4px; }
.signal-contact span { display: grid; gap: 2px; }
.signal-contact strong { color: #fff; font-size: 16px; }
.signal-contact small { color: #b8cdd2; }
.footer-legal { min-height: 60px; padding: 12px 4vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #28414a; color: #91a9b0; font-size: 12px; }
.footer-legal nav { display: flex; gap: 16px; }

.legal-page { width: min(900px, calc(100% - 36px)); margin: 0 auto; padding: 64px 0 90px; }
.legal-hero { max-width: 720px; margin-bottom: 28px; }
.legal-hero h1 { margin: 6px 0 8px; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
.legal-hero p:last-child { margin: 0; color: var(--muted); font-size: 17px; }
.legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.legal-tabs a { padding: 8px 12px; color: var(--muted); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; font-weight: 700; }
.legal-tabs a[aria-current="page"] { color: #fff; background: var(--brand); border-color: var(--brand); }
.legal-content { padding: 30px clamp(20px, 5vw, 52px); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.legal-content h2 { margin: 32px 0 8px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 20px; line-height: 1.3; }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--brand-dark); font-weight: 700; }
.legal-updated { color: var(--muted); font-size: 13px; }
.website-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 960px) {
  .main-menu { position: absolute; top: 68px; left: 0; right: 0; display: none; padding: 20px 4vw; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  .main-menu.open { display: flex; }
  .menu-button { display: inline-grid; place-items: center; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .finder, .product-hero-grid, .detail-grid { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
}

@media (max-width: 620px) {
  .site-header { padding: 0 16px; }
  .brand { font-size: 17px; }
  .brand-mark { width: 32px; }
  .hero { min-height: 650px; }
  .hero-content { padding-bottom: 54px; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); padding: 10px 0; }
  .trust-strip span { min-height: 50px; display: grid; place-items: center; border-bottom: 1px solid var(--line); }
  .section { padding: 58px 0; }
  .product-grid, .category-grid, .feature-list { grid-template-columns: 1fr; }
  .finder-copy, .finder-form { padding: 36px 24px; }
  .footer-primary { grid-template-columns: 1fr; gap: 30px; }
  .footer-legal { align-items: flex-start; flex-direction: column; }
  .footer-legal nav { flex-wrap: wrap; }
}
