/* === INDEX (HOME) styles === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --teal: #1AADA0;
  --teal-bright: #1FD1CB;
  --teal-soft: #E8F7F5;
  --teal-line: #B8E6E1;
  --ink: #0F1A26;
  --ink-2: #2D3A4A;
  --gray: #5A6675;
  --gray-2: #8A95A3;
  --line: #E2E8EC;
  --line-soft: #EFF2F4;
  --bg: #FFFFFF;
  --bg-soft: #F5F7F8;
  --bg-dark: #0F1A26;
  --copper: #C77939;
  --copper-light: #E89D5A;
  --brand-grey: #3D3F42;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}

h4 {
  font-size: 17px;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-size: 20px;
}

.logo-mark {
  display: inline-block;
  position: relative;
  width: 134px;
  height: 40px;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  color: var(--ink-2) !important;
  font-weight: 500;
  transition: color .18s ease;
}

.nav a:hover {
  color: var(--teal) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease, transform .18s ease;
}

.header-cta:hover {
  background: var(--teal);
}

.header-cta::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform .18s ease;
}

.header-cta:hover::after {
  transform: translateX(3px);
}

.burger {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: #018682;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(0, 168, 164, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  font-size: 15px;
  transition: color .18s ease, gap .18s ease;
}

.btn-link:hover {
  color: var(--teal);
  gap: 12px;
}

.btn-link::after {
  content: "→";
  font-family: var(--font-mono);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px);
  background-size: calc((100% - 2*var(--pad-x)) / 12) 100%;
  background-position: var(--pad-x) 0;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.hero h1 .accent {
  background: linear-gradient(110deg, var(--teal) 0%, var(--teal-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1200px) {
  .hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    bottom: -2px;
    inset: auto -2px -2px auto;
    width: 60%;
    height: 6px;
    background: var(--teal);
    border-top-left-radius: 4px;
  }
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset: auto -2px -2px auto;
  width: 60%;
  height: 6px;
  background: var(--teal);
  border-top-left-radius: 4px;
}

.hero-stats {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.stat {
  padding: 24px 8px 24px 0;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--teal);
  font-weight: 600;
  margin-left: 3px;
}

.stat-label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}

/* Section base */
section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head h2 {
  margin-bottom: 20px;
}

.section-head p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-2);
  line-height: 1.6;
}

/* Catalog */
.catalog {
  background: var(--bg-soft);
  position: relative;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.model-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.model-card:hover {
  transform: translateY(-4px);
}

.model-card:hover>div {
  border-color: var(--teal-line) !important;
}

.model-svg-wrap {
  background: linear-gradient(180deg, #FAFCFC 0%, #EEF3F4 100%);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.model-svg-wrap svg {
  width: 100%;
  height: 100%;
}

.model-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.model-card h3 {
  margin-bottom: 6px;
}

.model-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.5;
}

.model-specs {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 8px;
}

.spec-row {
  font-size: 13px;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.spec-value {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 500;
}

.catalog-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.catalog-footer .note {
  color: var(--gray);
  font-size: 14px;
}

/* Applications */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.app-card {
  background: #fff;
  padding: 32px 28px;
  transition: background .2s ease;
  position: relative;
}

.app-card:hover {
  background: var(--bg-soft);
}

.app-icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  margin-bottom: 24px;
}

.app-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.app-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
}

.app-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.05em;
}

/* Case */
.case {
  background: var(--bg-soft);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.case-content h2 {
  margin-bottom: 20px;
}

.case-lead {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.6;
}

.case-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.case-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.case-point-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  border: 1px solid var(--teal-line);
  background: var(--teal-soft);
  padding: 6px 8px;
  border-radius: 6px;
  text-align: center;
  line-height: 1;
  align-self: start;
}

.case-point-body strong {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 15px;
}

.case-point-body span {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
}

.case-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -24px rgba(15, 26, 38, 0.25);
  position: relative;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(15, 26, 38, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Compatibility */
.compat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.compat-content h2 {
  margin-bottom: 20px;
}

.compat-content p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.compat-cta {
  background: var(--ink);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.compat-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.compat-cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}

.compat-cta h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.3;
  position: relative;
}

.compat-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  margin-bottom: 24px;
  position: relative;
}

.compat-cta .btn-primary {
  align-self: flex-start;
  position: relative;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal-bright);
  margin-top: 16px;
  position: relative;
}

.free-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(31, 209, 203, 0.2);
}

/* Coatings + audience */
.coatings {
  background: var(--bg-soft);
}

.coatings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.coating-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.coating-card:hover {
  border-color: var(--teal-line);
  transform: translateY(-3px);
}

.coating-rank {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-2);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.coating-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
  line-height: 1.25;
}

.coating-code {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  margin-bottom: 18px;
}

.coating-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.coating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-bright) 100%);
  border-radius: 2px;
}

.coating-swaat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.coating-swaat strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.coating-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

.audience {
  margin-top: clamp(64px, 7vw, 96px);
}

.audience-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.audience-head h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  max-width: 600px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  transition: border-color .2s, transform .2s;
  position: relative;
}

.audience-card:hover {
  border-color: var(--teal-line);
  transform: translateY(-3px);
}

.audience-icon {
  width: 36px;
  height: 36px;
  color: var(--teal);
  margin-bottom: 18px;
}

.audience-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.audience-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  counter-reset: step;
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  position: relative;
  transition: border-color .2s, transform .2s;
}

.step-card:hover {
  border-color: var(--teal-line);
  transform: translateY(-3px);
}

.step-num {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.step-num strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.step-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
}

/* Quality block */
.quality {
  margin-top: clamp(48px, 6vw, 80px);
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}

.quality::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
}

.quality-head {
  max-width: 580px;
  margin-bottom: 40px;
  position: relative;
}

.quality-head .section-eyebrow {
  color: var(--teal-bright);
}

.quality-head h3 {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 12px;
}

.quality-head p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.q-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.q-stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}

.q-stat-num small {
  font-size: 0.5em;
  color: var(--teal-bright);
  font-weight: 500;
  margin-left: 4px;
}

.q-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 12px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.faq-aside h2 {
  margin-bottom: 16px;
}

.faq-aside p {
  color: var(--gray);
  font-size: 15px;
}

.faq-aside .btn-link {
  margin-top: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  transition: color .2s ease;
  letter-spacing: -0.01em;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  color: var(--ink);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-toggle::before {
  width: 12px;
  height: 1.6px;
}

.faq-toggle::after {
  width: 1.6px;
  height: 12px;
  transition: transform .25s ease;
}

.faq-toggle {
  position: relative;
}

.faq-item.open .faq-toggle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-a>div {
  overflow: hidden;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-content {
  padding: 0 0 24px 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 760px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(56px, 6vw, 88px) 0 32px;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all .2s ease;
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin: 0 0 18px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  transition: color .18s ease;
}

.footer-col a:hover {
  color: var(--teal-bright) !important;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.footer-col p strong {
  color: #fff;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--teal-bright) !important;
}

.footer-requisites {
  grid-column: 1 / -1;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    aspect-ratio: 16/10;
    max-height: 480px;
  }

  .model-grid {
    grid-template-columns: 1fr 1fr;
  }

  .applications-grid {
    grid-template-columns: 1fr 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .compat-grid {
    grid-template-columns: 1fr;
  }

  .coatings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .header-cta span {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .model-grid {
    grid-template-columns: 1fr;
  }

  .applications-grid {
    grid-template-columns: 1fr;
  }

  .coatings-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}

/* Subtle reveal on load */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content>* {
  animation: fadeUp 0.7s ease both;
}

.hero-content>*:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-content>*:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-content>*:nth-child(3) {
  animation-delay: 0.25s;
}

.hero-content>*:nth-child(4) {
  animation-delay: 0.35s;
}

.hero-image {
  animation: fadeUp 0.9s ease 0.2s both;
}


/* === ABOUT styles (hero classes renamed to .ahero*) === */

:root {
  --teal: #1AADA0;
  --teal-bright: #1FD1CB;
  --teal-soft: #E8F7F5;
  --teal-line: #B8E6E1;
  --ink: #0F1A26;
  --ink-2: #2D3A4A;
  --gray: #5A6675;
  --gray-2: #8A95A3;
  --line: #E2E8EC;
  --line-soft: #EFF2F4;
  --bg: #FFFFFF;
  --bg-soft: #F5F7F8;
  --bg-cream: #FAF8F4;
  --bg-dark: #0F1A26;
  --brand-grey: #3D3F42;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1240px;
  --container-narrow: 760px;
  --pad-x: clamp(20px, 4vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

h3 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
}

.logo-mark {
  display: inline-block;
  width: 134px;
  height: 40px;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  color: var(--ink-2) !important;
  font-weight: 500;
  transition: color .18s ease;
}

.nav a:hover {
  color: var(--teal) !important;
}

.nav a.active {
  color: var(--teal) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease, transform .18s ease;
}

.header-cta:hover {
  background: var(--teal);
}

.header-cta::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform .18s ease;
}

.header-cta:hover::after {
  transform: translateX(3px);
}

.burger {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: #018682;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(0, 168, 164, 0.6);
}

.btn-primary::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform .18s ease;
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.breadcrumbs a {
  color: var(--gray) !important;
  transition: color .18s;
}

.breadcrumbs a:hover {
  color: var(--teal) !important;
}

.breadcrumbs span.sep {
  margin: 0 8px;
  color: var(--gray-2);
}

.breadcrumbs span.current {
  color: var(--ink);
}

/* ===== HERO ===== */
.ahero {
  position: relative;
  padding: clamp(36px, 5vw, 64px) 0 clamp(44px, 6vw, 80px);
  overflow: hidden;
}

.ahero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.ahero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #f0f3f4 0%, #d8dee2 100%);
  box-shadow: 0 32px 72px -36px rgba(15, 26, 38, 0.32);
}

.ahero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.ahero-portrait .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 28px;
  color: #fff;
  background: linear-gradient(0deg, rgba(15, 26, 38, 0.85) 0%, rgba(15, 26, 38, 0) 100%);
}

.ahero-portrait .caption .name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.ahero-portrait .caption .role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 5px;
}

.ahero-portrait::after {
  content: "";
  position: absolute;
  inset: auto -2px -2px auto;
  width: 56%;
  height: 6px;
  background: var(--teal);
  border-top-left-radius: 4px;
}

.ahero-content {
  max-width: 560px;
}

.ahero-content h1 {
  margin: 18px 0 22px;
}

.ahero-content h1 .accent {
  background: linear-gradient(110deg, var(--teal) 0%, var(--teal-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ahero-content p.lead {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ===== ARTICLE ===== */
.article {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-cream);
  position: relative;
}

.article-head {
  margin-bottom: 40px;
}

.article-head .eyebrow {
  margin-bottom: 18px;
}

.article-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  max-width: 660px;
  line-height: 1.15;
}

.article-body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-2);
}

.article-body p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 22px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body p strong {
  color: var(--ink);
  font-weight: 600;
}

.article-body>p:first-of-type::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 64px;
  line-height: 0.9;
  font-weight: 700;
  color: var(--teal);
  margin: 6px 12px 0 0;
  letter-spacing: -0.04em;
}

.pullquote {
  margin: 44px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.pullquote-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.85vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  margin: 0 auto 18px;
  max-width: 620px;
}

.pullquote-text::before {
  content: "« ";
  color: var(--teal);
  font-style: normal;
}

.pullquote-text::after {
  content: " »";
  color: var(--teal);
  font-style: normal;
}

.pullquote-author {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
}

.pullquote-author small {
  display: inline;
  margin-left: 8px;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

/* ===== PRINCIPLES — text rows, no cards ===== */
.principles {
  padding: clamp(56px, 7vw, 96px) 0;
}

.principles-head {
  margin-bottom: 44px;
}

.principles-head .eyebrow {
  margin-bottom: 16px;
}

.principles-head h2 {
  max-width: 640px;
}

.principles-list {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.principle-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.08em;
  font-weight: 500;
  padding-top: 4px;
}

.principle-body h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.principle-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 720px;
}

/* ===== CLIENTS — simple list ===== */
.clients {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-soft);
}

.clients-head {
  margin-bottom: 36px;
}

.clients-head .eyebrow {
  margin-bottom: 16px;
}

.clients-head h2 {
  max-width: 640px;
  margin-bottom: 18px;
}

.clients-head p {
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 720px;
  color: var(--ink-2);
}

.clients-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.client-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
}

.client-row .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-2);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.client-row .text {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}

.client-row .text small {
  display: block;
  font-weight: 400;
  color: var(--gray);
  font-size: 14px;
  margin-top: 4px;
}

/* ===== CLOSING ===== */
.closing {
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
  background: var(--bg);
  position: relative;
}

.closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--teal);
}

.closing .eyebrow {
  margin-bottom: 18px;
  color: var(--teal);
}

.closing .eyebrow::before {
  display: none;
}

.closing h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.closing p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
}

.closing-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.closing-actions small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-2);
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(56px, 6vw, 88px) 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all .2s ease;
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin: 0 0 18px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  transition: color .18s ease;
}

.footer-col a:hover {
  color: var(--teal-bright) !important;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.footer-col p strong {
  color: #fff;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--teal-bright) !important;
}

.footer-requisites {
  grid-column: 1 / -1;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .ahero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ahero-portrait {
    aspect-ratio: 16/12;
    max-height: 480px;
  }

  .ahero-portrait img {
    object-position: center 16%;
  }

  .principle {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-cta span {
    display: none;
  }

  .article-body {
    font-size: 17px;
  }

  .article-body>p:first-of-type::first-letter {
    font-size: 52px;
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .principle-num {
    padding-top: 0;
  }

  .client-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ahero-content>* {
  animation: fadeUp 0.7s ease both;
}

.ahero-content>*:nth-child(1) {
  animation-delay: 0.05s;
}

.ahero-content>*:nth-child(2) {
  animation-delay: 0.15s;
}

.ahero-content>*:nth-child(3) {
  animation-delay: 0.25s;
}

.ahero-content>*:nth-child(4) {
  animation-delay: 0.35s;
}

.ahero-portrait {
  animation: fadeUp 0.9s ease 0.2s both;
}


/* === CASES styles === */

:root {
  --teal: #1AADA0;
  --teal-bright: #1FD1CB;
  --teal-soft: #E8F7F5;
  --teal-line: #B8E6E1;
  --ink: #0F1A26;
  --ink-2: #2D3A4A;
  --gray: #5A6675;
  --gray-2: #8A95A3;
  --line: #E2E8EC;
  --line-soft: #EFF2F4;
  --bg: #FFFFFF;
  --bg-soft: #F5F7F8;
  --bg-dark: #0F1A26;
  --brand-grey: #3D3F42;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1240px;
  --container-narrow: 820px;
  --pad-x: clamp(20px, 4vw, 64px);
  --radius: 14px;
  --radius-sm: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.18;
}

h3 {
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal);
}

/* ===== Header (consistent with brand) ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
}

.logo-mark {
  display: inline-block;
  width: 134px;
  height: 40px;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  color: var(--ink-2) !important;
  font-weight: 500;
  transition: color .18s ease;
}

.nav a:hover {
  color: var(--teal) !important;
}

.nav a.active {
  color: var(--teal) !important;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease;
}

.header-cta:hover {
  background: var(--teal);
}

.header-cta::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform .18s ease;
}

.header-cta:hover::after {
  transform: translateX(3px);
}

.burger {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid transparent;
  transition: all .2s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: #018682;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(0, 168, 164, 0.6);
}

.btn-primary::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform .18s ease;
}

.btn-primary:hover::after {
  transform: translateX(3px);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 22px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.breadcrumbs a {
  color: var(--gray) !important;
  transition: color .18s;
}

.breadcrumbs a:hover {
  color: var(--teal) !important;
}

.breadcrumbs span.sep {
  margin: 0 8px;
  color: var(--gray-2);
}

.breadcrumbs span.current {
  color: var(--ink);
}

/* ===== Hero (case cover) ===== */
.case-hero {
  padding: clamp(28px, 4vw, 48px) 0 0;
}

.case-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.case-hero-meta .pill {
  background: var(--teal-soft);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.case-hero h1 {
  margin-bottom: 22px;
  max-width: 1000px;
}

.case-hero h1 .accent {
  background: linear-gradient(110deg, var(--teal) 0%, var(--teal-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.case-hero p.lead {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 760px;
}

/* Hero banner photo (full-bleed within container) */
.case-banner {
  margin-top: clamp(20px, 3vw, 36px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  position: relative;
  box-shadow: 0 32px 64px -36px rgba(15, 26, 38, 0.32);
}

.case-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-banner figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 28px;
  background: linear-gradient(0deg, rgba(15, 26, 38, 0.85) 0%, rgba(15, 26, 38, 0) 100%);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.case-banner figcaption strong {
  color: var(--teal-bright);
  font-weight: 500;
}

/* Facts strip */
.case-facts {
  margin-top: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 24px 16px 24px 0;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fact-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.fact-value small {
  display: block;
  font-weight: 400;
  color: var(--gray);
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== Chapter sections ===== */
.chapter {
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--line-soft);
}

.chapter:nth-of-type(even) {
  background: var(--bg-soft);
}

.chapter-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 36px;
}

.chapter-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-top: 8px;
}

.chapter-head h2 {
  max-width: 760px;
}

/* Chapter content layouts */
.ch-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.ch-cols.text-right {
  grid-template-columns: 1fr 1fr;
}

.ch-cols-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.ch-cols-text p:last-child {
  margin-bottom: 0;
}

.ch-cols-text p strong {
  color: var(--ink);
  font-weight: 600;
}

/* Single column text */
.ch-text {
  max-width: 720px;
}

.ch-text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 18px;
}

.ch-text p:last-child {
  margin-bottom: 0;
}

.ch-text p strong {
  color: var(--ink);
  font-weight: 600;
}

/* Photo figures */
figure.photo {
  margin: 0;
}

figure.photo .frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--line-soft);
  aspect-ratio: 4/3;
  position: relative;
}

figure.photo.portrait .frame {
  aspect-ratio: 3/4;
}

figure.photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure.photo figcaption {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
  font-family: var(--font-body);
}

figure.photo figcaption .num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.06em;
  font-weight: 500;
  background: var(--teal-soft);
  padding: 3px 7px;
  border-radius: 4px;
}

/* Pullquote (case-style) */
.ch-pullquote {
  margin: 36px 0 0;
  padding: 36px 40px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  max-width: 780px;
}

.ch-pullquote::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.32;
}

.ch-pullquote .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 16px;
  position: relative;
}

.ch-pullquote .body {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
}

.ch-pullquote .body strong {
  color: #fff;
}

/* Photo grid for chapter 4 */
.photo-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Full-bleed photo (within container, but big) */
.full-photo {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 var(--pad-x);
}

.full-photo .frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--line-soft);
}

.full-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-photo figcaption {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-body);
  max-width: 760px;
}

.full-photo figcaption .num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.06em;
  font-weight: 500;
  background: var(--teal-soft);
  padding: 3px 7px;
  border-radius: 4px;
}

/* Tech specs box */
.specs {
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.specs-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 18px;
}

.specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.spec-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.spec-item .k {
  font-size: 14px;
  color: var(--gray);
}

.spec-item .v {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

/* ===== Closing ===== */
.closing {
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--line-soft);
}

.closing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--teal);
}

.closing .eyebrow {
  margin-bottom: 18px;
  color: var(--teal);
}

.closing .eyebrow::before {
  display: none;
}

.closing h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.2;
}

.closing p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
}

.closing-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.closing-actions small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-2);
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(56px, 6vw, 88px) 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all .2s ease;
}

.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin: 0 0 18px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  transition: color .18s ease;
}

.footer-col a:hover {
  color: var(--teal-bright) !important;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.footer-col p strong {
  color: #fff;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-left: 24px;
}

.footer-bottom a:hover {
  color: var(--teal-bright) !important;
}

.footer-requisites {
  grid-column: 1 / -1;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .case-banner {
    aspect-ratio: 4/3;
  }

  .case-facts {
    grid-template-columns: 1fr 1fr;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(1),
  .fact:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .ch-cols {
    grid-template-columns: 1fr;
  }

  .ch-cols .ch-cols-text {
    order: 1;
  }

  .ch-cols figure.photo {
    order: 2;
  }

  .photo-grid-2 {
    grid-template-columns: 1fr;
  }

  .specs-list {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-cta span {
    display: none;
  }

  .case-hero h1 {
    font-size: 28px;
  }

  .case-banner {
    aspect-ratio: 3/4;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .chapter-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chapter-num {
    padding-top: 0;
  }

  .ch-pullquote {
    padding: 28px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-hero>.container>* {
  animation: fadeUp 0.7s ease both;
}

.case-banner {
  animation: fadeUp 0.9s ease 0.2s both;
}


/* === CATALOG styles === */

/* ===== Catalog page ===== */
.cat-hero {
  padding: clamp(28px, 4vw, 56px) 0 clamp(36px, 4vw, 60px);
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
}

.cat-hero .eyebrow {
  margin-bottom: 16px;
}

.cat-hero h1 {
  margin-bottom: 18px;
  max-width: 1000px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cat-hero h1 .accent {
  background: linear-gradient(110deg, var(--teal) 0%, var(--teal-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cat-hero p.lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cat-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cat-stat {
  padding: 18px 16px 18px 0;
  border-right: 1px solid var(--line);
}

.cat-stat:last-child {
  border-right: 0;
  padding-right: 0;
}

.cat-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.1;
}

.cat-stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ===== Filter bar ===== */
.cat-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 16px;
}

.filter-row {
  display: flex;
  gap: 14px;
  align-items: end;
  flex-wrap: wrap;
}

.filter-search {
  flex: 1 1 260px;
  min-width: 220px;
  position: relative;
}

.filter-search input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  transition: all .15s;
}

.filter-search input:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 174, 163, 0.12);
}

.filter-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-2);
  pointer-events: none;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group>label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-weight: 500;
}

.filter-group select {
  height: 42px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  background-image: url("data:image/svg+xml;utf8,");
  background-repeat: no-repeat;
  background-position: right 14px center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s;
}

.filter-group select:hover {
  border-color: var(--gray-2);
}

.filter-group select:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 174, 163, 0.12);
}

.filter-chips {
  display: flex;
  gap: 6px;
}

.chip {
  padding: 0 14px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s;
}

.chip:hover {
  border-color: var(--gray-2);
}

.chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.filter-reset {
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}

.filter-reset:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-meta {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ===== Product grid ===== */
.cat-grid-section {
  padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 72px);
  background: var(--bg);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-stats {
    grid-template-columns: 1fr 1fr;
  }

  .cat-stat:nth-child(2) {
    border-right: 0;
  }

  .cat-stat:nth-child(1),
  .cat-stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cat-stats {
    grid-template-columns: 1fr;
  }

  .cat-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cat-stat:last-child {
    border-bottom: 0;
  }
}

.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .22s ease;
  cursor: pointer;
  position: relative;
}

.cat-card:hover {
  border-color: var(--teal-line);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -22px rgba(15, 26, 38, 0.18);
}

.cat-card-illus {
  background: linear-gradient(180deg, #FAFBFC 0%, #F0F3F4 100%);
  border-radius: 8px;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-soft);
}

.cat-card-illus svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cat-card-illus .label {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--gray-2);
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 7px;
  border-radius: 4px;
}

.cat-card-article {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.cat-card h3 {
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.cat-card-power {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 600;
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 6px;
  width: fit-content;
}

.cat-card-power small {
  font-weight: 400;
  color: var(--ink-2);
  margin-left: 2px;
}

.cat-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.cat-card-spec {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cat-card-spec label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
}

.cat-card-spec b {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.cat-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  margin-top: 4px;
}

.cat-card-cta .more {
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal);
  cursor: pointer;
  padding: 0;
}

.cat-card-cta .more::after {
  content: " →";
  transition: transform .15s;
  display: inline-block;
}

.cat-card:hover .more::after {
  transform: translateX(3px);
}

.cat-card-cta .hint {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 0.04em;
}

/* ===== Empty state ===== */
.cat-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.cat-empty p {
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--ink-2);
}

/* ===== Custom production callout ===== */
.cat-custom {
  padding: clamp(40px, 5vw, 76px) 0 clamp(56px, 6vw, 96px);
  background: var(--bg);
}

.cat-custom-card {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cat-custom-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.32;
  pointer-events: none;
}

.cat-custom-text {
  position: relative;
  z-index: 1;
}

.cat-custom-text .eyebrow {
  color: var(--teal-bright);
  margin-bottom: 14px;
}

.cat-custom-text .eyebrow::before {
  background: var(--teal-bright);
}

.cat-custom-text h2 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 700;
}

.cat-custom-text p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  font-size: 14.5px;
  line-height: 1.6;
}

.cat-custom-card .btn-primary {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cat-custom-card {
    grid-template-columns: 1fr;
  }
}

/* ===== Modal ===== */
.cat-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.cat-modal[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.cat-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 38, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  animation: fadeIn .18s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cat-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 880px;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  box-shadow: 0 32px 72px -20px rgba(15, 26, 38, 0.4);
  animation: slideUp .25s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cat-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(15, 26, 38, 0.06);
  color: var(--ink-2);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  z-index: 2;
  font-family: var(--font-body);
  padding-bottom: 2px;
}

.cat-modal-close:hover {
  background: var(--ink);
  color: #fff;
}

.modal-hero {
  padding: 32px 36px 24px;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
}

.modal-hero .article {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-hero h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 600px;
  letter-spacing: -0.01em;
}

.modal-hero .modal-power-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 7px 13px;
  border-radius: 8px;
}

.modal-body {
  padding: 28px 36px 32px;
}

.modal-body h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  margin: 26px 0 12px;
}

.modal-body h4:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.modal-spec {
  padding: 11px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  align-items: baseline;
}

.modal-spec:nth-last-child(-n+2) {
  border-bottom: 0;
}

.modal-spec:nth-child(2n) {
  border-left: 1px solid var(--line);
}

.modal-spec .k {
  color: var(--gray);
}

.modal-spec .v {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.modal-table-wrap {
  overflow-x: auto;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.modal-table th {
  background: var(--bg-soft);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.modal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  color: var(--ink);
  white-space: nowrap;
}

.modal-table tr:last-child td {
  border-bottom: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  flex-wrap: wrap;
}

.modal-actions .btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
}

.modal-actions .btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

/* Modal images (drawing + aero graph) */
.modal-figure {
  margin: 14px 0 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.modal-figure img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.modal-figure figcaption {
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--gray);
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

@media (max-width: 700px) {
  .cat-modal {
    padding: 0;
  }

  .cat-modal-panel {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
  }

  .modal-hero {
    padding: 22px 20px 18px;
    border-radius: 0;
  }

  .modal-hero h2 {
    font-size: 19px;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-specs {
    grid-template-columns: 1fr;
  }

  .modal-spec:nth-child(2n) {
    border-left: 0;
  }

  .modal-spec {
    border-bottom: 1px solid var(--line) !important;
  }

  .modal-spec:last-child {
    border-bottom: 0 !important;
  }

  .modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .modal-actions .btn {
    width: 100%;
  }
}


/* === Prototype routing helpers === */

/* ===== Prototype routing ===== */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* ===== Compact footer override ===== */
.site-footer {
  padding: 36px 0 18px;
}

.footer-top.footer-compact {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 0;
}

.footer-top.footer-compact .footer-brand .logo-mark {
  width: 110px;
  height: 32px;
}

.footer-top.footer-compact .footer-brand .tagline {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  margin: 14px 0 16px;
}

.footer-top.footer-compact .footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

.footer-top.footer-compact .social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all .18s ease;
}

.footer-top.footer-compact .social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.footer-nav,
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav h5,
.footer-contacts h5 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin: 0 0 12px 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13.5px;
  text-decoration: none;
  transition: color .18s;
}

.footer-nav a:hover {
  color: var(--teal-bright) !important;
}

.footer-contacts a,
.footer-contacts p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  transition: color .18s;
}

.footer-contacts a:hover {
  color: var(--teal-bright) !important;
}

.footer-contacts .footer-phone {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}

.footer-contacts .footer-mail {
  font-size: 13.5px;
}

.footer-contacts .footer-addr {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  line-height: 1.5;
}

.footer-contacts .footer-hours {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-compact {
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-compact .footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom-compact a {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px;
  text-decoration: none;
  transition: color .18s;
}

.footer-bottom-compact a:hover {
  color: var(--teal-bright);
}

@media (max-width: 768px) {
  .footer-top.footer-compact {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-compact .footer-legal {
    flex-direction: column;
    gap: 6px;
  }
}



/* === Multipage prototype additions === */
.page {
  display: block !important;
}

.main-nav a.is-active {
  color: var(--teal) !important;
}

.cat-card {
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}

.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 26, 38, 0.08);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 640px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 9999;
    background: var(--teal);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(26, 173, 160, 0.35);
    font-family: var(--font-body);
  }

  body {
    padding-bottom: 80px;
  }
}

.breadcrumbs {
  font-size: 13px;
  color: var(--gray);
  padding: 16px 0 8px;
  font-family: var(--font-body);
}

.breadcrumbs a {
  color: var(--gray) !important;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--teal) !important;
}

.breadcrumbs span {
  color: var(--ink);
}

.ref-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: -24px;
  flex-wrap: wrap;
}

.ref-tab {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-2);
  transition: all 0.15s;
}

.ref-tab.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.ref-table-wrap {
  display: none;
}

.ref-table-wrap.active {
  display: block;
}

.perf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.perf-table th {
  background: var(--bg-soft);
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.perf-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-soft);
}

.perf-table tr:hover td {
  background: var(--teal-soft);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin: 0 0 8px;
  font-weight: 600;
}

.contact-card a,
.contact-card p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--ink) !important;
  text-decoration: none;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.contact-card a:hover {
  color: var(--teal) !important;
}

.simple-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-form input,
.simple-form textarea,
.simple-form select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.simple-form input:focus,
.simple-form textarea:focus,
.simple-form select:focus {
  outline: none;
  border-color: var(--teal);
}

.simple-form textarea {
  min-height: 100px;
  resize: vertical;
}

.simple-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 640px) {
  .simple-form .form-row {
    grid-template-columns: 1fr;
  }
}

.simple-form label.checkbox {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  align-items: flex-start;
  line-height: 1.5;
}

.simple-form label.checkbox input {
  width: auto;
  padding: 0;
  margin-top: 3px;
}

.simple-form button {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.simple-form button:hover {
  background: #169990;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  margin-bottom: 12px;
}

/* Простые карточки моделей в каталоге */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.model-card {
  transition: all 0.18s;
}

.model-card:hover {
  transform: translateY(-2px);
}

.model-card:hover>div {
  border-color: var(--teal-line) !important;
}

.model-card .model-img {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-card .model-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.model-card .model-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 4px;
}

.model-card .model-power {
  color: var(--teal);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.model-card .model-params {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.model-card .model-params span {
  color: var(--ink-2);
  font-weight: 500;
}

/* Catalog filters */
.catalog-filters {
  background: var(--bg-soft);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.catalog-filters .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.catalog-filters label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-family: var(--font-body);
}

.catalog-filters select {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 160px;
  color: var(--ink);
}

.catalog-filters .filter-count {
  margin-left: auto;
  font-family: var(--font-body);
  color: var(--gray);
  font-size: 14px;
  align-self: center;
}

.catalog-filters .reset-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
}

.catalog-filters .reset-btn:hover {
  background: var(--bg-soft);
  border-color: var(--gray-2);
}


/* === Multipage extras: для страниц which prototype3 не покрывает === */
.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 14px;
  line-height: 1.18;
}

.page-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 800px;
  margin: 0 0 24px;
}

.catalog-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0 32px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .catalog-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .catalog-stats-strip {
    grid-template-columns: 1fr;
  }
}

.model-card .model-badge {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 8px 0 4px;
  font-weight: 500;
}

/* Product page */
.product-hero {
  padding: 12px 0 24px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.product-hero-image {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.product-hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-badge {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 12px;
}

.product-h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin: 0 0 10px;
  color: var(--ink);
}

.product-power {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 14px;
}

.product-lead {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 18px;
}

.product-cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.product-quick-params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-family: var(--font-body);
}

@media (max-width: 560px) {
  .product-quick-params {
    grid-template-columns: 1fr;
  }
}

.product-quick-params>div {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.product-quick-params span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 4px;
}

.product-block {
  padding: 28px 0;
}

.product-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.product-block .block-lead {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.55;
  max-width: 760px;
}

.aero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 900px) {
  .aero-grid {
    grid-template-columns: 1fr;
  }
}

.aero-image {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.aero-image img {
  max-width: 100%;
}

.product-cta-final {
  background: var(--teal-soft);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 32px;
}

.product-cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}

.product-cta-final p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Case page */
.case-page-hero {
  padding: 12px 0 4px;
}

.case-page-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 8px;
}

.case-page-h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 820px;
  margin: 0 0 14px;
}

.case-page-lead {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 0 24px;
}

.case-hero-image {
  margin: 8px 0 28px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
}

.case-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: contain;
  background: var(--bg-soft);
}

.case-hero-image .case-image-caption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  margin: 12px 0 0;
  text-align: center;
}

.case-image-caption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  margin: 12px 0 0;
  text-align: center;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border-radius: 14px;
}

@media (max-width: 768px) {
  .case-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .case-stats {
    grid-template-columns: 1fr;
  }
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.case-stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}

.case-step {
  padding: 20px 0 24px;
  border-top: 1px solid var(--line-soft);
}

.case-step-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 12px;
}

.case-step h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  max-width: 820px;
}

.case-step p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 820px;
}

.case-list {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  padding-left: 20px;
  margin: 0 0 16px;
  max-width: 880px;
}

.case-list li {
  margin-bottom: 12px;
}

.case-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0 8px;
  max-width: 820px;
}

@media (max-width: 600px) {
  .case-image-row {
    grid-template-columns: 1fr;
  }
}

.case-image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 16/10;
}

.case-final-cta {
  background: var(--teal-soft);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  margin: 28px 0;
}

.case-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--ink);
}

.case-final-cta p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* About page */
.about-hero {
  padding: 16px 0 32px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
  max-height: 480px;
  display: flex;
  align-items: stretch;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

@media (max-width: 900px) {
  .about-hero-image {
    max-height: 380px;
  }

  .about-hero-image img {
    max-height: 380px;
  }
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .principles-grid {
    grid-template-columns: 1fr;
  }
}

.principle-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.principle-num {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 16px;
}

.principle-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 16px;
}

.principle-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* Contacts page */
.contacts-page-hero {
  padding: 12px 0 24px;
}

/* Catalog grid override */
.catalog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 24px;
}

@media (max-width: 900px) {
  .catalog-teaser-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-teaser-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin: 0 0 24px;
}

/* Final CTA buttons */
.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}


/* ============================================
   Fallback / missing styles для multipage
   ============================================ */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: 72px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2) !important;
  text-decoration: none;
  transition: color 0.15s;
}

.main-nav a:hover {
  color: var(--teal) !important;
}

.main-nav a.is-active {
  color: var(--teal) !important;
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
    box-shadow: 0 10px 30px rgba(15, 26, 38, 0.08);
  }

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

  .burger {
    display: flex;
  }

  .header-cta {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #fff !important;
}

.btn-primary:hover {
  background: #169990;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 173, 160, 0.30);
}

.btn-secondary {
  background: #fff;
  color: var(--ink) !important;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
}

/* Hero */
.hero-section {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 560px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Stat item */
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 880px;
}

.section-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 760px;
}

/* App cards (7 applications) */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .app-grid {
    grid-template-columns: 1fr;
  }
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.18s;
}

.app-card:hover {
  border-color: var(--teal-line);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 26, 38, 0.06);
}

.app-num {
  position: static;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0;
}

.app-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.app-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Case section */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.case-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
}

.case-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: auto;
  display: block;
}

.case-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 26, 38, 0.85);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Compat CTA box */
.compat-cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, #169990 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-top: 32px;
}

.compat-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin: 0 0 12px;
  font-weight: 600;
}

.compat-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}

.compat-cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 0 24px;
  max-width: 700px;
}

.compat-cta-box .btn-primary {
  background: #fff;
  color: var(--teal);
}

.compat-cta-box .btn-primary:hover {
  background: var(--bg-soft);
  color: #169990;
}

.compat-cta-microcopy {
  font-family: var(--font-body);
  font-size: 13px;
  opacity: 0.85;
  margin: 12px 0 0;
}

/* Coatings grid */
.coatings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .coatings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .coatings-grid {
    grid-template-columns: 1fr;
  }
}

.coating-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}

.coating-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 8px;
}

.coating-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}

.coating-spec {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  margin: 0 0 8px;
}

.coating-swaat {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 12px;
}

.coating-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Segments */
.seg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .seg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .seg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .seg-grid {
    grid-template-columns: 1fr;
  }
}

.seg-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.seg-num {
  position: static;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 8px;
  display: block;
  letter-spacing: 0;
}

.seg-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.seg-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.step-num {
  position: static;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.step-label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.step-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Quality cards */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }
}

.qual-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 28px 24px;
}

.qual-num {
  position: static;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}

.qual-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.qual-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* FAQ */
.faq-list {
  margin: 24px 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  gap: 16px;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}

.faq-toggle::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
  transition: opacity 0.2s;
}

.faq-item.open .faq-toggle::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 1000px;
  padding-bottom: 20px;
}

.faq-a p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: 880px;
}

.faq-a p strong {
  color: var(--ink);
}

.faq-footer-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray);
  text-align: center;
  margin-top: 24px;
}

.faq-footer-text a {
  color: var(--teal) !important;
  text-decoration: none;
  font-weight: 600;
}

.faq-footer-text a:hover {
  text-decoration: underline;
}

/* Custom + Final CTA sections */
.section-custom,
.section-final-cta {
  text-align: center;
}

.section-custom .section-title,
.section-final-cta .section-title {
  max-width: 800px;
  margin: 0 auto 16px;
}

.section-custom .section-lead,
.section-final-cta .section-lead {
  max-width: 700px;
  margin: 0 auto 24px;
}

.final-cta-microcopy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray);
  margin-top: 12px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand img {
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-nav-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-nav-col a,
.footer-contact-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-nav-col a:hover,
.footer-contact-col a:hover {
  color: var(--teal) !important;
}

.footer-contact-col p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 12px 0 0;
}

.footer-hours {
  margin-top: 8px !important;
}

.footer-bottom-compact {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-requisites {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--teal) !important;
  text-decoration: underline;
}

/* Basic reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   PDF download link
   ============================================ */
.btn-link-pdf {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2) !important;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px dashed var(--line);
  transition: all 0.18s;
  line-height: 1.3;
  background: #fff;
}

.btn-link-pdf:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  border-style: solid;
}

.btn-link-pdf .pdf-icon {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.catalog-actions-bar {
  display: flex;
  justify-content: flex-end;
  margin: 16px 0;
}

@media (max-width: 700px) {
  .catalog-actions-bar {
    justify-content: stretch;
  }

  .catalog-actions-bar .btn-link-pdf {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   Modal "Запросить КП"
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 26, 38, 0.55);
  z-index: 10000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-dialog {
  background: #fff;
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 30px 80px rgba(15, 26, 38, 0.25);
  position: relative;
  animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--bg-soft);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-2);
  transition: background 0.15s;
}

.modal-close:hover {
  background: var(--line);
  color: var(--ink);
}

.modal-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 8px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.modal-lead {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
  margin: 0 0 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 560px) {
  .modal-form .form-row-2 {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    padding: 24px;
    margin: 16px 0;
  }

  .modal-title {
    font-size: 20px;
  }
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  font-weight: 600;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 173, 160, 0.12);
}

.modal-form textarea {
  min-height: 80px;
  resize: vertical;
}

.modal-form .modal-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--teal-soft);
  border-radius: 10px;
  margin-bottom: 8px;
}

.modal-form .modal-product-row img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.modal-form .modal-product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.modal-form .modal-product-power {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-2);
}

.modal-consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

.modal-consent input {
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-consent a {
  color: var(--teal) !important;
  text-decoration: none;
}

.modal-consent a:hover {
  text-decoration: underline;
}

.modal-submit {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.18s;
}

.modal-submit:hover {
  background: #169990;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26, 173, 160, 0.30);
}

.modal-microcopy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin: 4px 0 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

body.modal-open {
  overflow: hidden;
}

/* ============================================
   Лайтбокс — увеличенный просмотр чертежей
   ============================================ */
.zoomable {
  cursor: zoom-in;
  transition: opacity 0.18s;
}

.zoomable:hover {
  opacity: 0.85;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 38, 0.92);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: lightboxIn 0.2s ease-out;
}

.lightbox-overlay.is-open {
  display: flex;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
  display: block;
}

.lightbox-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 13px;
  background: rgba(15, 26, 38, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  pointer-events: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  backdrop-filter: blur(4px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
  .lightbox-overlay {
    padding: 20px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .lightbox-caption {
    font-size: 12px;
    bottom: 12px;
  }
}

/* === Подсказка "Увеличить" для кликабельных изображений === */
.product-hero-image,
.aero-image {
  position: relative;
  cursor: zoom-in;
}

.zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 26, 38, 0.78);
  color: #fff;
  padding: 7px 11px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  letter-spacing: 0;
}

.zoom-hint svg {
  width: 14px;
  height: 14px;
}

.product-hero-image:hover .zoom-hint,
.aero-image:hover .zoom-hint {
  opacity: 1;
}

/* На мобильном — всегда показываем подсказку (нет hover) */
@media (hover: none) {
  .zoom-hint {
    opacity: 1;
  }
}

/* === CTA "Подробнее" внутри карточки модели === */
.model-card {
  display: flex !important;
  flex-direction: column;
  position: relative;
}

.model-card .model-params {
  flex: 1;
}

.model-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--teal);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: gap 0.18s, color 0.18s;
}

.model-card:hover .model-card-cta {
  color: #169990;
  gap: 10px;
}

.model-card-cta svg {
  stroke: currentColor;
  transition: transform 0.18s;
}

.model-card:hover .model-card-cta svg {
  transform: translateX(2px);
}

/* Внутри карточки не должно быть zoom-курсора */
.model-card .model-img,
.model-card .model-img img {
  cursor: pointer;
  /* указатель на ссылку, не zoom */
}


/* === Доп.правки для страницы проекта === */
/* Сужаем основной контейнер на странице проекта для лучшей читаемости */
body.page-project .container {
  max-width: 1100px;
}

/* === Страница "Сервис" === */

/* Сравнительная таблица "Обычный сервис vs MYTYCOON" */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
  margin-top: 16px;
}

.compare-table th {
  background: var(--bg-soft);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table th:first-child {
  background: transparent;
  color: var(--gray);
}

.compare-table th.col-mytycoon {
  background: var(--teal-soft);
  color: var(--teal-hover);
}

.compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  line-height: 1.45;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 32%;
}

.compare-table td.col-mytycoon {
  background: rgba(232, 247, 245, 0.4);
  color: var(--ink);
  font-weight: 500;
}

.compare-table tr:hover td {
  background: rgba(232, 247, 245, 0.25);
}

.compare-table tr:hover td.col-mytycoon {
  background: rgba(232, 247, 245, 0.6);
}

@media (max-width: 700px) {
  .compare-table {
    font-size: 13px;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px 12px;
  }

  .compare-table td:first-child {
    width: 38%;
  }
}

/* Сценарии "Кому подходит" — большие нумерованные карточки */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
}

.scenario-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.18s;
}

.scenario-card:hover {
  border-color: var(--teal-line);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 26, 38, 0.06);
}

.scenario-num {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 12px;
}

.scenario-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.scenario-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* Пакеты услуг */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 24px;
  border-left: 3px solid var(--teal);
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
}

.package-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

/* Блок "Что не делаем" */
.exclusions-box {
  background: #FFF7E6;
  border-left: 3px solid #FFB81C;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

.exclusions-box strong {
  color: var(--ink);
}

/* Партнёрская программа — двухколоночный блок */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 760px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

.partner-col h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.partner-col ul {
  margin: 0;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}

.partner-col ul li {
  margin-bottom: 6px;
}

.partner-col.col-no h3 {
  color: var(--gray);
}

.partner-col.col-no ul {
  color: var(--gray);
}

.partner-col.col-no ul li::marker {
  color: var(--gray-2);
}

/* География — карточка с ремаркой */
.geo-card {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--teal-soft) 100%);
  border-radius: 14px;
  padding: 32px;
  margin-top: 20px;
}

.geo-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
}

.geo-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 12px;
}

.geo-card p:last-child {
  margin-bottom: 0;
}

.geo-card strong {
  color: var(--ink);
}

/* Hero тизер сервиса на главной */
.service-teaser {
  background: linear-gradient(135deg, #0F1A26 0%, #1A2A3D 100%);
  border-radius: 16px;
  padding: 48px;
  color: #fff;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .service-teaser {
    padding: 32px 24px;
  }
}

.service-teaser-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 760px) {
  .service-teaser-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.service-teaser .section-eyebrow {
  color: var(--teal);
}

.service-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.25;
}

.service-teaser p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 20px;
}

.service-teaser .btn-primary {
  background: var(--teal);
  color: #fff;
}

.service-teaser .btn-primary:hover {
  background: var(--teal-hover);
}

.service-teaser-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-teaser-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}

.service-teaser-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}


/* === Балансировка строк заголовков === */
/* text-wrap: balance — автоматически распределяет слова между строками,
   чтобы избежать одиноких слов на последней строке.
   Поддерживается всеми современными браузерами (Chrome 114+, Safari 17.4+, Firefox 121+) */
.hero-title,
.page-h1,
.case-page-h1,
.product-h1,
.section-title,
.product-block h2,
.case-step h2,
.legal-content h1,
.legal-content h2,
.scenario-card h3,
.package-card h3,
.app-card h3,
.seg-card h3,
.step-card h3,
.qual-card h3,
.principle-card h3,
.coating-card h3,
.modal-title,
.compat-cta-title,
.product-cta-final h2,
.case-final-cta h2,
.service-teaser h2,
.faq-q,
.faq-q span:first-child {
  text-wrap: balance;
}

/* text-wrap: pretty для длинных абзацев — избегает "сирот" (одиноких слов на последней строке абзаца) */
.hero-lead,
.page-lead,
.case-page-lead,
.product-lead,
.section-lead,
.case-lead,
.modal-lead,
.case-step p,
.faq-a p {
  text-wrap: pretty;
}

/* === Подписи под фотографиями основателя === */
.founder-caption {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray);
  text-align: center;
  margin: 12px 0 0;
  letter-spacing: 0.01em;
}

.founder-caption strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 700px) {
  .founder-caption {
    font-size: 12px;
    margin-top: 10px;
  }
}


.uc-detail-table .t431__tbody tr:first-child td {
  border-top: none !important;
}

.uc-detail-table .t431__tbody tr td:first-child {
  font-weight: 700 !important;
}

.uc-detail-tab-table .t431__thead tr th,
.uc-detail-tab-table .t431__tbody tr td,
.uc-detail-table .t431__tbody tr td {
  padding: 10px 12px;
}

.uc-detail-tab-table .t431__tbody tr:hover,
.uc-detail-table .t431__tbody tr:hover {
  background: #E8F7F5;
}

.uc-detail-tab-table:not(:first-of-type) {
  display: none;
}

.uc-detail-table-phot .quill-table__table td {
  font-size: 14px;
  padding: 10px 12px;
  border-left: none;
  border-right: none;
  border-color: #eff2f4;
}


.uc-pupupModif .t-input-subtitle {
  padding-bottom: 4px;
}

.uc-catalog-list .t-catalog__card .t-catalog__card__btns-wrapper {
  margin-top: -24px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.uc-catalog-list .t-catalog__card > a {
  padding: 20px 20px 0 20px;
}
.uc-catalog-list .t-catalog__card > a .t-catalog__card__imgwrapper {
  background: var(--bg-soft);
  border-radius: 8px;
}
.uc-catalog-list .t-catalog__card > a .t-catalog__card__imgwrapper img{
  border-radius: 8px;
}
.uc-catalog-list .t-catalog__card .t-catalog__card__img {
  padding: 16px;
}