:root {
  --bg: #F5F6F8;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #ffffff;
  --surface-dark: #004267;
  --surface-dark-soft: #0072a8;
  --text: #004267;
  --muted: #5F708A;
  --link: #0072a8;
  --line: rgba(0, 66, 103, 0.14);
  --accent: #E8590A;
  --accent-soft: #FFF1E8;
  --success: #0F8B65;
  --shadow: 0 4px 16px rgba(0, 66, 103, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f5f6f8 0%, #ffffff 100%);
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  background: rgba(0, 66, 103, 0.96);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 252, 0.84);
  border-bottom: 1px solid rgba(0, 66, 103, 0.08);
}

.site-header .container {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 220px auto;
  align-items: center;
  gap: 20px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand > div {
  display: none;
}

.brand-title {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.85rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
  color: var(--muted);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  width: 220px;
  min-width: 220px;
  text-align: right;
}

.header-contact strong {
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.header-contact span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--surface-dark);
  border-radius: 999px;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: rotate(-45deg) translateY(-1px);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button {
  color: #ffffff;
  background: #E8590A;
  border: 1px solid #E8590A;
  box-shadow: 0 16px 26px rgba(232, 89, 10, 0.22);
}

.button-secondary {
  color: var(--surface-dark);
  background: var(--surface-strong);
  border: 1px solid #D0D5DD;
}

.button-ghost {
  color: var(--accent);
  background: transparent;
  border: 2px solid var(--accent);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px);
}

.button:hover {
  background: #C44D09;
  border-color: #C44D09;
  color: #ffffff;
}

.button-ghost:hover {
  background: rgba(232, 89, 10, 0.06);
  color: #E8590A;
}

.button-secondary:hover {
  background: #F8FAFC;
  color: #004267;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 70px;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 20px 0 0;
  background:
    radial-gradient(circle at left, rgba(232, 89, 10, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(0, 66, 103, 0.96), rgba(0, 114, 168, 0.92));
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 14px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.page-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.page-hero p,
.lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-actions,
.stacked-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stacked-actions-offset-sm {
  margin-top: 18px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 66, 103, 0.04);
  border: 1px solid rgba(0, 66, 103, 0.1);
}

.metric strong {
  display: block;
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-card,
.surface-card,
.stats-card,
.contact-card,
.catalog-sidebar,
.faq-card,
.product-info,
.product-gallery,
.production-step,
.trust-card,
.connector-card,
.comparison-card,
.seo-card,
.sitemap-card,
.info-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-card {
  padding: 24px;
}

.surface-card-md {
  padding: 24px;
}

.surface-card-lg {
  padding: 26px;
}

.hero .visual-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual-top {
  display: block;
}

.hero-visual-top > img {
  width: 100%;
  height: 340px;
  min-height: 0;
  object-fit: cover;
  margin: 0;
  border-radius: 18px;
}

.visual-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero .visual-card .hero-metrics {
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero .visual-card .visual-badges {
  margin-top: 0;
}

.hero .visual-card .metric {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #0072a8, #004267);
  border: 1px solid rgba(0, 114, 168, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero .visual-card .metric strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.hero .visual-card .metric span {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 4px;
}

.visual-badges span,
.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #883100;
  font-weight: 600;
  font-size: 0.88rem;
}

.page-main {
  padding: 48px 0 72px;
}

.section {
  margin-bottom: 52px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-heading-offset-sm {
  margin-top: 14px;
}

.section-heading h2,
.section-heading h3,
.section-heading h1 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1.16;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 66, 103, 0.09);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 66, 103, 0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 66, 103, 0.14), rgba(232, 89, 10, 0.12));
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
}

.card h3,
.card h4 {
  margin: 0 0 10px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.card p,
.card li,
.card dd,
.card dt {
  margin: 0;
  color: var(--muted);
}

.feature-list,
.check-list,
.info-list,
.inline-specs,
.faq-meta,
.sitemap-list,
.breadcrumbs,
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sitemap-list-grid {
  display: grid;
  gap: 18px;
}

.check-list li::before,
.inline-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.inline-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.product-card,
.mini-product-card,
.connector-card,
.trust-card,
.faq-card,
.production-step {
  overflow: hidden;
}

.product-card,
.mini-product-card,
.connector-card {
  padding: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mini-product-card,
.connector-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card img,
.mini-product-card img,
.connector-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(0, 66, 103, 0.18), rgba(232, 89, 10, 0.14));
}

.product-card img {
  height: 220px;
  aspect-ratio: auto;
}

.product-card .card-body,
.mini-product-card .card-body,
.connector-card .card-body {
  padding: 22px;
}

.mini-product-card .card-body,
.connector-card .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
}

.mini-product-card h3 {
  min-height: 2.6em;
}

.mini-product-card p {
  min-height: 3.2em;
}

.connector-card h3,
.connector-card p {
  min-height: 0;
}

.product-card .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
}

.product-card .card-body .stacked-actions {
  margin-top: auto;
}

.product-card h3 {
  min-height: 2.8em;
}

.product-card p {
  min-height: 3.4em;
}

#catalog-preview .mini-product-card img {
  height: 180px;
  aspect-ratio: auto;
  object-fit: cover;
}

#catalog-preview .mini-product-card .card-body {
  padding: 16px;
}

#catalog-preview .mini-product-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.price-note {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 6px;
  background: #edf7f3;
  color: var(--success);
  font-weight: 700;
  font-size: 0.85rem;
}

.product-grid-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.catalog-sidebar,
.seo-card,
.comparison-card,
.info-panel,
.contact-card,
.trust-card,
.faq-card,
.product-info,
.product-gallery,
.sitemap-card {
  padding: 24px;
}

#lead-form .contact-card {
  background:
    radial-gradient(circle at top right, rgba(232, 89, 10, 0.12), transparent 28%),
    linear-gradient(180deg, #fff8f3 0%, #fffdfb 100%);
  border: 1px solid rgba(232, 89, 10, 0.18);
  box-shadow: 0 10px 28px rgba(232, 89, 10, 0.08);
}

#lead-form .section-heading {
  margin-bottom: 28px;
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group label,
.form-grid label,
.quick-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 12px;
}

.filter-group label > span:not(.field-error),
.form-grid label > span:not(.field-error),
.quick-form label > span:not(.field-error) {
  font-size: 0.92rem;
}

.filter-group select,
.form-grid input:not([type="checkbox"]),
.form-grid textarea,
.quick-form input:not([type="checkbox"]),
.quick-form textarea,
.quick-form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 66, 103, 0.14);
  background: #fff;
  color: var(--text);
}

.form-grid textarea,
.quick-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.calc-grid {
  align-items: start;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.calc-result-card {
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(232, 89, 10, 0.12), transparent 26%),
    linear-gradient(180deg, #fff8f3 0%, #fffdfb 100%);
  border: 1px solid rgba(232, 89, 10, 0.18);
}

.calc-result-card h3 {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.calc-result-card p {
  margin: 0;
  color: var(--muted);
}

.calc-points {
  gap: 10px 12px;
}

.calc-estimate {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0, 66, 103, 0.04);
  border: 1px solid rgba(0, 66, 103, 0.08);
}

.calc-estimate strong {
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.calc-estimate span {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid label.consent,
.quick-form label.consent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
  margin-bottom: 0;
  font-weight: 400;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  border-radius: 4px;
  margin-top: 4px;
}

.consent > span:not(.field-error) {
  flex: 1 1 0;
}

.consent .field-error {
  width: 100%;
  margin-left: 28px;
}

.field-error {
  color: #b42318;
  font-size: 0.82rem;
}

.input-error {
  border-color: #d92d20 !important;
  background: #fff5f5 !important;
}

.success-message {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: #edf7f3;
  color: var(--success);
  font-weight: 700;
}

.success-message.is-visible {
  display: block;
}

.button,
.button-secondary,
.button-ghost {
  --spinner-track: rgba(0, 66, 103, 0.18);
  --spinner-head: currentColor;
}

.button {
  --spinner-track: rgba(255, 255, 255, 0.35);
  --spinner-head: #fff;
}

.button.is-loading,
.button-secondary.is-loading,
.button-ghost.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.9;
}

.button.is-loading::after,
.button-secondary.is-loading::after,
.button-ghost.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid var(--spinner-track);
  border-top-color: var(--spinner-head);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.86);
}

.subpage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 20px;
}

.gallery-main {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 14px;
}

.gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumb-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 66, 103, 0.08);
}

.gallery-thumb-button img {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-thumb-button:hover img,
.gallery-thumb-button:focus-visible img,
.gallery-thumb-button.is-active img {
  border-color: rgba(232, 89, 10, 0.5);
  box-shadow: 0 10px 24px rgba(0, 66, 103, 0.12);
  transform: translateY(-1px);
}

.visual-card > img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.product-page .visual-card > img {
  height: 280px;
  object-fit: cover;
}

.product-page .mini-product-card img {
  height: 180px;
  aspect-ratio: auto;
  object-fit: cover;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 12px;
}

.product-highlight {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(0, 66, 103, 0.04);
  border: 1px solid rgba(0, 66, 103, 0.08);
}

.product-highlight strong {
  display: block;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.product-highlight span {
  color: var(--muted);
  font-size: 0.84rem;
}

.spec-table,
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td,
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 66, 103, 0.08);
  text-align: left;
  vertical-align: top;
}

.spec-table th,
.comparison-table th {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 66, 103, 0.08);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  text-align: left;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-marker {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 14px;
}

.production-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
}

.step-index {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 66, 103, 0.12), rgba(232, 89, 10, 0.16));
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.trust-overview,
.trust-facts {
  padding: 28px;
  height: 100%;
}

.trust-overview {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.logo-chip {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(0, 66, 103, 0.04);
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: normal;
  text-wrap: balance;
}

.trust-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-meta-item,
.trust-fact {
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 66, 103, 0.04);
  border: 1px solid rgba(0, 66, 103, 0.08);
}

.trust-meta-item strong,
.trust-fact h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.trust-meta-item span,
.trust-fact p {
  margin: 0;
  color: var(--muted);
}

.trust-facts {
  display: grid;
  gap: 14px;
}

.three-equal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contacts-hero .page-hero-grid {
  align-items: stretch;
}

.contact-summary-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-summary-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(0, 66, 103, 0.04);
  border: 1px solid rgba(0, 66, 103, 0.08);
}

.contact-summary-item strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.contact-summary-item p {
  margin: 0;
  color: var(--muted);
}

.contact-page-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.contact-tile {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-links-list {
  display: grid;
  gap: 8px;
}

.contact-links-list a {
  color: var(--link);
  font-weight: 600;
}

.contact-map-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-map-placeholder {
  min-height: 260px;
  padding: 28px;
  display: grid;
  align-content: end;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 66, 103, 0.12), rgba(0, 66, 103, 0.28)),
    radial-gradient(circle at top left, rgba(232, 89, 10, 0.2), transparent 28%),
    linear-gradient(135deg, #dfe7f3, #f6f8fb);
  border: 1px solid rgba(0, 66, 103, 0.1);
}

.contact-map-placeholder strong {
  color: var(--surface-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.contact-map-placeholder span {
  margin-top: 6px;
  color: var(--muted);
}

.footer-cta {
  margin-top: 64px;
  padding: 36px 0;
  background: linear-gradient(135deg, rgba(0, 66, 103, 0.97), rgba(0, 114, 168, 0.94));
}

.footer-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  align-items: start;
}

.footer-cta h2,
.footer-cta p,
.footer-meta,
.footer-meta a {
  color: #fff;
}

.footer-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.footer-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.footer-point {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-point strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.footer-point span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.site-footer {
  padding: 26px 0 40px;
  color: var(--muted);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
}

.floating-cta .button {
  min-height: 54px;
  padding-inline: 20px;
}

.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-chip {
  padding: 10px 16px;
  border: 1px solid rgba(0, 66, 103, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--surface-dark);
  border-color: var(--surface-dark);
  color: #fff;
}

.muted {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .site-header .container {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-open .main-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-contact {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .product-layout,
  .footer-cta .container,
  .subpage-panel,
  .product-grid-layout {
    grid-template-columns: 1fr;
  }

  .cards-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-equal {
    grid-template-columns: 1fr;
  }

  .product-highlights {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .trust-meta {
    grid-template-columns: 1fr;
  }

  .footer-points {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-visual-top {
    display: block;
  }
}

@media (max-width: 760px) {
  .hero,
  .page-hero {
    padding-top: 34px;
  }

  .hero::before,
  .page-hero::before {
    inset: 0;
    border-radius: 0 0 34px 34px;
  }

  .hero-metrics,
  .cards-grid,
  .cards-grid.two,
  .cards-grid.four,
  .gallery-thumbs,
  .trust-strip,
  .trust-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-top > img {
    min-height: 220px;
    height: 220px;
  }

  .hero .visual-card .hero-metrics {
    grid-template-columns: 1fr;
  }

  .topbar .container,
  .site-footer .container {
    flex-direction: column;
  }

  .site-header .container {
    min-height: 70px;
    gap: 12px;
  }

  .brand-title {
    font-size: 0.94rem;
  }

  .brand-subtitle {
    display: none;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .hero-actions,
  .stacked-actions,
  .catalog-controls {
    flex-direction: column;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
  }

  .floating-cta .button {
    width: 100%;
  }

  .production-step {
    grid-template-columns: 1fr;
  }
}

.button {
  color: #ffffff !important;
  background: #E8590A !important;
  border: 1px solid #E8590A !important;
  box-shadow: 0 16px 26px rgba(232, 89, 10, 0.22) !important;
}

.button-ghost {
  color: #E8590A !important;
  background: transparent !important;
  border: 2px solid #E8590A !important;
}

.button-secondary {
  color: #004267 !important;
  background: #ffffff !important;
  border: 1px solid #D0D5DD !important;
}

.button:hover {
  background: #C44D09 !important;
  border-color: #C44D09 !important;
  color: #ffffff !important;
}

.button-ghost:hover {
  background: rgba(232, 89, 10, 0.06) !important;
  color: #E8590A !important;
}

.button-secondary:hover {
  background: #F8FAFC !important;
  color: #004267 !important;
}

.t-body .t-zb-root:first-child {
  padding-top: 78px !important;
}