::selection {
  background: #D4AF37;
  color: #0A0C10;
}

:root {
  --bg: #0A0C10;
      --surface: rgba(17, 22, 30, 0.88);
      --surface-2: rgba(30, 35, 44, 0.75);
      --gold: #D4AF37;
      --gold-light: #EBCB5E;
      --text: #EFF3F6;
      --muted: #9aaebf;
      --accent-blue: rgba(80, 140, 220, 0.12);
      --header-h: 72px;
      --radius: 24px;
      --font-display: 'Unbounded', 'Manrope', sans-serif;
      --font-body: 'Manrope', 'Inter', sans-serif;
    }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-h) + 16px);
      overflow-x: hidden;
      overflow-x: clip;
    }

    body {
      background-color: var(--bg);
      font-family: var(--font-body);
      color: var(--text);
      overflow-x: hidden;
      overflow-x: clip;
      line-height: 1.5;
      -webkit-text-size-adjust: 100%;
    }

    img,
    video,
    svg:not(.icon-svg) {
      max-width: 100%;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        repeating-linear-gradient(45deg, rgba(255, 215, 0, 0.025) 0 2px, transparent 2px 10px),
        repeating-linear-gradient(135deg, rgba(200, 180, 100, 0.02) 0 1px, transparent 1px 14px);
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      opacity: 0.04;
      pointer-events: none;
      z-index: 1;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
    }

    .orb-1 {
      width: 420px;
      height: 420px;
      top: -120px;
      right: -80px;
      background: rgba(212, 175, 55, 0.14);
    }

    .orb-2 {
      width: 360px;
      height: 360px;
      bottom: 20%;
      left: -100px;
      background: var(--accent-blue);
    }

    .orb-3 {
      width: 280px;
      height: 280px;
      top: 45%;
      right: 10%;
      background: rgba(212, 175, 55, 0.08);
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    .display-title,
    .hero-title,
    .manufacturer-title,
    .products-title,
    .section-heading {
      font-family: var(--font-display);
    }

    /* ——— Header ——— */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: var(--header-h);
      transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
    }

    .site-header.is-scrolled {
      background: rgba(10, 12, 16, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(212, 175, 55, 0.25);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    }

    .header-inner {
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      text-decoration: none;
      color: inherit;
      flex-shrink: 0;
    }

    .logo__name {
      display: block;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #F5E7A3, var(--gold));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .logo p {
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 2px;
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-desktop a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: color 0.2s;
    }

    .nav-desktop a:hover {
      color: var(--gold);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .burger {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(212, 175, 55, 0.35);
      border-radius: 12px;
      background: rgba(30, 35, 44, 0.6);
      color: var(--gold);
      font-size: 1.2rem;
      cursor: pointer;
    }

    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 110;
      background: rgba(10, 12, 16, 0.96);
      backdrop-filter: blur(12px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      padding: 80px 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .nav-mobile.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-mobile a {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
    }

    .nav-mobile-close {
      position: absolute;
      top: 14px;
      right: 24px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(212, 175, 55, 0.35);
      border-radius: 12px;
      background: rgba(30, 35, 44, 0.85);
      color: var(--gold);
      font-size: 1.35rem;
      cursor: pointer;
      z-index: 111;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .burger.is-open {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 24px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
      text-decoration: none;
      border: none;
      font-family: inherit;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--bg);
    }

    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
    }

    .btn-outline {
      background: rgba(212, 175, 55, 0.08);
      border: 1.5px solid var(--gold);
      color: var(--gold);
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--bg);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--text);
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .btn-sm {
      padding: 10px 18px;
      font-size: 0.85rem;
    }

    /* ——— Sections animation ——— */
    .section {
      margin: 88px 0;
      opacity: 0;
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .section--from-left {
      transform: translateX(-72px);
    }

    .section--from-right {
      transform: translateX(72px);
    }

    .section.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-from-left,
    .reveal-from-right {
      opacity: 0;
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal-from-left {
      transform: translateX(-40px);
    }

    .reveal-from-right {
      transform: translateX(40px);
    }

    .section.visible .reveal-from-left,
    .section.visible .reveal-from-right {
      opacity: 1;
      transform: translateX(0);
    }

    @media (prefers-reduced-motion: reduce) {

      .section,
      .reveal-from-left,
      .reveal-from-right {
        transition: none;
        opacity: 1;
        transform: none;
      }
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-heading {
      font-size: clamp(1.75rem, 4vw, 2.35rem);
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 20px;
    }

    .section-heading span {
      display: block;
    }

    /* ——— Hero ——— */
    .page-main {
      padding-top: calc(var(--header-h) + 24px);
      overflow-x: clip;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 48px;
      align-items: center;
      padding-bottom: 32px;
      width: 100%;
      min-width: 0;
    }

    .hero-content,
    .hero-visual {
      min-width: 0;
      max-width: 100%;
    }

    /* Hero завжди видимий — без зсуву анімації */
    .hero.section.section--from-left,
    .hero.section.section--from-right {
      transform: none;
      opacity: 1;
    }

    .badge-ukraine {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--surface-2);
      padding: 8px 18px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.88rem;
      border: 1px solid rgba(212, 175, 55, 0.25);
      margin-bottom: 20px;
    }

    .badge-ukraine i {
      color: var(--gold);
    }

    .hero-title {
      font-size: clamp(2rem, 5vw, 3.1rem);
      font-weight: 800;
      line-height: 1.15;
      color: #fff;
      overflow-wrap: break-word;
    }

    .hero-accent {
      color: #fff;
      border-bottom: 2px dashed var(--gold);
    }

    .hero-lead {
      margin-top: 20px;
      font-size: 1.1rem;
      color: #BDD4F0;
      font-weight: 600;
    }

    .hero-bullets {
      list-style: none;
      margin-top: 18px;
    }

    .hero-bullets li {
      position: relative;
      padding-left: 22px;
      margin-bottom: 10px;
      color: var(--muted);
      font-size: 0.98rem;
    }

    .hero-bullets li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-visual {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      min-height: 380px;
      border: 1px solid rgba(212, 175, 55, 0.3);
      box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
    }

    .hero-visual img {
      width: 100%;
      max-width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-height: 380px;
    }

    .hero-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(10, 12, 16, 0.15) 0%, rgba(10, 12, 16, 0.75) 100%);
    }

    .hero-visual-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      font-weight: 600;
      font-size: 0.95rem;
      background: linear-gradient(transparent, rgba(10, 12, 16, 0.9));
    }

    .hero-visual-icons {
      position: absolute;
      top: 20px;
      right: 20px;
      display: flex;
      gap: 10px;
    }

    .hero-visual-icons span {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(10, 12, 16, 0.65);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(212, 175, 55, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
    }

    /* ——— Trust strip ——— */
    .trust-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      padding: 28px 0 8px;
      border-top: 1px solid rgba(212, 175, 55, 0.15);
      border-bottom: 1px solid rgba(212, 175, 55, 0.15);
      margin-bottom: 24px;
    }

    .trust-item {
      text-align: center;
      padding: 16px 8px;
    }

    .trust-item strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .trust-item span {
      font-size: 0.78rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ——— Manufacturer ——— */
    .manufacturer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .manufacturer-title {
      font-size: clamp(1.6rem, 3.5vw, 2.25rem);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 24px;
      color: #fff;
    }

    .manufacturer-title span {
      display: block;
    }

    .manufacturer-text p {
      color: #BDD4F0;
      font-size: 1.02rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .brand-highlight {
      color: var(--gold);
    }

    .manufacturer-location {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      padding: 10px 20px;
      background: var(--surface-2);
      border-radius: 40px;
      border: 1px solid rgba(212, 175, 55, 0.35);
      font-weight: 600;
    }

    .manufacturer-location i {
      color: var(--gold);
    }

    .manufacturer-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .manufacturer-feature {
      background: var(--surface-2);
      border-radius: var(--radius);
      padding: 22px;
      border: 1px solid rgba(212, 175, 55, 0.22);
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    }

    .manufacturer-feature:hover {
      transform: translateY(-4px);
      border-color: rgba(212, 175, 55, 0.5);
      box-shadow: 0 14px 32px -12px rgba(212, 175, 55, 0.25);
    }

    .icon-svg {
      width: 32px;
      height: 32px;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .manufacturer-feature h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .manufacturer-feature p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .geography-tile {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
    }

    .geography-tile .icon-svg {
      width: 36px;
      height: 36px;
      margin-bottom: 12px;
    }

    .geography-tile h3 {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      margin: 0;
    }

    /* ——— Bento products ——— */
    .products-header {
      margin-bottom: 40px;
      max-width: 640px;
    }

    .products-title {
      font-size: clamp(1.6rem, 3.5vw, 2.25rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
      color: #fff;
    }

    .products-intro {
      color: #BDD4F0;
      font-size: 1.05rem;
      line-height: 1.65;
    }

    .production-directions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 36px;
      padding: 22px 20px;
      border-radius: 20px;
      background: rgba(30, 35, 44, 0.55);
      border: 1px solid rgba(212, 175, 55, 0.28);
    }

    .direction-label {
      flex: 1 1 220px;
      max-width: 300px;
      min-width: 0;
      overflow-wrap: break-word;
      font-family: var(--font-display);
      font-size: clamp(0.7rem, 1.5vw, 0.88rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1.35;
      text-align: center;
      padding: 16px 14px;
      border-radius: 14px;
      background: rgba(212, 175, 55, 0.12);
      border: 1px solid rgba(212, 175, 55, 0.4);
      color: var(--gold);
    }

    a.direction-label--link {
      display: block;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    a.direction-label--link:hover,
    a.direction-label--link:focus-visible {
      background: rgba(212, 175, 55, 0.22);
      border-color: rgba(212, 175, 55, 0.65);
      color: #fff;
      transform: translateY(-2px);
    }

    a.direction-label--link:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .products-catalog {
      margin-top: 8px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .product-card {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 18px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      overflow: hidden;
      position: relative;
    }

    a.product-card {
      text-decoration: none;
      color: inherit;
    }

    .product-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(212, 175, 55, 0.07), transparent 55%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .product-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212, 175, 55, 0.5);
      box-shadow: 0 20px 48px -16px rgba(212, 175, 55, 0.28);
    }

    .product-card:hover::before {
      opacity: 1;
    }

    .product-card--hit {
      border-color: rgba(212, 175, 55, 0.5);
    }

    .product-card-thumb {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 14px;
      margin-bottom: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .product-card h3 {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.35;
      margin-bottom: 8px;
    }

    .product-card-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      flex: 1;
      margin-bottom: 12px;
    }

    .product-card-price {
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--gold);
      margin: 0 0 12px;
      letter-spacing: 0.02em;
    }

    .product-badge {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 40px;
      margin-bottom: 8px;
      background: rgba(212, 175, 55, 0.12);
      color: var(--gold);
      border: 1px solid rgba(212, 175, 55, 0.3);
      width: fit-content;
    }

    .product-badge--hit {
      background: var(--gold);
      color: var(--bg);
      border-color: var(--gold);
    }

    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }

    .product-tag {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 8px;
      background: rgba(30, 35, 44, 0.9);
      color: #BDD4F0;
      border: 1px solid rgba(212, 175, 55, 0.18);
    }

    /* ——— Catalog page ——— */
    .catalog-page .catalog-hero {
      margin-top: 22px !important;
      margin-bottom: 100px !important;
    }

    .catalog-page .page-main {
      padding-top: calc(var(--header-h) + 72px);
    }

    .catalog-hero__content {
      max-width: 820px;
    }

    .catalog-photo-grid {
      display: grid;
      grid-template-columns: minmax(260px, 380px);
      gap: 14px;
    }

    .catalog-photo-grid--narrow {
      max-width: 380px;
      margin-bottom: 24px;
    }

    .catalog-photo-grid--three {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: none;
      margin-bottom: 24px;
    }

    .catalog-photo-grid--three .catalog-photo-card img {
      height: 360px;
    }

    .catalog-page .catalog-hero .catalog-photo-grid {
      margin-top: 44px !important;
    }

    .catalog-page .catalog-hero + .section {
      margin-top: 24px !important;
    }

    .catalog-photo-card {
      margin: 0;
      background: var(--surface);
      border: 1px solid rgba(212, 175, 55, 0.24);
      border-radius: 16px;
      overflow: hidden;
    }

    .catalog-photo-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
      background: rgba(30, 35, 44, 0.8);
    }

    .catalog-photo-card figcaption {
      margin: 0;
      padding: 4px 12px 6px;
      font-size: 0.78rem;
      color: var(--muted);
    }


    .catalog-photo-card--single img {
      height: 350px;
    }

    .catalog-split {
      display: grid;
      grid-template-columns: minmax(260px, 380px) 1fr;
      gap: 18px;
      align-items: start;
    }

    .catalog-table-wrap {
      width: 100%;
      overflow-x: auto;
      border-radius: 20px;
      border: 1px solid rgba(212, 175, 55, 0.24);
      background: var(--surface);
    }

    .catalog-table {
      width: 100%;
      min-width: 980px;
      border-collapse: collapse;
      font-size: 0.9rem;
    }

    .catalog-table th,
    .catalog-table td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      vertical-align: top;
    }

    .catalog-table th {
      background: rgba(212, 175, 55, 0.14);
      color: var(--gold);
      font-family: var(--font-display);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-align: center;
      white-space: nowrap;
    }

    .catalog-table td:first-child {
      font-family: var(--font-display);
      font-weight: 700;
      color: var(--gold);
      text-align: center;
      white-space: nowrap;
    }

    .catalog-table td:not(:first-child) {
      text-align: center;
      white-space: nowrap;
    }

    .catalog-table tbody tr:hover {
      background: rgba(212, 175, 55, 0.07);
    }

    .catalog-table--compact {
      min-width: 420px;
    }

    .catalog-anchor {
      display: block;
      height: 0;
      scroll-margin-top: 100px;
    }

    #vodovidvedennya,
    #pokrivlya,
    #povitrovody,
    #dimokhody {
      scroll-margin-top: 100px;
    }

    .catalog-subheading {
      font-family: var(--font-display);
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gold);
      margin: 0 0 16px;
    }

    .catalog-subheading--spaced {
      margin-top: 40px;
    }

    .catalog-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    /* ——— Why + Steps ——— */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .why-card {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 28px;
      border: 1px solid rgba(212, 175, 55, 0.18);
      transition: transform 0.25s, border-color 0.25s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      border-color: rgba(212, 175, 55, 0.4);
    }

    .why-card .icon-svg {
      width: 36px;
      height: 36px;
      margin-bottom: 16px;
    }

    .why-card h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .why-card p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.55;
    }

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

    .step-card {
      position: relative;
      padding: 32px 28px 28px;
      background: var(--surface);
      border-radius: var(--radius);
      border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .step-card::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -14px;
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      display: none;
    }

    .step-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 800;
      color: rgba(212, 175, 55, 0.25);
      line-height: 1;
      margin-bottom: 12px;
    }

    .step-card h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--gold);
    }

    .step-card p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.55;
    }

    /* ——— FAQ (SEO) ——— */
    .faq-intro {
      color: var(--muted);
      max-width: 640px;
      margin-bottom: 28px;
      line-height: 1.65;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 800px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 16px;
      overflow: hidden;
    }

    .faq-item summary {
      padding: 18px 22px;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
      color: var(--text);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      float: right;
      color: var(--gold);
      font-size: 1.2rem;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-answer {
      padding: 0 22px 18px;
    }

    .faq-answer p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 0.95rem;
    }

    .faq-answer a {
      color: #BDD4F0;
      text-decoration: none;
    }

    .faq-answer a:hover {
      color: var(--gold);
    }

    /* ——— CTA ——— */
    .cta-section {
      text-align: center;
      padding: 56px 40px;
      border-radius: 40px;
      background: linear-gradient(135deg, rgba(30, 35, 44, 0.95), rgba(17, 22, 30, 0.98));
      border: 1px solid rgba(212, 175, 55, 0.35);
      box-shadow: 0 24px 60px -24px rgba(212, 175, 55, 0.2);
    }

    .cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 12px;
      color: #fff;
    }

    .cta-section p {
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 28px;
    }

    .cta-note {
      margin-top: 10px;
      margin-bottom: 18px;
      max-width: 760px;
      color: #BDD4F0;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

    /* ——— Footer ——— */
    .footer {
      border-top: 1px solid rgba(212, 175, 55, 0.25);
      padding: 48px 0 32px;
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 32px;
    }

    .footer-brand h3 {
      font-family: var(--font-display);
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .footer-brand p,
    .footer-col p {
      color: var(--muted);
      margin: 8px 0;
      font-size: 0.95rem;
    }

    .footer-brand a,
    .footer-col a {
      color: #BDD4F0;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-brand a:hover,
    .footer-col a:hover {
      color: var(--gold);
    }

    .footer-brand a:visited,
    .footer-col a:visited {
      color: #BDD4F0;
    }

    .footer-copy {
      grid-column: 1 / -1;
      padding-top: 24px;
      margin-top: 8px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.85rem;
      color: var(--muted);
      text-align: center;
    }

    @media (min-width: 901px) {
      .step-card:not(:last-child)::after {
        display: block;
      }
    }

    @media (max-width: 1024px) {
      .catalog-page .page-main {
        padding-top: calc(var(--header-h) + 20px) !important;
      }

      .catalog-page .catalog-hero {
        margin-top: 8px !important;
      }

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

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

      .catalog-photo-grid {
        grid-template-columns: minmax(240px, 340px);
      }

      .catalog-photo-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .catalog-split {
        grid-template-columns: 1fr;
      }

      .direction-label {
        flex: 1 1 45%;
      }

      .trust-strip.section {
        margin-top: 32px;
        margin-bottom: 40px;
      }

      .trust-strip {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 24px;
        padding: 16px 24px 20px;
        margin-inline: -24px;
        max-width: calc(100% + 48px);
        scrollbar-width: none;
      }

      .trust-strip::-webkit-scrollbar {
        display: none;
      }

      .trust-item {
        flex: 0 0 148px;
        scroll-snap-align: start;
        padding: 14px 12px;
        background: rgba(30, 35, 44, 0.55);
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-radius: 14px;
      }

      .trust-item strong {
        font-size: 1.15rem;
        line-height: 1.2;
        margin-bottom: 6px;
      }

      .trust-item span {
        font-size: 0.65rem;
        letter-spacing: 0.04em;
        line-height: 1.35;
      }
    }

    @media (max-width: 900px) {
      .nav-desktop,
      .header-actions .btn-outline.header-price {
        display: none;
      }

      .burger {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .header-actions .btn-sm {
        padding: 7px 12px;
        font-size: 0.72rem;
        gap: 6px;
        border-radius: 40px;
        white-space: nowrap;
      }

      .header-actions .btn-sm i {
        font-size: 0.75rem;
      }

      .nav-mobile {
        display: flex;
      }

      .page-main {
        padding-top: var(--header-h);
      }

      .catalog-page .page-main {
        padding-top: calc(var(--header-h) + 30px);
      }

      .catalog-page .catalog-hero {
        margin-top: 0 !important;
        margin-bottom: 40px !important;
      }

      .catalog-page .catalog-hero.section {
        margin-top: 0;
        margin-bottom: 32px;
      }

      .hero.section {
        margin-top: 44px;
        margin-bottom: 44px;
      }

      .hero {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
        padding-bottom: 16px;
      }

      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
      }

      .hero-visual {
        width: 100%;
      }

      .hero-bullets {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-cta {
        justify-content: center;
      }

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

      .manufacturer-title,
      .section-label,
      .products-header {
        text-align: center;
      }

      .manufacturer-location {
        display: flex;
        justify-content: center;
        width: 100%;
      }

      .why-grid,
      .steps-grid {
        grid-template-columns: 1fr;
      }

      .step-card::after {
        display: none !important;
      }

      .footer {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    /* iOS Safari: translateX на секціях розширює scrollWidth сторінки */
    @media (max-width: 1024px) {
      .section--from-left,
      .section--from-right,
      .section.visible,
      .reveal-from-left,
      .reveal-from-right {
        transform: none;
      }

      .section.visible .reveal-from-left,
      .section.visible .reveal-from-right {
        transform: none;
      }

      .orb-1 {
        width: 280px;
        height: 280px;
        right: -140px;
      }

      .orb-2 {
        width: 240px;
        height: 240px;
        left: -140px;
      }

      .orb-3 {
        width: 180px;
        height: 180px;
        right: -40px;
      }
    }

    @media (max-width: 640px) {
      .cta-section {
        padding: 40px 20px;
      }

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

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

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

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

      .catalog-split {
        grid-template-columns: 1fr;
      }

      .catalog-table-wrap {
        overflow-x: visible;
        border: 0;
        background: transparent;
      }

      .catalog-table {
        min-width: 0;
        width: 100%;
        border-collapse: separate;
        border-spacing: 0 10px;
      }

      .catalog-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
      }

      .catalog-table tbody tr {
        display: block;
        background: var(--surface);
        border: 1px solid rgba(212, 175, 55, 0.24);
        border-radius: 14px;
        padding: 10px 12px;
      }

      .catalog-table td {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        padding: 8px 0;
        border: 0;
        text-align: right !important;
        white-space: normal !important;
      }

      .catalog-table td::before {
        content: attr(data-label);
        color: #bdd4f0;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-align: left;
        flex: 1 1 auto;
        min-width: 42%;
      }

      .catalog-table td:first-child {
        color: var(--gold);
        text-align: right !important;
      }

      .direction-label {
        flex: 1 1 100%;
        max-width: none;
      }

      .manufacturer-features {
        grid-template-columns: 1fr;
      }

      .trust-item {
        flex: 0 0 136px;
      }

      .hero-visual {
        min-height: 280px;
      }

      .hero-visual img {
        min-height: 280px;
      }
    }
