  :root {
    --blue: #123a6d;
    --red: #dc6238;
    --light-bg: #f1eee8;
    --text: #111827;
    --muted: #667085;
    --green-cell: #edf4ec;
    --red-cell: #fff1eb;
    --white: #ffffff;
    --canvas: #e9e4db;
    --surface: #f6f2ea;
    --surface-strong: #fffdf8;
    --surface-dark: #0d1726;
    --ink-soft: #344054;
    --line: rgba(17, 24, 39, 0.09);
    --line-strong: rgba(255, 255, 255, 0.14);
    --sand: #f3d4b2;
    --shadow-soft: 0 16px 48px rgba(15, 23, 42, 0.12);
    --shadow-strong: 0 30px 80px rgba(7, 14, 24, 0.26);
  }

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

  html { background: var(--canvas); }

  body {
    min-width: 320px;
    font-family: 'Geologica', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.78), transparent 24%),
      linear-gradient(180deg, #f3f1ec 0%, #f7f5f0 100%);
  }

  img { max-width: 100%; display: block; }
  button, input, textarea { font: inherit; }

  /* NAV */
  nav {
    position: relative;
    z-index: 10;
    width: min(1480px, calc(100% - 40px));
    margin: 0 auto;
    padding: 26px 0 18px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    background:
      repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.045) 0 1px, transparent 1px 148px);
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  .nav-logo-image {
    width: 58px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
  }
  .nav-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .nav-brand-text {
    color: #111827;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
    white-space: nowrap;
  }
  .nav-brand-sub {
    color: rgba(17, 24, 39, 0.48);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .nav-address {
    position: relative;
    padding-left: 18px;
    color: rgba(17, 24, 39, 0.68);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .nav-address::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sand), var(--red));
    box-shadow: 0 0 18px rgba(220, 98, 56, 0.4);
  }
  .nav-phone {
    justify-self: end;
    color: #111827;
    text-decoration: none;
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
  .nav-catalog {
    justify-self: end;
    padding: 0;
    border: none;
    background: none;
    color: #111827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
  }
  .nav-catalog::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 3px;
    background: var(--red);
  }
  .nav-catalog:hover { opacity: 0.7; }
  .nav-hamburger { display: none; }

  /* STICKY CATALOG SIDE TAB */
  .catalog-side-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding: 20px 0;
    background: #111319;
    border: none;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
    box-shadow: -2px 0 12px rgba(0,0,0,0.18);
  }
  .catalog-side-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
  }
  .catalog-side-tab:hover {
    width: 46px;
    background: #1e2230;
  }
  .catalog-side-tab-text {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }
  .nav-cta {
    justify-self: end;
    min-height: 40px;
    background: #111319;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    box-shadow: none;
  }
  .nav-cta:hover {
    background: #20242c;
  }

  /* SECTIONS */
  section {
    padding: clamp(72px, 7vw, 96px) clamp(20px, 5vw, 64px);
    max-width: 1520px;
    margin: 0 auto;
  }
  .full-width-section { max-width: 100%; padding: 0; }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(220, 98, 56, 0.14);
    background: rgba(220, 98, 56, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--red);
    font-weight: 700;
    margin-bottom: 14px;
  }

  h1,
  h2,
  h3 {
    letter-spacing: -0.04em;
  }

  h1 { font-size: clamp(38px, 4.8vw, 72px); font-weight: 900; line-height: 1.02; }
  h2 { font-size: clamp(32px, 3.3vw, 50px); font-weight: 800; line-height: 1.08; }
  h3 { font-size: 24px; font-weight: 700; }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #db633d, #f08d55);
    color: white;
    padding: 17px 30px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(220, 98, 56, 0.26);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(220, 98, 56, 0.34);
    filter: saturate(1.04);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    border: 1px solid rgba(17, 24, 39, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    backdrop-filter: blur(8px);
  }
  .btn-secondary:hover {
    background: #ffffff;
    color: var(--text);
    transform: translateY(-1px);
    border-color: rgba(17, 24, 39, 0.12);
  }

  /* SCREEN 1 — HERO */
  #hero {
    position: relative;
    width: min(1480px, calc(100% - 40px));
    margin: 0 auto 72px;
    padding: 56px 0 64px;
    min-height: calc(100vh - 86px);
    background:
      repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.045) 0 1px, transparent 1px 148px);
    overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute;
    right: 8%;
    top: 30px;
    width: min(48vw, 680px);
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 50%;
  }
  #hero::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 160px;
    width: min(52vw, 760px);
    height: 1px;
    background: rgba(17, 24, 39, 0.08);
    transform: rotate(-16deg);
    transform-origin: right center;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    min-height: calc(100vh - 150px);
  }
  .hero-copy {
    grid-column: 1 / span 4;
    align-self: center;
    max-width: none;
  }
  .hero-eyebrow {
    display: inline-flex;
    margin-bottom: 28px;
    color: rgba(17, 24, 39, 0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .hero-head {
    position: relative;
    display: block;
    margin-bottom: 36px;
  }
  #hero h1 {
    margin: 0;
    color: #111319;
    font-size: clamp(58px, 7.6vw, 118px);
    line-height: 0.88;
    letter-spacing: -0.07em;
  }
  #hero h1 span {
    display: block;
  }
  .hero-sub {
    position: absolute;
    top: -14px;
    left: calc(100% - 12px);
    max-width: 196px;
    margin: 0;
    transform: none;
    color: rgba(17, 24, 39, 0.62);
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
  }
  .hero-cta-row .btn-primary {
    min-height: 42px;
    padding: 12px 18px;
    border-radius: 2px;
    background: #111319;
    box-shadow: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .hero-cta-row .btn-primary:hover {
    transform: none;
    box-shadow: none;
    background: #20242c;
    filter: none;
  }
  .hero-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
    background: none;
    color: #111319;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .hero-link::before {
    content: '▶';
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #111319;
    font-size: 12px;
    padding-left: 3px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .hero-link:hover::before {
    background: #111319;
    color: #fff;
    transform: scale(1.08);
  }
  .hero-catalog-link {
    padding: 0;
    border: none;
    background: none;
    color: #111319;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .hero-catalog-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 4px;
    background: var(--red);
  }
  .hero-proof-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    color: rgba(17, 24, 39, 0.52);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.5;
  }
  .hero-proof-line span {
    display: inline-flex;
    align-items: center;
  }
  .hero-proof-line span + span::before {
    content: '·';
    margin: 0 12px;
    color: rgba(17, 24, 39, 0.32);
  }

  .hero-visual {
    grid-column: 6 / -1;
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 12% 2% 8% 18%;
    border-top: 1px solid rgba(17, 24, 39, 0.12);
    border-right: 1px solid rgba(17, 24, 39, 0.12);
    transform: skewX(-14deg);
    opacity: 0.8;
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 8% 5% 6% 14%;
    border: 1px solid rgba(17, 24, 39, 0.07);
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 90% 100%, 0 100%, 0 12%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  }
  .hero-visual-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 0 0;
  }
  .hero-visual-image {
    position: relative;
    z-index: 1;
    width: min(100%, 900px);
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 26px 34px rgba(17, 24, 39, 0.12));
    transform: translate(28px, -8px);
  }

  /* SCREEN 2 — PRODUCT */
  #product {
    background:
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f3f1ec;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    max-width: 100%;
    padding-top: 112px;
    padding-bottom: 128px;
  }
  #product::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
      linear-gradient(128deg, transparent 55%, rgba(27, 36, 48, 0.08) 55.1%, transparent 55.5%);
    z-index: 0;
    pointer-events: none;
  }
  #product > * {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .product-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    margin-bottom: 64px;
  }
  .product-heading {
    grid-column: 1 / span 7;
  }
  #product h2 {
    margin: 16px 0 0;
    max-width: 9ch;
    color: #171d23;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .product-aside {
    grid-column: 9 / -1;
    padding-bottom: 12px;
  }
  .product-intro {
    position: relative;
    margin: 0;
    max-width: 280px;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.7;
  }
  .product-editorial-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .product-editorial-grid::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 54%;
    width: 30%;
    height: 1px;
    background: rgba(23, 29, 35, 0.18);
    transform: rotate(-32deg);
    transform-origin: left center;
    pointer-events: none;
  }
  .product-media {
    position: relative;
    display: grid;
    gap: 14px;
  }
  .product-media::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    pointer-events: none;
  }
  .product-media-main {
    grid-column: 1 / span 7;
    z-index: 1;
  }
  .product-media-secondary {
    grid-column: 9 / -1;
    margin-top: 108px;
    z-index: 1;
  }
  .product-media-detail {
    grid-column: 7 / span 3;
    margin-top: -68px;
    z-index: 2;
  }
  .product-photo {
    display: block;
    width: 100%;
    height: auto;
  }
  .product-media-main .product-photo {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .product-media-secondary .product-photo {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .product-media-detail .product-photo {
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: transparent;
    padding: 0;
  }
  .product-media figcaption {
    max-width: 32ch;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.6;
  }
  .product-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .product-fact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
  }
  .product-fact-index {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    padding-top: 4px;
  }
  .product-fact-body h3 {
    margin: 0 0 8px;
    color: #171d23;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .product-fact-body p {
    margin: 0;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.65;
    max-width: 28ch;
  }

  /* SCREEN 3 — PROOF */
  #social {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 16% 14%, rgba(178, 118, 86, 0.16), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0,
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #11161c;
  }
  #social::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
      linear-gradient(139deg, transparent 61%, rgba(255, 255, 255, 0.06) 61.1%, transparent 61.4%);
    pointer-events: none;
  }
  .social-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  #social .section-label {
    margin-bottom: 18px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
    color: #b77a5a;
    font-size: 11px;
    letter-spacing: 0.2em;
  }
  .social-copy {
    grid-column: 1 / span 5;
  }
  #social h2 {
    max-width: 10ch;
    margin: 0;
    color: #f3f5f7;
    font-size: clamp(42px, 4.8vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .social-intro {
    margin: 22px 0 0;
    max-width: 31ch;
    color: #a5afb9;
    font-size: 16px;
    line-height: 1.75;
  }
  .social-visual {
    grid-column: 1 / span 7;
    margin-top: 52px;
    position: relative;
    display: grid;
    gap: 16px;
  }
  .social-visual::before {
    content: '';
    position: absolute;
    inset: -18px 18px 60px -18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
  }
  .social-visual-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .social-visual figcaption {
    max-width: 34ch;
    color: #8d98a5;
    font-size: 14px;
    line-height: 1.65;
  }
  .social-proof-list {
    grid-column: 8 / -1;
    grid-row: 1 / span 2;
    align-self: start;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .social-proof-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .social-proof-index {
    color: #b77a5a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    padding-top: 6px;
  }
  .social-proof-body h3 {
    margin: 0 0 8px;
    color: #f3f5f7;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .social-proof-body p {
    margin: 0;
    max-width: 30ch;
    color: #98a3af;
    font-size: 15px;
    line-height: 1.7;
  }

  /* SCREEN 4 — CASES EDITORIAL */
  #cases-editorial {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f3f1ec;
  }
  #cases-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
      linear-gradient(142deg, transparent 60%, rgba(27, 36, 48, 0.08) 60.1%, transparent 60.5%);
    pointer-events: none;
  }
  .cases-editorial-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
  }
  .cases-editorial-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    margin-bottom: 56px;
  }
  .cases-editorial-heading {
    grid-column: 1 / span 7;
  }
  #cases-editorial h2 {
    margin: 16px 0 0;
    max-width: 10ch;
    color: #171d23;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .cases-editorial-intro {
    grid-column: 9 / -1;
    max-width: 29ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
    padding-bottom: 10px;
  }
  .cases-editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .case-editorial-card {
    position: relative;
    display: grid;
    gap: 16px;
  }
  .case-editorial-card::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    pointer-events: none;
  }
  .case-editorial-card-main {
    grid-column: 1 / span 7;
  }
  .case-editorial-card-top,
  .case-editorial-card-bottom {
    grid-column: 9 / -1;
  }
  .case-editorial-card-bottom {
    margin-top: 14px;
  }
  .case-editorial-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .case-editorial-card-main .case-editorial-image {
    aspect-ratio: 4 / 5;
  }
  .case-editorial-card-top .case-editorial-image,
  .case-editorial-card-bottom .case-editorial-image {
    aspect-ratio: 4 / 5;
  }
  .case-editorial-card figcaption {
    max-width: 34ch;
  }
  .case-editorial-kicker {
    display: block;
    margin-bottom: 8px;
    color: #8b634f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .case-editorial-card h3 {
    margin: 0 0 8px;
    color: #171d23;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .case-editorial-card p {
    margin: 0;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .cases-editorial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .cases-editorial-proof {
    margin: 0;
    color: #171d23;
    font-size: 18px;
    line-height: 1.5;
    max-width: 34ch;
  }
  .cases-editorial-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: #171d23;
    color: #f4f1eb;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }
  .cases-editorial-cta:hover {
    background: #232c35;
    transform: translateY(-1px);
  }

  /* SCREEN 5 — INSTALLATIONS MAP */
  #installations-map {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 82% 14%, rgba(178, 118, 86, 0.12), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f7f5f0;
  }
  #installations-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
      linear-gradient(132deg, transparent 62%, rgba(27, 36, 48, 0.08) 62.1%, transparent 62.4%);
    pointer-events: none;
  }
  .installations-map-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
  }
  .installations-map-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    margin-bottom: 48px;
  }
  .installations-map-heading {
    grid-column: 1 / span 7;
  }
  #installations-map h2 {
    margin: 16px 0 0;
    max-width: 10ch;
    color: #171d23;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .installations-map-intro {
    grid-column: 9 / -1;
    max-width: 31ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
    padding-bottom: 8px;
  }
  .installations-map-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .installations-map-stage {
    grid-column: 1 / span 8;
  }
  #installations-map .install-map-shell {
    background: rgba(255, 255, 255, 0.58);
    border-radius: 0;
    padding: 18px;
    border: 1px solid rgba(23, 29, 35, 0.12);
    box-shadow: none;
  }
  #installations-map .install-map-canvas {
    height: 560px;
    border-radius: 0;
    border: 1px solid rgba(23, 29, 35, 0.1);
    box-shadow: none;
    background: #e8ecef;
  }
  #installations-map .install-map-canvas [class*="ground-pane"] {
    filter: saturate(0.72) contrast(1.02) brightness(0.98);
  }
  #installations-map .install-map-labels {
    justify-content: flex-start;
    margin-top: 18px;
    margin-bottom: 0;
    gap: 10px;
    max-height: 92px;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  #installations-map .install-map-labels.is-expanded {
    max-height: 1200px;
  }
  #installations-map .install-map-chip {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 29, 35, 0.12);
    border-radius: 999px;
    color: #171d23;
    font-size: 14px;
    font-weight: 600;
  }
  #installations-map .install-map-chip::before {
    background: #b66545;
    box-shadow: 0 0 0 4px rgba(182, 101, 69, 0.12);
  }
  #installations-map .install-map-chip:hover {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(23, 29, 35, 0.24);
    transform: translateY(-1px);
  }
  #installations-map .install-map-chip.is-active {
    background: rgba(182, 101, 69, 0.08);
    border-color: rgba(182, 101, 69, 0.32);
    color: #171d23;
  }
  #installations-map .install-map-chip-count {
    background: rgba(23, 29, 35, 0.06);
    color: #5d6470;
  }
  #installations-map .install-map-toggle {
    display: block;
    margin: 14px 0 0;
    padding: 10px 0;
    border: none;
    border-radius: 0;
    background: none;
    color: #5d6470;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .installations-map-aside {
    grid-column: 9 / -1;
    display: grid;
    gap: 24px;
    align-self: start;
  }
  .installations-map-copy {
    margin: 0;
    max-width: 30ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
  }
  .installations-map-metrics {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .installations-map-metric {
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 29, 35, 0.12);
  }
  .installations-map-metric-value {
    color: #171d23;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
  }
  .installations-map-metric-label {
    margin-top: 6px;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.5;
  }
  .installations-map-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: #171d23;
    color: #f4f1eb;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
    justify-self: start;
  }
  .installations-map-cta:hover {
    background: #232c35;
    transform: translateY(-1px);
  }
  .installations-map-footnote {
    margin: 0;
    max-width: 32ch;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.7;
  }

  /* SCREEN 6 — SITE CHECK */
  #site-check {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 16% 18%, rgba(178, 118, 86, 0.1), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #fbfaf6;
  }
  #site-check::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
      linear-gradient(138deg, transparent 58%, rgba(27, 36, 48, 0.08) 58.1%, transparent 58.4%);
    pointer-events: none;
  }
  .site-check-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
  }
  .site-check-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .site-check-copy {
    grid-column: 7 / -1;
  }
  #site-check h2 {
    margin: 16px 0 0;
    max-width: 10ch;
    color: #171d23;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .site-check-intro {
    margin: 22px 0 0;
    max-width: 31ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
  }
  .site-check-points {
    margin-top: 42px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .site-check-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(23, 29, 35, 0.12);
  }
  .site-check-point-index {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    padding-top: 6px;
  }
  .site-check-point-body h3 {
    margin: 0 0 8px;
    color: #171d23;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .site-check-point-body p {
    margin: 0;
    max-width: 31ch;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .site-check-action {
    grid-column: 1 / span 5;
    display: grid;
    gap: 22px;
  }
  .site-check-visual {
    position: relative;
    display: grid;
    gap: 14px;
  }
  .site-check-visual::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    pointer-events: none;
  }
  .site-check-visual-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .site-check-visual figcaption {
    max-width: 34ch;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.65;
  }
  .site-check-form {
    display: grid;
    gap: 18px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(23, 29, 35, 0.12);
  }
  .site-check-form-head h3 {
    margin: 0 0 8px;
    color: #171d23;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .site-check-form-head p {
    margin: 0;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .site-check-field {
    display: grid;
    gap: 8px;
  }
  .site-check-field label,
  .site-check-contact legend {
    color: #171d23;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
  }
  .site-check-input,
  .site-check-textarea {
    width: 100%;
    border: 1px solid rgba(23, 29, 35, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: #171d23;
    font: inherit;
    font-size: 15px;
    line-height: 1.5;
    padding: 14px 16px;
    border-radius: 0;
    transition: border-color 0.18s ease, background-color 0.18s ease;
  }
  .site-check-input:focus,
  .site-check-textarea:focus {
    outline: none;
    border-color: rgba(23, 29, 35, 0.42);
    background: #fff;
  }
  .site-check-textarea {
    min-height: 118px;
    resize: vertical;
  }
  .site-check-contact {
    margin: 0;
    padding: 0;
    border: none;
    display: grid;
    gap: 10px;
  }
  .site-check-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .site-check-contact-option {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .site-check-contact-option input {
    position: absolute;
    opacity: 0;
    inset: 0;
  }
  .site-check-contact-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid rgba(23, 29, 35, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: #171d23;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }
  .site-check-contact-option input:checked + span {
    background: #171d23;
    border-color: #171d23;
    color: #f4f1eb;
  }
  .site-check-upload-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .site-check-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(23, 29, 35, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: #171d23;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
  }
  .site-check-upload input {
    display: none;
  }
  .site-check-upload-note {
    color: #6e7681;
    font-size: 13px;
    line-height: 1.5;
  }
  .site-check-files-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
  }
  .site-check-file-item {
    color: #2a7a4b;
    font-size: 13px;
    font-weight: 600;
  }
  .site-check-file-error {
    color: #c0392b;
  }
  .site-check-disclaimer {
    margin: 0;
    color: #5d6470;
    font-size: 13px;
    line-height: 1.6;
  }
  .site-check-consent {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: #4f5762;
    font-size: 13px;
    line-height: 1.55;
  }
  .site-check-consent input {
    margin-top: 2px;
    accent-color: #171d23;
  }
  .site-check-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: #171d23;
    color: #f4f1eb;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }
  .site-check-submit:hover {
    background: #232c35;
    transform: translateY(-1px);
  }
  .site-check-response {
    margin: 0;
    color: #5d6470;
    font-size: 13px;
    line-height: 1.6;
  }
  .site-check-response.is-success {
    color: #214b2b;
  }

  /* SCREEN 7 — CATALOG SHOWCASE */
  #catalog-showcase {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 82% 16%, rgba(178, 118, 86, 0.1), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f4f1ea;
  }
  #catalog-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
      linear-gradient(144deg, transparent 60%, rgba(27, 36, 48, 0.08) 60.1%, transparent 60.5%);
    pointer-events: none;
  }
  .catalog-showcase-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
  }
  .catalog-showcase-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    margin-bottom: 52px;
  }
  .catalog-showcase-heading {
    grid-column: 1 / span 7;
  }
  #catalog-showcase h2 {
    margin: 16px 0 0;
    max-width: 8ch;
    color: #171d23;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .catalog-showcase-intro {
    grid-column: 9 / -1;
    max-width: 30ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
    padding-bottom: 8px;
  }
  .catalog-showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .catalog-showcase-card {
    position: relative;
    display: grid;
    gap: 18px;
  }
  .catalog-showcase-card::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    pointer-events: none;
  }
  .catalog-showcase-card-main {
    grid-column: 1 / span 6;
  }
  .catalog-showcase-card-popular,
  .catalog-showcase-card-compact {
    grid-column: 8 / -1;
  }
  .catalog-showcase-card-compact {
    margin-top: 14px;
  }
  .catalog-showcase-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 6px 10px;
    background: rgba(23, 29, 35, 0.84);
    color: #f4f1eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-showcase-media {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    background: rgba(255, 255, 255, 0.52);
    overflow: hidden;
  }
  .catalog-showcase-card.has-badge .catalog-showcase-media {
    padding-top: 22px;
  }
  .catalog-showcase-card-main .catalog-showcase-media {
    min-height: 560px;
  }
  .catalog-showcase-image {
    display: block;
    width: min(100%, 560px);
    height: auto;
    object-fit: contain;
  }
  .catalog-showcase-card-main .catalog-showcase-image {
    width: min(100%, 760px);
  }
  .catalog-showcase-body {
    display: grid;
    gap: 10px;
  }
  .catalog-showcase-volume {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .catalog-showcase-body h3 {
    margin: 0;
    color: #171d23;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .catalog-showcase-text {
    margin: 0;
    max-width: 34ch;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .catalog-showcase-price {
    color: #171d23;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-top: 6px;
  }
  .catalog-showcase-price span {
    color: #6e7681;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
  }
  .catalog-showcase-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .catalog-showcase-btn,
  .catalog-showcase-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: #171d23;
    color: #f4f1eb;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }
  .catalog-showcase-btn:hover,
  .catalog-showcase-footer-btn:hover {
    background: #232c35;
    transform: translateY(-1px);
  }
  .catalog-showcase-link {
    padding: 0;
    border: none;
    background: none;
    color: #5d6470;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .catalog-showcase-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .catalog-showcase-proof {
    margin: 0;
    max-width: 36ch;
    color: #171d23;
    font-size: 18px;
    line-height: 1.55;
  }

  /* SCREEN 8 — GUARANTEES & DOCUMENTS */
  #documents-trust {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 16% 16%, rgba(178, 118, 86, 0.1), transparent 20%),
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f5f2eb;
  }
  #documents-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
      linear-gradient(144deg, transparent 61%, rgba(27, 36, 48, 0.07) 61.1%, transparent 61.45%);
    pointer-events: none;
  }
  .documents-trust-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
  }
  .documents-trust-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    margin-bottom: 56px;
  }
  .documents-trust-heading {
    grid-column: 1 / span 6;
  }
  #documents-trust h2 {
    margin: 16px 0 0;
    max-width: 10ch;
    color: #171d23;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .documents-trust-aside {
    grid-column: 8 / -1;
    display: grid;
    gap: 28px;
    padding-top: 8px;
  }
  .documents-trust-intro {
    margin: 0;
    max-width: 32ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
  }
  .documents-trust-points {
    display: grid;
    gap: 18px;
  }
  .documents-trust-point {
    display: grid;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 29, 35, 0.1);
  }
  .documents-trust-point:first-child {
    padding-top: 0;
    border-top: none;
  }
  .documents-trust-point h3 {
    margin: 0;
    color: #171d23;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .documents-trust-point p {
    margin: 0;
    max-width: 34ch;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.7;
  }
  .documents-trust-docs {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .documents-trust-doc {
    position: relative;
    appearance: none;
    display: grid;
    gap: 14px;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    text-align: left;
    font: inherit;
    cursor: zoom-in;
  }
  .documents-trust-doc::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    pointer-events: none;
  }
  .documents-trust-doc-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    overflow: hidden;
  }
  .documents-trust-doc-main {
    grid-column: 1 / span 7;
  }
  .documents-trust-doc-main .documents-trust-doc-frame {
    min-height: 640px;
  }
  .docs-swipe-hint { display: none; }
  .documents-trust-docs-rail {
    grid-column: 8 / -1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .documents-trust-doc-passport {
    grid-column: 1 / -1;
  }
  .documents-trust-doc-passport .documents-trust-doc-frame {
    min-height: 340px;
  }
  .documents-trust-doc-cert {
    grid-column: 1 / span 3;
  }
  .documents-trust-doc-brand {
    grid-column: 4 / -1;
  }
  .documents-trust-doc-cert .documents-trust-doc-frame,
  .documents-trust-doc-brand .documents-trust-doc-frame {
    min-height: 280px;
  }
  .documents-trust-doc-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 18px 38px rgba(23, 29, 35, 0.08);
  }
  .documents-trust-doc-meta {
    display: grid;
    gap: 6px;
  }
  .documents-trust-doc-kicker {
    color: #8b634f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .documents-trust-doc-caption {
    max-width: 34ch;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.65;
  }
  .documents-trust-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .documents-trust-proof {
    margin: 0;
    max-width: 40ch;
    color: #171d23;
    font-size: 18px;
    line-height: 1.55;
  }
  .documents-trust-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .documents-trust-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 0;
    background: #171d23;
    color: #f4f1eb;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }
  .documents-trust-btn:hover {
    background: #232c35;
    transform: translateY(-1px);
  }
  .documents-trust-link {
    padding: 0;
    border: none;
    background: none;
    color: #5d6470;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
  }

  /* SCREEN 9 — FAQ EDITORIAL */
  #faq-editorial {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 82% 14%, rgba(178, 118, 86, 0.1), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(27, 36, 48, 0.07) 0,
        rgba(27, 36, 48, 0.07) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f3f0e9;
  }
  #faq-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
      linear-gradient(146deg, transparent 61%, rgba(27, 36, 48, 0.07) 61.1%, transparent 61.45%);
    pointer-events: none;
  }
  .faq-editorial-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
  }
  .faq-editorial-header {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    margin-bottom: 52px;
  }
  .faq-editorial-heading {
    grid-column: 1 / span 7;
  }
  #faq-editorial h2 {
    margin: 16px 0 0;
    max-width: 10ch;
    color: #171d23;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .faq-editorial-intro {
    grid-column: 9 / -1;
    display: grid;
    gap: 16px;
    padding-top: 8px;
  }
  .faq-editorial-intro p {
    margin: 0;
    max-width: 32ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
  }
  .faq-editorial-note {
    color: #171d23;
  }
  .faq-editorial-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .faq-editorial-copy {
    grid-column: 1 / span 4;
    position: sticky;
    top: 112px;
  }
  .faq-editorial-proof {
    margin: 0;
    max-width: 18ch;
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.9;
    text-transform: uppercase;
  }
  .faq-editorial-list {
    grid-column: 6 / -1;
  }
  #faq-editorial .faq-list {
    margin-top: 0;
  }
  #faq-editorial .faq-item {
    border-bottom: 1px solid rgba(23, 29, 35, 0.1);
  }
  #faq-editorial .faq-q {
    padding: 24px 0;
    color: #171d23;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  #faq-editorial .faq-q:hover {
    color: #171d23;
  }
  #faq-editorial .faq-toggle {
    color: #8b634f;
    font-size: 28px;
  }
  #faq-editorial .faq-a {
    padding-bottom: 24px;
    max-width: 56ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.8;
  }

  /* SCREEN 9 — FINAL CTA EDITORIAL */
  #final-cta-editorial {
    padding: 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background:
      radial-gradient(circle at 18% 12%, rgba(178, 118, 86, 0.16), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #11161c;
  }
  #final-cta-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
      linear-gradient(148deg, transparent 58%, rgba(255, 255, 255, 0.06) 58.1%, transparent 58.45%);
    pointer-events: none;
  }
  .final-cta-editorial-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 112px 40px 120px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }
  .final-cta-editorial-copy {
    grid-column: 1 / span 6;
    display: grid;
    gap: 28px;
  }
  #final-cta-editorial .section-label {
    color: #8b634f;
    margin-bottom: 0;
  }
  #final-cta-editorial h2 {
    margin: 0;
    max-width: 9ch;
    color: #f4f1ea;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .final-cta-editorial-intro {
    margin: 0;
    max-width: 36ch;
    color: #c7ced6;
    font-size: 17px;
    line-height: 1.8;
  }
  .final-cta-editorial-points {
    display: grid;
    gap: 18px;
  }
  .final-cta-editorial-point {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .final-cta-editorial-point:first-child {
    padding-top: 0;
    border-top: none;
  }
  .final-cta-editorial-point-index {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-top: 2px;
  }
  .final-cta-editorial-point-body {
    display: grid;
    gap: 8px;
  }
  .final-cta-editorial-point-body h3 {
    margin: 0;
    color: #f4f1ea;
    font-size: 17px;
    line-height: 1.2;
  }
  .final-cta-editorial-point-body p {
    margin: 0;
    max-width: 34ch;
    color: #a6b0bc;
    font-size: 14px;
    line-height: 1.7;
  }
  .final-cta-editorial-proof {
    margin: 0;
    color: #d5dbe2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .final-cta-editorial-action {
    grid-column: 8 / -1;
  }
  .final-cta-editorial-form {
    display: grid;
    gap: 18px;
    padding: 32px;
    background: #f6f1e8;
    border: 1px solid rgba(23, 29, 35, 0.08);
  }
  .final-cta-editorial-form-head {
    display: grid;
    gap: 8px;
    margin-bottom: 4px;
  }
  .final-cta-editorial-form-head h3 {
    margin: 0;
    color: #171d23;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .final-cta-editorial-form-head p {
    margin: 0;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .final-cta-editorial-field {
    display: grid;
    gap: 8px;
  }
  .final-cta-editorial-field label,
  .final-cta-editorial-contact legend {
    color: #171d23;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .final-cta-editorial-input,
  .final-cta-editorial-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(23, 29, 35, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: #171d23;
    font: inherit;
    font-size: 15px;
    transition: border-color 0.18s ease, background-color 0.18s ease;
  }
  .final-cta-editorial-input:focus,
  .final-cta-editorial-textarea:focus {
    outline: none;
    border-color: rgba(139, 99, 79, 0.72);
    background: #ffffff;
  }
  .final-cta-editorial-textarea {
    min-height: 116px;
    resize: vertical;
    line-height: 1.6;
  }
  .final-cta-editorial-contact {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: none;
  }
  .final-cta-editorial-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .final-cta-editorial-contact-option {
    position: relative;
  }
  .final-cta-editorial-contact-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  .final-cta-editorial-contact-option span {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 29, 35, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: #5d6470;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  }
  .final-cta-editorial-contact-option input:checked + span {
    border-color: rgba(139, 99, 79, 0.72);
    background: rgba(139, 99, 79, 0.1);
    color: #171d23;
  }
  .final-cta-editorial-disclaimer {
    margin: 2px 0 0;
    color: #5d6470;
    font-size: 13px;
    line-height: 1.7;
  }
  .final-cta-editorial-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #5d6470;
    font-size: 13px;
    line-height: 1.6;
  }
  .final-cta-editorial-consent input {
    margin-top: 3px;
    flex-shrink: 0;
  }
  .final-cta-editorial-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: none;
    background: #171d23;
    color: #f4f1ea;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }
  .final-cta-editorial-submit:hover {
    background: #232c35;
    transform: translateY(-1px);
  }
  .final-cta-editorial-response {
    margin: 0;
    color: #5d6470;
    font-size: 14px;
    line-height: 1.7;
  }
  .final-cta-editorial-response.is-success {
    color: #214b2b;
  }

  /* SCREEN 8 — LEAD FORM 1 */
  #lead1 { background: white; max-width: 100%; }
  .lead1-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .form-box { background: var(--light-bg); border-radius: 16px; padding: 40px; }
  .form-box h3 { margin-bottom: 8px; color: var(--blue); }
  .form-box p { font-size: 18px; color: var(--muted); margin-bottom: 28px; line-height: 1.5; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #dde4f0; border-radius: 8px;
    font-size: 19px; font-family: inherit; color: var(--text);
    transition: border-color 0.2s; background: white;
  }
  .form-group textarea { min-height: 118px; resize: vertical; line-height: 1.5; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); }
  .file-upload {
    width: 100%; padding: 24px; border: 2px dashed #bbc8e0; border-radius: 8px;
    text-align: center; cursor: pointer; font-size: 18px; color: var(--muted);
    transition: all 0.2s; background: white;
  }
  .file-upload:hover { border-color: var(--blue); color: var(--blue); }
  .file-upload span { display: block; font-size: 30px; margin-bottom: 6px; }
  .form-note { font-size: 16px; color: var(--muted); margin-top: 10px; text-align: center; }

  /* SCREEN 5 — EQUIPMENT */
  #equipment { background: var(--light-bg); max-width: 100%; }
  .eq-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; }
  .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .eq-card { background: white; border-radius: 14px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); position: relative; }
  .eq-card-icon { font-size: 34px; margin-bottom: 12px; }
  .eq-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
  .eq-card p { font-size: 17px; color: var(--muted); line-height: 1.5; }
  .eq-badge { position: absolute; top: 16px; right: 16px; font-size: 14px; font-weight: 700; padding: 3px 8px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
  .badge-all { background: #d4edda; color: #155724; }
  .badge-std { background: #cce5ff; color: #004085; }
  .badge-prem { background: #fff3cd; color: #856404; }

  /* SCREEN 6 — CASES */
  #cases { background: white; }
  .cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
  .case-card { background: var(--light-bg); border-radius: 16px; overflow: hidden; }
  .case-video { background: #1a2a3a; height: 180px; display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
  .play-btn { width: 60px; height: 60px; background: rgba(217,79,43,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: white; transition: transform 0.2s; }
  .case-video:hover .play-btn { transform: scale(1.15); }
  .case-body { padding: 24px; }
  .case-client { font-weight: 700; color: var(--blue); font-size: 19px; margin-bottom: 6px; }
  .case-task { font-size: 17px; color: var(--muted); margin-bottom: 12px; }
  .case-result { font-size: 18px; color: var(--text); line-height: 1.5; }
  .case-result strong { color: var(--blue); }
  .rating-row { display: flex; gap: 20px; margin-top: 40px; align-items: center; justify-content: center; }
  .rating-badge { background: var(--light-bg); border-radius: 12px; padding: 20px 32px; text-align: center; }
  .rating-num { font-size: 42px; font-weight: 900; color: var(--blue); }
  .rating-stars { color: #f5a623; font-size: 22px; }
  .rating-label { font-size: 17px; color: var(--muted); margin-top: 4px; }

  /* SCREEN 7 — QUIZ */
  #quiz { background: var(--blue); max-width: 100%; }
  .quiz-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .quiz-gift { background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 24px; margin-bottom: 28px; }
  .gift-icon { font-size: 38px; margin-bottom: 8px; }
  .gift-title { color: #f0c080; font-weight: 800; font-size: 20px; line-height: 1.4; }
  .quiz-intro h2 { color: white; margin-bottom: 12px; }
  .quiz-intro p { color: #b8d0f0; font-size: 20px; }
  .quiz-box { background: white; border-radius: 16px; padding: 32px; }
  .quiz-progress { display: flex; gap: 8px; margin-bottom: 24px; }
  .progress-step { height: 6px; flex: 1; border-radius: 3px; background: #e0e8f0; }
  .progress-step.active { background: var(--red); }
  .progress-step.done { background: var(--blue); }
  .quiz-question { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
  .quiz-options { display: flex; flex-direction: column; gap: 10px; }
  .quiz-option {
    padding: 12px 16px; border: 2px solid #e0e8f0; border-radius: 8px; font-size: 18px; cursor: pointer;
    transition: all 0.15s; background: white; text-align: left; font-family: inherit; color: var(--text);
  }
  .quiz-option:hover { border-color: var(--blue); background: var(--light-bg); }
  .quiz-option.selected { border-color: var(--blue); background: var(--light-bg); font-weight: 600; }
  .quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }
  .quiz-step-label { font-size: 16px; color: var(--muted); }

  /* SCREEN 8 — CATALOG */
  #catalog { background: white; }
  .tabs { display: flex; gap: 0; border-bottom: 2px solid #e0e8f0; margin-bottom: 40px; }
  .tab-btn { padding: 14px 28px; font-size: 19px; font-weight: 600; background: none; border: none; cursor: pointer; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; font-family: inherit; }
  .tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
  .catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .catalog-mobile-label { display: none; font-size: 19px; font-weight: 700; color: var(--blue); padding: 24px 0 12px; border-top: 2px solid #e0e8f0; margin-top: 40px; }
  .catalog-card { border: 2px solid #e8eef8; border-radius: 16px; overflow: hidden; transition: all 0.2s; cursor: pointer; }
  .catalog-card:hover { border-color: var(--blue); box-shadow: 0 6px 30px rgba(27,79,138,0.12); transform: translateY(-2px); }
  .catalog-img { background: linear-gradient(135deg, #1B3F70 0%, #2a5fa0 100%); height: 160px; display: flex; align-items: center; justify-content: center; font-size: 54px; position: relative; }
  .catalog-volume { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.15); color: white; font-size: 17px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
  .catalog-body { padding: 20px; }
  .catalog-name { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
  .catalog-desc { font-size: 17px; color: var(--muted); margin-bottom: 14px; }
  .catalog-price { font-size: 24px; font-weight: 900; color: var(--text); margin-bottom: 16px; }
  .catalog-price span { font-size: 18px; font-weight: 400; color: var(--muted); }
  .catalog-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .btn-sm { padding: 9px 16px; font-size: 17px; font-weight: 600; border-radius: 6px; cursor: pointer; border: none; font-family: inherit; }
  .btn-sm-primary { background: var(--red); color: white; }
  .btn-sm-outline { background: none; border: 1px solid var(--blue); color: var(--blue); }
  .btn-sm-outline:hover { background: var(--blue); color: white; }
  .exclusive-badge { background: linear-gradient(135deg, #D94F2B, #ff7f50); color: white; font-size: 15px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; display: inline-block; }

  /* Catalog expand */
  .catalog-expand { display: none; margin: 14px 0; border-top: 1px solid #e8eef8; padding-top: 14px; }
  .catalog-card.open .catalog-expand { display: block; }
  .catalog-expand-row { display: flex; justify-content: space-between; font-size: 17px; padding: 5px 0; border-bottom: 1px solid #f0f4fa; gap: 12px; }
  .catalog-expand-row:last-child { border-bottom: none; }
  .ce-label { color: var(--muted); font-weight: 600; flex-shrink: 0; }
  .catalog-expand-row span:last-child { color: var(--text); text-align: right; }

  /* SCREEN 9 — PRICING */
  #pricing { background: var(--light-bg); max-width: 100%; }
  .pricing-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; align-items: start; }
  .price-card { background: white; border-radius: 16px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); text-align: center; transition: box-shadow 0.2s; }
  .price-card.featured { background: var(--blue); color: white; transform: translateY(-8px); box-shadow: 0 12px 40px rgba(27,79,138,0.3); }
  .price-expand { display: none; text-align: left; margin-top: 20px; border-top: 1px solid #e8eef8; padding-top: 20px; }
  .price-card.featured .price-expand { border-top-color: rgba(255,255,255,0.15); }
  .price-card.open .price-expand { display: block; }
  .price-expand-item { display: flex; gap: 10px; align-items: start; margin-bottom: 10px; font-size: 18px; }
  .price-expand-item::before { content: "✓"; color: var(--red); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
  .price-card.featured .price-expand-item { color: #b8d0f0; }
  .price-card.featured .price-expand-item::before { color: #f0c080; }
  .price-expand-specs { background: rgba(27,79,138,0.06); border-radius: 8px; padding: 14px 16px; margin-top: 12px; font-size: 17px; }
  .price-card.featured .price-expand-specs { background: rgba(255,255,255,0.08); color: #b8d0f0; }
  .price-expand-specs div { margin-bottom: 6px; }
  .price-expand-specs div:last-child { margin-bottom: 0; }
  .price-expand-specs strong { color: var(--text); }
  .price-card.featured .price-expand-specs strong { color: white; }
  .price-type { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
  .price-card.featured .price-type { color: #8bb5df; }
  .price-volume { font-size: 24px; font-weight: 900; margin-bottom: 16px; }
  .price-card.featured .price-volume { color: white; }
  .price-amount { font-size: 30px; font-weight: 900; color: var(--blue); line-height: 1.1; }
  .price-card.featured .price-amount { color: #f0c080; }
  .price-period { font-size: 16px; color: var(--muted); margin-bottom: 16px; }
  .price-card.featured .price-period { color: #8bb5df; }
  .price-desc { font-size: 18px; color: var(--muted); line-height: 1.5; margin-bottom: 20px; }
  .price-card.featured .price-desc { color: #b8d0f0; }
  .price-note { font-size: 18px; color: var(--muted); text-align: center; margin-top: 24px; }
  .price-note strong { color: var(--text); }

  /* SCREEN 10 — STEPS */
  #steps { background: white; }
  .steps-timeline { margin-top: 48px; position: relative; }
  .steps-timeline::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px; background: #e0e8f0; }
  .step-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; margin-bottom: 32px; position: relative; }
  .step-num { width: 64px; height: 64px; background: var(--blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 900; flex-shrink: 0; position: relative; z-index: 1; }
  .step-item.highlighted .step-num { background: var(--red); }
  .step-content { padding-top: 10px; }
  .step-title { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
  .step-desc { font-size: 18px; color: var(--muted); line-height: 1.5; }
  .step-cta-box { background: var(--blue); border-radius: 14px; padding: 32px; display: flex; justify-content: space-between; align-items: center; margin-top: 48px; }
  .step-cta-box p { color: #b8d0f0; font-size: 20px; }
  .step-cta-box h3 { color: white; font-size: 24px; margin-bottom: 4px; }

  /* SCREEN 11 — GUARANTEES */
  #guarantees { background: var(--blue); max-width: 100%; }
  .guarantees-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; }
  .guarantees-inner h2 { color: white; margin-bottom: 8px; }
  .guarantees-inner .sub { color: #b8d0f0; font-size: 20px; margin-bottom: 48px; }
  .guarantee-list { display: flex; flex-direction: column; gap: 16px; }
  .guarantee-item { display: flex; gap: 20px; align-items: start; }
  .g-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
  .g-text h4 { color: white; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
  .g-text p { color: #8bb5df; font-size: 18px; line-height: 1.5; }

  /* SCREEN 12 — FAQ */
  #faq { background: white; }
  .faq-list { margin-top: 40px; }
  .faq-item { border-bottom: 1px solid #e8eef8; }
  .faq-q { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 20px; font-weight: 600; color: var(--text); gap: 16px; }
  .faq-q:hover { color: var(--blue); }
  .faq-toggle { font-size: 24px; color: var(--red); font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
  .faq-a { padding-bottom: 20px; font-size: 19px; color: var(--muted); line-height: 1.7; display: none; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  /* SCREEN 13 — TEAM */
  #team { background: var(--light-bg); max-width: 100%; }
  .team-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
  .team-card { background: white; border-radius: 16px; padding: 24px; text-align: center; }
  .team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), #3a7fd4); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 34px; }
  .team-role { font-size: 16px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
  .team-desc { font-size: 17px; color: var(--muted); line-height: 1.5; }
  .team-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
  .team-stat { background: white; border-radius: 12px; padding: 20px; text-align: center; }
  .ts-num { font-size: 38px; font-weight: 900; color: var(--blue); }
  .ts-label { font-size: 16px; color: var(--muted); margin-top: 4px; }

  /* SCREEN 14 — FINAL CTA */
  #final { background: var(--blue); max-width: 100%; }
  .final-inner { max-width: 1760px; margin: 0 auto; padding: 80px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .final-text h2 { color: white; margin-bottom: 16px; }
  .final-text p { color: #b8d0f0; font-size: 20px; line-height: 1.6; }
  .final-form { background: white; border-radius: 16px; padding: 40px; }
  .final-form h3 { color: var(--blue); margin-bottom: 6px; }
  .final-form p { color: var(--muted); font-size: 18px; margin-bottom: 24px; }
  .messenger-choice { display: flex; gap: 10px; margin-bottom: 16px; }
  .m-btn { flex: 1; padding: 11px; border: 2px solid #e0e8f0; border-radius: 8px; font-size: 18px; font-weight: 600; cursor: pointer; background: white; font-family: inherit; color: var(--text); transition: all 0.15s; }
  .m-btn:hover { border-color: var(--blue); color: var(--blue); }
  .m-btn.selected { border-color: var(--blue); background: var(--light-bg); color: var(--blue); }
  .final-note { font-size: 16px; color: var(--muted); text-align: center; margin-top: 10px; }

  /* FOOTER */
  .footer-editorial {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, #141b23 0%, #11171e 100%);
    border-top: 1px solid rgba(244, 241, 234, 0.08);
  }
  .footer-editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        rgba(244, 241, 234, 0.06) 0,
        rgba(244, 241, 234, 0.06) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      );
    opacity: 0.34;
    pointer-events: none;
  }
  .footer-editorial-shell {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 34px 40px 22px;
  }
  .footer-editorial-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 28px;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(244, 241, 234, 0.1);
  }
  .footer-editorial-brand {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }
  .footer-editorial-logo {
    width: 58px;
    height: auto;
    display: block;
  }
  .footer-editorial-brand-copy {
    display: grid;
    gap: 6px;
  }
  .footer-editorial-kicker,
  .footer-editorial-column-title {
    color: #c37a4d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .footer-editorial-brand-line {
    margin: 0;
    color: #f4f1ea;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.03em;
  }
  .footer-editorial-contact {
    display: grid;
    gap: 6px;
    justify-items: start;
  }
  .footer-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 22px;
  }
  .footer-editorial-column {
    display: grid;
    gap: 10px;
    align-content: start;
  }
  .footer-editorial-link,
  .footer-editorial-meta,
  .footer-editorial-phone,
  .footer-editorial-link-button {
    color: rgba(244, 241, 234, 0.78);
    font-size: 14px;
    line-height: 1.65;
    text-decoration: none;
  }
  .footer-editorial-link,
  .footer-editorial-phone,
  .footer-editorial-link-button {
    transition: color 0.18s ease, transform 0.18s ease;
  }
  .footer-editorial-link:hover,
  .footer-editorial-phone:hover,
  .footer-editorial-link-button:hover {
    color: #f4f1ea;
    transform: translateX(2px);
  }
  .footer-editorial-phone {
    color: #f4f1ea;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .footer-editorial-address,
  .footer-editorial-meta {
    color: rgba(244, 241, 234, 0.72);
    font-size: 14px;
    line-height: 1.65;
  }
  .footer-editorial-cta {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid rgba(244, 241, 234, 0.18);
    background: #f4f1ea;
    color: #171d23;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
      transform 0.18s ease,
      background-color 0.18s ease,
      box-shadow 0.18s ease;
  }
  .footer-editorial-cta:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  }
  .footer-editorial-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border: none;
    background: none;
    color: rgba(244, 241, 234, 0.78);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.18s ease;
  }
  .footer-editorial-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(244, 241, 234, 0.12);
    padding-top: 18px;
  }
  .footer-editorial-legal {
    margin: 0;
    color: rgba(244, 241, 234, 0.6);
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  @media (max-width: 1180px) {
    .footer-editorial-top {
      grid-template-columns: 1fr;
      justify-items: start;
      gap: 18px;
    }
    .footer-editorial-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 780px) {
    .footer-editorial-shell {
      padding: 24px 20px 18px;
    }
    .footer-editorial-brand {
      grid-template-columns: 52px minmax(0, 1fr);
      gap: 12px;
    }
    .footer-editorial-logo {
      width: 52px;
    }
    .footer-editorial-brand-line {
      font-size: 16px;
    }
    .footer-editorial-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    .footer-editorial-phone {
      font-size: 22px;
    }
    .footer-editorial-cta {
      width: 100%;
    }
    .footer-editorial-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }

  /* RESPONSIVE */
  @media (max-width: 1400px) {
    nav {
      width: calc(100% - 28px);
    }
    #hero {
      width: calc(100% - 28px);
      padding: 48px 0 56px;
    }
    .hero-inner {
      gap: 20px;
    }
    .hero-copy {
      grid-column: 1 / span 5;
    }
    .hero-head {
      grid-template-columns: minmax(0, 1fr) 160px;
      gap: 20px;
    }
    #hero h1 {
      font-size: clamp(54px, 7vw, 104px);
    }
    .hero-visual,
    .hero-visual-frame {
      min-height: 660px;
    }
    .hero-visual {
      grid-column: 6 / -1;
    }
    .hero-visual-image {
      width: min(100%, 780px);
    }
    .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 1024px) {
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
    section { padding: 60px 40px; }
    nav {
      display: flex;
      flex-wrap: wrap;
      width: calc(100% - 24px);
      padding: 20px 0 16px;
      gap: 16px;
    }
    .nav-brand { gap: 12px; }
    .nav-address {
      width: 100%;
      order: 2;
      padding-left: 14px;
      white-space: normal;
    }
    .nav-address::before {
      width: 7px;
      height: 7px;
      margin-top: -3.5px;
    }
    .nav-phone {
      order: 3;
      margin-left: 0;
      font-size: 18px;
    }
    .nav-cta {
      order: 4;
      width: auto;
    }
    #hero {
      width: calc(100% - 24px);
      min-height: auto;
      margin-bottom: 40px;
      padding: 36px 0 40px;
    }
    .hero-inner {
      grid-template-columns: repeat(12, minmax(0, 1fr));
      gap: 24px;
      min-height: auto;
      align-items: start;
    }
    .hero-copy {
      grid-column: 1 / span 6;
    }
    .hero-head {
      display: grid;
      position: static;
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 28px;
    }
    #hero h1 {
      max-width: none;
      font-size: clamp(52px, 9vw, 86px);
    }
    .hero-sub {
      position: static;
      max-width: 360px;
      margin: 0;
      transform: none;
    }
    .hero-visual {
      grid-column: 7 / -1;
      min-height: 560px;
    }
    .hero-visual-frame {
      min-height: 560px;
    }
    .hero-visual-image {
      width: min(100%, 680px);
      transform: translate(8px, 0);
    }
    #product {
      padding-top: 96px;
      padding-bottom: 104px;
    }
    .product-header {
      margin-bottom: 52px;
    }
    .product-heading {
      grid-column: 1 / span 8;
    }
    .product-aside {
      grid-column: 9 / -1;
      padding-bottom: 0;
    }
    #product h2 {
      max-width: 10ch;
      font-size: clamp(40px, 5.6vw, 60px);
    }
    .product-editorial-grid {
      gap: 20px;
    }
    .product-media-main {
      grid-column: 1 / span 8;
    }
    .product-media-secondary {
      grid-column: 9 / -1;
      margin-top: 84px;
    }
    .product-media-detail {
      grid-column: 7 / span 4;
      margin-top: -44px;
    }
    .product-facts {
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 48px;
    }
    .product-fact {
      padding: 18px 0;
      border-top: 1px solid rgba(23, 29, 35, 0.1);
    }
    .product-fact:first-child {
      padding-top: 0;
      border-top: none;
    }
    #social {
      background:
        radial-gradient(circle at 18% 12%, rgba(178, 118, 86, 0.14), transparent 20%),
        repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.05) 0,
          rgba(255, 255, 255, 0.05) 1px,
          transparent 1px,
          transparent calc((100vw - 80px) / 5)
        ),
        #11161c;
    }
    .social-inner {
      padding: 96px 40px 104px;
    }
    .social-copy {
      grid-column: 1 / span 6;
    }
    #social h2 {
      max-width: 11ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .social-visual {
      grid-column: 1 / span 7;
      margin-top: 40px;
    }
    .social-proof-list {
      grid-column: 8 / -1;
    }
    .social-proof-body h3 {
      font-size: 22px;
    }
    .cases-editorial-inner {
      padding: 96px 40px 104px;
    }
    .cases-editorial-header {
      margin-bottom: 48px;
    }
    .cases-editorial-heading {
      grid-column: 1 / span 8;
    }
    .cases-editorial-intro {
      grid-column: 9 / -1;
    }
    #cases-editorial h2 {
      max-width: 11ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .case-editorial-card-main {
      grid-column: 1 / span 8;
    }
    .case-editorial-card-top,
    .case-editorial-card-bottom {
      grid-column: 9 / -1;
    }
    .cases-editorial-footer {
      align-items: center;
    }
    .installations-map-inner {
      padding: 96px 40px 104px;
    }
    .installations-map-header {
      margin-bottom: 40px;
    }
    .installations-map-heading {
      grid-column: 1 / span 8;
    }
    .installations-map-intro {
      grid-column: 9 / -1;
    }
    #installations-map h2 {
      max-width: 11ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .installations-map-stage {
      grid-column: 1 / span 7;
    }
    .installations-map-aside {
      grid-column: 8 / -1;
    }
    #installations-map .install-map-canvas {
      height: 520px;
    }
    .site-check-inner {
      padding: 96px 40px 104px;
    }
    .site-check-action {
      grid-column: 1 / span 6;
    }
    .site-check-copy {
      grid-column: 7 / -1;
    }
    #site-check h2 {
      max-width: 11ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .catalog-showcase-inner {
      padding: 96px 40px 104px;
    }
    .catalog-showcase-heading {
      grid-column: 1 / span 8;
    }
    .catalog-showcase-intro {
      grid-column: 9 / -1;
    }
    #catalog-showcase h2 {
      max-width: 9ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .catalog-showcase-card-main {
      grid-column: 1 / span 7;
    }
    .catalog-showcase-card-popular,
    .catalog-showcase-card-compact {
      grid-column: 9 / -1;
    }
    .catalog-showcase-card-main .catalog-showcase-media {
      min-height: 520px;
    }
    .documents-trust-inner {
      padding: 96px 40px 104px;
    }
    .documents-trust-heading {
      grid-column: 1 / span 7;
    }
    .documents-trust-aside {
      grid-column: 9 / -1;
    }
    #documents-trust h2 {
      max-width: 10ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .documents-trust-doc-main {
      grid-column: 1 / span 7;
    }
    .documents-trust-doc-main .documents-trust-doc-frame {
      min-height: 580px;
    }
    .documents-trust-docs-rail {
      grid-column: 9 / -1;
      gap: 20px;
    }
    .documents-trust-doc-passport .documents-trust-doc-frame {
      min-height: 300px;
    }
    .documents-trust-doc-cert .documents-trust-doc-frame,
    .documents-trust-doc-brand .documents-trust-doc-frame {
      min-height: 248px;
    }
    .faq-editorial-inner {
      padding: 96px 40px 104px;
    }
    .faq-editorial-heading {
      grid-column: 1 / span 8;
    }
    .faq-editorial-intro {
      grid-column: 9 / -1;
    }
    #faq-editorial h2 {
      max-width: 10ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .faq-editorial-copy {
      grid-column: 1 / span 3;
    }
    .faq-editorial-list {
      grid-column: 5 / -1;
    }
    #faq-editorial .faq-q {
      font-size: 20px;
    }
    .final-cta-editorial-inner {
      padding: 96px 40px 104px;
    }
    .final-cta-editorial-copy {
      grid-column: 1 / span 7;
    }
    .final-cta-editorial-action {
      grid-column: 9 / -1;
    }
    #final-cta-editorial h2 {
      max-width: 10ch;
      font-size: clamp(38px, 5vw, 58px);
    }
    .final-cta-editorial-form {
      padding: 28px;
    }
    .final-cta-editorial-form-head h3 {
      font-size: 28px;
    }
    .lead1-inner, .quiz-inner, .final-inner { padding: 60px 40px; }
    .eq-inner, .pricing-inner, .team-inner, .guarantees-inner { padding: 60px 40px; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }
    section { padding: 60px 20px; }
    #product {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #f3f1ec;
      padding-top: 72px;
      padding-bottom: 84px;
    }
    #social {
      background:
        radial-gradient(circle at 22% 10%, rgba(178, 118, 86, 0.13), transparent 24%),
        repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.05) 0,
          rgba(255, 255, 255, 0.05) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #11161c;
    }
    #cases-editorial {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #f3f1ec;
    }
    #installations-map {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #f7f5f0;
    }
    #site-check {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #fbfaf6;
    }
    #catalog-showcase {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #f4f1ea;
    }
    #documents-trust {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #f5f2eb;
    }
    #faq-editorial {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(27, 36, 48, 0.06) 0,
          rgba(27, 36, 48, 0.06) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #f3f0e9;
    }
    #final-cta-editorial {
      background:
        repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.05) 0,
          rgba(255, 255, 255, 0.05) 1px,
          transparent 1px,
          transparent calc((100vw - 40px) / 3)
        ),
        #11161c;
    }
    nav {
      width: calc(100% - 20px);
      padding: 18px 0 14px;
      gap: 12px;
    }
    .nav-brand {
      width: 100%;
      gap: 10px;
    }
    .nav-logo-image { width: 60px; }
    .nav-brand-text {
      font-size: 28px;
      max-width: none;
      white-space: nowrap;
    }
    .nav-brand-sub {
      font-size: 10px;
      letter-spacing: 0.14em;
    }
    .nav-address {
      width: 100%;
      white-space: normal;
      font-size: 13px;
      line-height: 1.45;
    }
    .nav-phone {
      width: 100%;
      order: 3;
      margin-left: 0;
      font-size: 18px;
    }
    .nav-catalog { display: none; }
    .catalog-side-tab { display: none; }
    .nav-hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 8px;
      border: none;
      background: #111319;
      border-radius: 6px;
      cursor: pointer;
      order: 4;
      position: fixed;
      top: 16px;
      left: 16px;
      z-index: 400;
      box-shadow: 0 2px 12px rgba(0,0,0,0.22);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .nav-hamburger.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .nav-hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: #ffffff;
      border-radius: 1px;
    }
    .nav-cta {
      width: auto;
      order: 5;
      text-align: center;
      padding: 10px 14px;
    }
    #hero {
      width: calc(100% - 20px);
      margin: 0 auto 44px;
      padding: 28px 0 32px;
      min-height: auto;
    }
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 28px;
      min-height: auto;
    }
    .hero-copy {
      grid-column: auto;
    }
    .hero-eyebrow {
      margin-bottom: 16px;
      font-size: 11px;
      letter-spacing: 0.14em;
    }
    .hero-head {
      display: grid;
      position: static;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 24px;
    }
    #hero h1 {
      max-width: 9ch;
      font-size: clamp(46px, 15vw, 72px);
    }
    .hero-sub {
      position: static;
      max-width: 280px;
      font-size: 15px;
      margin: 0;
      transform: none;
    }
    .hero-cta-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
    }
    .hero-proof-line {
      font-size: 11px;
      letter-spacing: 0.06em;
    }
    .hero-proof-line span + span::before {
      margin: 0 10px;
    }
    .hero-visual {
      grid-column: auto;
      min-height: 360px;
    }
    .hero-visual-frame {
      min-height: 380px;
      padding: 18px 0 0;
    }
    .hero-visual::before {
      inset: 12% 2% 10% 18%;
    }
    .hero-visual::after {
      inset: 10% 6% 6% 14%;
    }
    .hero-visual-image {
      width: min(100%, 560px);
      transform: none;
    }
    .product-header {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 36px;
    }
    .product-heading,
    .product-aside,
    .product-media-main,
    .product-media-secondary,
    .product-media-detail {
      grid-column: auto;
    }
    #product h2 {
      max-width: 9ch;
      font-size: clamp(34px, 11vw, 48px);
    }
    .product-intro {
      max-width: 320px;
      font-size: 15px;
    }
    .product-editorial-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .product-editorial-grid::before {
      top: 44%;
      left: 24%;
      width: 62%;
      transform: rotate(-21deg);
    }
    .product-media {
      gap: 10px;
    }
    .product-media::before {
      inset: -10px;
    }
    .product-media-main {
      order: 1;
    }
    .product-media-detail {
      order: 2;
      max-width: 240px;
      margin-top: 0;
      margin-left: auto;
    }
    .product-media-secondary {
      order: 3;
      margin-top: 0;
    }
    .product-facts {
      margin-top: 36px;
      padding-top: 20px;
    }
    .product-fact {
      gap: 12px;
      padding: 16px 0;
    }
    .product-fact-body h3 {
      font-size: 20px;
    }
    .product-fact-body p {
      max-width: none;
      font-size: 14px;
    }
    .social-inner {
      padding: 72px 20px 84px;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .social-copy,
    .social-visual,
    .social-proof-list {
      grid-column: auto;
      grid-row: auto;
    }
    #social h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .social-intro {
      max-width: 320px;
      font-size: 15px;
    }
    .social-visual {
      order: 2;
      margin-top: 0;
    }
    .social-visual::before {
      inset: -10px 10px 44px -10px;
    }
    .social-proof-list {
      order: 3;
    }
    .social-proof-item {
      gap: 12px;
      padding: 18px 0;
    }
    .social-proof-body h3 {
      font-size: 20px;
    }
    .social-proof-body p {
      max-width: none;
      font-size: 14px;
    }
    .cases-editorial-inner {
      padding: 72px 20px 84px;
    }
    .cases-editorial-header {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 36px;
    }
    .cases-editorial-heading,
    .cases-editorial-intro,
    .case-editorial-card-main,
    .case-editorial-card-top,
    .case-editorial-card-bottom {
      grid-column: auto;
    }
    #cases-editorial h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .cases-editorial-intro {
      max-width: 320px;
      font-size: 15px;
      padding-bottom: 0;
    }
    .cases-editorial-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    .case-editorial-card {
      gap: 10px;
    }
    .case-editorial-card::before {
      inset: -10px;
    }
    .case-editorial-card-bottom {
      margin-top: 0;
    }
    .cases-editorial-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      margin-top: 40px;
      padding-top: 20px;
    }
    .cases-editorial-proof {
      font-size: 16px;
    }
    .installations-map-inner {
      padding: 72px 20px 84px;
    }
    .installations-map-header {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 32px;
    }
    .installations-map-heading,
    .installations-map-intro,
    .installations-map-stage,
    .installations-map-aside {
      grid-column: auto;
    }
    #installations-map h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .installations-map-intro,
    .installations-map-copy,
    .installations-map-footnote {
      max-width: 320px;
      font-size: 15px;
    }
    .installations-map-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    #installations-map .install-map-shell {
      padding: 12px;
    }
    #installations-map .install-map-canvas {
      height: 380px;
    }
    #installations-map .install-map-labels {
      max-height: 148px;
      overflow: hidden;
      transition: max-height 0.2s ease;
    }
    #installations-map .install-map-labels.is-expanded {
      max-height: 1200px;
    }
    #installations-map .install-map-chip {
      width: 100%;
      justify-content: center;
      white-space: normal;
      text-align: center;
    }
    #installations-map .install-map-toggle {
      display: block;
    }
    .installations-map-metric {
      padding: 16px 0;
    }
    .installations-map-metric-value {
      font-size: 30px;
    }
    .site-check-inner {
      padding: 72px 20px 84px;
    }
    .site-check-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .site-check-copy,
    .site-check-action {
      grid-column: auto;
    }
    #site-check h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .site-check-intro {
      max-width: 320px;
      font-size: 15px;
    }
    .site-check-point-body p {
      max-width: none;
      font-size: 14px;
    }
    .site-check-visual::before {
      inset: -10px;
    }
    .site-check-form {
      padding: 20px;
    }
    .site-check-contact-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .site-check-upload-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .catalog-showcase-inner {
      padding: 72px 20px 84px;
    }
    .catalog-showcase-header {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 36px;
    }
    .catalog-showcase-heading,
    .catalog-showcase-intro,
    .catalog-showcase-card-main,
    .catalog-showcase-card-popular,
    .catalog-showcase-card-compact {
      grid-column: auto;
    }
    #catalog-showcase h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .catalog-showcase-intro {
      max-width: 320px;
      font-size: 15px;
      padding-bottom: 0;
    }
    .catalog-showcase-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }
    .catalog-showcase-card {
      gap: 12px;
    }
    .catalog-showcase-card::before {
      inset: -10px;
    }
    .catalog-showcase-card-main .catalog-showcase-media,
    .catalog-showcase-media {
      min-height: 300px;
    }
    .catalog-showcase-card-main .catalog-showcase-image,
    .catalog-showcase-image {
      width: min(100%, 420px);
    }
    .catalog-showcase-card-compact {
      margin-top: 0;
    }
    .catalog-showcase-body h3 {
      font-size: 26px;
    }
    .catalog-showcase-price {
      font-size: 26px;
    }
    .catalog-showcase-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      margin-top: 40px;
      padding-top: 20px;
    }
    .catalog-showcase-proof {
      font-size: 16px;
    }
    .documents-trust-inner {
      padding: 72px 20px 84px;
    }
    .documents-trust-header {
      grid-template-columns: 1fr;
      gap: 18px;
      margin-bottom: 36px;
    }
    .documents-trust-heading,
    .documents-trust-aside,
    .documents-trust-doc-main,
    .documents-trust-docs-rail {
      grid-column: auto;
    }
    #documents-trust h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .documents-trust-intro {
      max-width: 320px;
      font-size: 15px;
    }
    .documents-trust-points {
      gap: 14px;
    }
    .documents-trust-docs {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .documents-trust-doc {
      gap: 12px;
    }
    .documents-trust-doc::before {
      inset: -10px;
    }
    .documents-trust-doc-main .documents-trust-doc-frame {
      min-height: 420px;
    }
    @keyframes swipe-arrow {
      0%, 100% { transform: translateX(0); opacity: 1; }
      50%       { transform: translateX(5px); opacity: 0.5; }
    }
    .docs-swipe-hint {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #9a9490;
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }
    .docs-swipe-hint::after {
      content: '›';
      font-size: 18px;
      line-height: 1;
      animation: swipe-arrow 1.4s ease-in-out infinite;
    }
    .documents-trust-docs-rail {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 8px;
      padding-right: 20px;
      margin-right: -20px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
    }
    .documents-trust-docs-rail::-webkit-scrollbar {
      display: none;
    }
    .documents-trust-doc-passport,
    .documents-trust-doc-cert,
    .documents-trust-doc-brand {
      min-width: 252px;
      flex: 0 0 auto;
      grid-column: auto;
      scroll-snap-align: start;
    }
    .documents-trust-doc-passport .documents-trust-doc-frame,
    .documents-trust-doc-cert .documents-trust-doc-frame,
    .documents-trust-doc-brand .documents-trust-doc-frame {
      min-height: 260px;
    }
    .documents-trust-footer {
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      margin-top: 40px;
      padding-top: 20px;
    }
    .documents-trust-proof {
      font-size: 16px;
    }
    .faq-editorial-inner {
      padding: 72px 20px 84px;
    }
    .faq-editorial-header,
    .faq-editorial-layout {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .faq-editorial-heading,
    .faq-editorial-intro,
    .faq-editorial-copy,
    .faq-editorial-list {
      grid-column: auto;
    }
    #faq-editorial h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .faq-editorial-intro p {
      max-width: 320px;
      font-size: 15px;
    }
    .faq-editorial-copy {
      position: static;
    }
    .faq-editorial-proof {
      max-width: none;
      font-size: 11px;
      line-height: 1.8;
    }
    #faq-editorial .faq-q {
      padding: 18px 0;
      font-size: 18px;
      gap: 12px;
    }
    #faq-editorial .faq-a {
      padding-bottom: 18px;
      font-size: 15px;
      line-height: 1.75;
    }
    .document-preview-head {
      padding: 24px 20px 0;
    }
    .document-preview-media {
      padding: 20px;
    }
    .final-cta-editorial-inner {
      padding: 72px 20px 84px;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .final-cta-editorial-copy,
    .final-cta-editorial-action {
      grid-column: auto;
    }
    #final-cta-editorial h2 {
      max-width: 9ch;
      font-size: clamp(34px, 10.5vw, 48px);
    }
    .final-cta-editorial-intro {
      max-width: 320px;
      font-size: 15px;
    }
    .final-cta-editorial-points {
      gap: 14px;
    }
    .final-cta-editorial-point {
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 12px;
      padding-top: 14px;
    }
    .final-cta-editorial-form {
      padding: 22px 20px;
    }
    .final-cta-editorial-form-head h3 {
      font-size: 26px;
    }
    .final-cta-editorial-contact-grid {
      gap: 8px;
    }
    .final-cta-editorial-contact-option span {
      min-height: 46px;
      font-size: 13px;
    }
    .lead1-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    .eq-inner, .pricing-inner, .team-inner, .guarantees-inner { padding: 60px 20px; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .quiz-inner { grid-template-columns: 1fr; padding: 60px 20px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-stats { grid-template-columns: 1fr; }
    .final-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .catalog-grid { grid-template-columns: 1fr; }
    .tabs { display: none; }
    #t1, #t2, #t3 { display: grid !important; }
    .catalog-mobile-label { display: block; }
    .catalog-mobile-label:first-of-type { display: none; }
    .step-cta-box { flex-direction: column; gap: 20px; text-align: center; }
    h2 { font-size: 32px; }
    .calc-modal-box {
      grid-template-columns: 1fr;
      width: 100%;
      box-sizing: border-box;
    }
    .calc-modal-head,
    .calc-modal-body {
      padding-left: 20px;
      padding-right: 20px;
    }
    .calc-modal-head {
      padding-top: 32px;
      padding-bottom: 26px;
      border-right: none;
      border-bottom: 1px solid rgba(23, 29, 35, 0.08);
    }
    .calc-modal-head::after {
      right: -6px;
      bottom: 14px;
      font-size: 96px;
    }
    .calc-modal-head-grid {
      gap: 22px;
    }
    .calc-modal-title {
      max-width: 10ch;
      font-size: clamp(34px, 8vw, 52px);
    }
    .calc-modal-subtitle {
      max-width: none;
      font-size: 16px;
    }
    .calc-modal-meta {
      width: 100%;
      transform: none;
    }
    .calc-modal-choice {
      grid-template-columns: 1fr;
    }
    .calc-submit {
      width: 100%;
    }
    .calc-modal-response {
      text-align: center;
    }
    .install-map-shell {
      padding: 16px;
    }
    .install-map-canvas {
      height: 360px;
    }
    .install-map-note {
      font-size: 13px;
    }
    .lead-visual-layout {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .lead-visual-card {
      padding: 12px;
    }
    .lead-visual-benefits {
      padding-top: 0;
    }
    .install-map-chip {
      width: 100%;
      justify-content: center;
      white-space: normal;
      text-align: center;
    }
    .install-map-labels {
      max-height: 148px;
      overflow: hidden;
      margin-bottom: 12px;
      transition: max-height 0.2s ease;
    }
    .install-map-labels.is-expanded {
      max-height: 1200px;
    }
    .install-map-toggle {
      display: block;
    }
    .map-footer-stats {
      gap: 14px;
      padding: 14px 10px;
      flex-wrap: wrap;
    }
  }
  @media (max-width: 560px) {
    .cards-grid,
    .team-grid {
      grid-template-columns: 1fr;
    }
    .nav-logo-image { width: 54px; }
    .nav-brand-text { font-size: 26px; }
    .nav-brand-sub { display: none; }
    .nav-address { font-size: 12px; }
    .nav-phone { font-size: 17px; }
    .hero-proof-line { font-size: 11px; }
    .hero-proof-line span {
      width: 100%;
    }
    .hero-proof-line span + span::before {
      display: none;
    }
    .hero-visual { min-height: 300px; }
    .hero-visual-frame { min-height: 320px; }
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate { animation: fadeInUp 0.6s ease forwards; }

  /* ════════════════════════════════
     PHOTO / VIDEO / INFOGRAPHIC STUBS
     ТЗ для дизайнера и фотографа.
     Заменить на реальные материалы при вёрстке.
     ════════════════════════════════ */

  /* Базовый стаб — фото */
  .stub-photo {
    position: relative; overflow: hidden;
    background: linear-gradient(140deg, #1d2f40 0%, #2a4256 100%);
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; text-align: center; padding: 20px;
  }
  .stub-photo::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.025) 12px, rgba(255,255,255,.025) 13px);
    pointer-events: none;
  }

  /* Стаб — видео */
  .stub-video {
    position: relative; overflow: hidden;
    background: linear-gradient(140deg, #0e1c2a 0%, #1a2e46 100%);
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; text-align: center; cursor: pointer;
  }
  .stub-video:hover .stub-play { transform: scale(1.1); }

  /* Стаб — инфографика */
  .stub-infographic {
    background: linear-gradient(140deg, #eef4fb 0%, #dce8f4 100%);
    border: 2px dashed #b0c8e2; border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; text-align: center; padding: 24px;
  }

  /* Внутренние элементы стабов */
  .stub-badge {
    position: absolute; top: 10px; left: 10px;
    background: rgba(217,79,43,.88); color: #fff;
    font-size: 12px; font-weight: 700; padding: 3px 9px;
    border-radius: 20px; letter-spacing: .5px;
    text-transform: uppercase; z-index: 2;
  }
  .stub-badge.green  { background: rgba(30,130,60,.85); }
  .stub-badge.do     { background: rgba(120,20,10,.8); }
  .stub-badge.yt     { background: rgba(180,0,0,.85); }
  .stub-badge.rutube { background: rgba(217,79,43,.85); }
  .stub-badge.corner-right {
    left: auto; right: 10px;
    background: rgba(10,16,26,.7); border: 1px solid rgba(255,255,255,.2);
  }

  .stub-icon-big { font-size: 44px; position: relative; z-index: 1; line-height: 1; }
  .stub-label {
    color: rgba(255,255,255,.85); font-size: 16px; font-weight: 700;
    max-width: 240px; line-height: 1.4; position: relative; z-index: 1;
  }
  .stub-infographic .stub-label { color: var(--blue); }
  .stub-desc-text {
    color: rgba(255,255,255,.48); font-size: 12.5px; font-style: italic;
    max-width: 250px; line-height: 1.4; position: relative; z-index: 1;
  }
  .stub-infographic .stub-desc-text { color: var(--muted); font-style: normal; font-size: 15px; }

  /* Кнопка Play */
  .stub-play {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(217,79,43,.88);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
    transition: transform .18s; position: relative; z-index: 1;
  }

  /* Платформа видео */
  .stub-platform {
    position: absolute; top: 10px; right: 10px;
    background: rgba(10,16,26,.7); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 14px; font-weight: 700;
    padding: 3px 8px; border-radius: 4px; z-index: 2;
  }

  /* До/После пара фото */
  .before-after-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .before-after-wrap .stub-photo { border-radius: 0; height: 100px; padding: 10px; }

  /* Размеры конкретных стабов */
  .stub-hero-photo  { height: 300px; }
  .stub-map         { min-height: 280px; background: linear-gradient(140deg, #1a2f46 0%, #243d5c 100%); }
  .stub-icon-form   { height: 170px; background: linear-gradient(140deg, #eef4fb 0%, #dce8f4 100%); border: 2px dashed #b0c8e2; }
  .stub-eq-hero     { height: auto; margin-bottom: 32px; }
  .eq-hero-photo {
    display: block;
    padding: 0;
    background: none;
    border-radius: 0;
    overflow: visible;
    gap: 0;
  }
  .eq-hero-photo::before {
    content: none;
  }
  .eq-hero-photo::after {
    content: none;
  }
  .eq-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
  }
  .stub-case-video  { height: 200px; border-radius: 0; }
  .stub-quiz-gift   { height: 180px; margin-top: 16px; border-radius: 10px; overflow: hidden; }
  .stub-cat-photo   { height: 165px; border-radius: 0; }
  .stub-steps-main  { min-height: 200px; }
  .stub-steps-final { min-height: 160px; background: linear-gradient(140deg, #0f2a1a, #1a4428); }
  .stub-guar-doc    { min-height: 180px; background: linear-gradient(140deg, #0e2f5a, #163d72); }
  .stub-guar-pass   { min-height: 150px; background: linear-gradient(140deg, #0a2240, #122f56); }
  .stub-faq-scheme  { min-height: 155px; background: linear-gradient(140deg, #eef4fb, #dce8f4); border: 2px dashed #b0c8e2; }
  .stub-faq-tech    { min-height: 145px; background: linear-gradient(140deg, #1a3050, #2a4a70); }
  .stub-faq-pass    { min-height: 140px; background: linear-gradient(140deg, #0f2a1a, #1a4428); }
  .stub-team-photo  { height: 200px; width: 100%; border-radius: 0; }
  .stub-team-group  { height: 220px; margin-bottom: 4px; }
  .stub-final-photo { height: 200px; margin-top: 24px; }
  .lead-visual-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 28px;
    align-items: center;
  }
  .lead-visual-card {
    height: auto;
    min-height: 0;
    padding: 14px;
    justify-content: center;
    overflow: hidden;
    margin: 0;
  }
  .lead-visual-illustration {
    width: 100%;
    max-width: 420px;
    margin: 0 0 0 auto;
  }
  .lead-visual-illustration svg {
    display: block;
    width: 100%;
    height: auto;
  }
  .lead-visual-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .lead-visual-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 6px;
  }
  /* Карта соц.доказательства */
  .map-stub-inner { background: linear-gradient(140deg, #1a2f46, #243d5c); border-radius: 12px; overflow: hidden; }
  .map-dots-grid { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; max-width: 280px; margin: 8px auto 0; }
  .map-dot { width: 9px; height: 9px; background: var(--red); border-radius: 50%; opacity: .8; }
  .map-footer-stats { background: rgba(0,0,0,.22); padding: 14px 20px; display: flex; gap: 24px; justify-content: center; }
  .mfs-item { text-align: center; }
  .mfs-num { color: #f0c080; font-weight: 900; font-size: 22px; line-height: 1; }
  .install-map-shell {
    background:
      radial-gradient(circle at top center, rgba(42, 143, 255, 0.16), transparent 30%),
      linear-gradient(145deg, #17314c 0%, #223c5c 52%, #17314c 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px dashed rgba(139, 181, 223, 0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .install-map-head { text-align: center; margin-bottom: 18px; }
  .install-map-title {
    color: rgba(255,255,255,0.86);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
  }
  .install-map-note {
    margin: 10px auto 0;
    max-width: 760px;
    color: rgba(220, 233, 246, 0.7);
    font-size: 14px;
    line-height: 1.5;
  }
  .install-map-canvas {
    height: 440px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(139, 181, 223, 0.24);
    box-shadow: 0 20px 40px rgba(8, 18, 34, 0.28);
    background: linear-gradient(145deg, #11253d, #1b3858);
  }
  .install-map-canvas [class*="ground-pane"] {
    filter: saturate(0.78) contrast(1.04) brightness(0.92);
  }
  .install-map-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 18px;
  }
  .install-map-toggle {
    display: none;
    margin: 0 auto 18px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(139, 181, 223, 0.28);
    background: rgba(8, 23, 39, 0.28);
    color: #edf4ff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }
  .install-map-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 23, 39, 0.34);
    border: 1px solid rgba(139, 181, 223, 0.2);
    color: #edf4ff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.18s;
  }
  .install-map-chip:hover {
    background: rgba(18, 43, 72, 0.65);
    border-color: rgba(139, 181, 223, 0.4);
    transform: translateY(-1px);
  }
  .install-map-chip.is-active {
    background: rgba(217, 79, 43, 0.18);
    border-color: rgba(240, 192, 128, 0.5);
    color: #fff5ec;
  }
  .install-map-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(217, 79, 43, 0.18);
  }
  .install-map-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #f0c080;
    font-size: 13px;
    font-weight: 800;
  }
  @media (max-width: 768px) {
    .install-map-toggle {
      display: block;
    }
  }

  /* FULLSCREEN CATALOG */
  .catalog-overlay {
    --catalog-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --catalog-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --catalog-ease-rich: cubic-bezier(0.19, 1, 0.22, 1);
    position: fixed;
    inset: 0;
    z-index: 420;
    padding: 18px;
    background: rgba(11, 16, 22, 0.72);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.68s ease, visibility 0s linear 0.68s;
  }
  .catalog-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.68s ease;
  }
  .catalog-overlay-shell {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
    background:
      radial-gradient(circle at 78% 14%, rgba(178, 118, 86, 0.09), transparent 18%),
      repeating-linear-gradient(
        90deg,
        rgba(23, 29, 35, 0.06) 0,
        rgba(23, 29, 35, 0.06) 1px,
        transparent 1px,
        transparent calc((100vw - 80px) / 6)
      ),
      #f4f1ea;
    border: 1px solid rgba(23, 29, 35, 0.1);
    box-shadow: 0 24px 68px rgba(0, 0, 0, 0.26);
    overflow: hidden;
    opacity: 0;
    transform: translateY(44px) scale(0.976);
    filter: blur(14px) saturate(0.94);
    transition:
      transform 1.06s var(--catalog-ease-rich),
      opacity 0.58s ease,
      filter 1.06s var(--catalog-ease-soft),
      box-shadow 1.06s var(--catalog-ease-soft);
  }
  .catalog-overlay.open .catalog-overlay-shell {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
    box-shadow: 0 44px 120px rgba(0, 0, 0, 0.32);
  }
  .catalog-overlay-topbar {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 20px;
    padding: 18px 32px;
    border-bottom: 1px solid rgba(23, 29, 35, 0.12);
    background: rgba(244, 241, 234, 0.88);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-18px);
    filter: blur(8px);
    transition:
      opacity 0.46s ease 0.18s,
      transform 0.92s var(--catalog-ease-soft) 0.18s,
      filter 0.92s var(--catalog-ease-soft) 0.18s;
  }
  .catalog-overlay.open .catalog-overlay-topbar {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .catalog-overlay-topbar-title {
    text-align: center;
    color: #171d23;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-overlay-topbar-btn {
    justify-self: start;
    padding: 0;
    border: none;
    background: none;
    color: #171d23;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .catalog-overlay-topbar-btn:last-child {
    justify-self: end;
  }
  .catalog-overlay-back.is-hidden {
    visibility: hidden;
    pointer-events: none;
  }
  .catalog-overlay-scroller {
    overflow-y: auto;
    min-height: 0;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
    transition:
      opacity 0.56s ease 0.28s,
      transform 1.12s var(--catalog-ease-rich) 0.28s,
      filter 1.12s var(--catalog-ease-soft) 0.28s;
  }
  .catalog-overlay.open .catalog-overlay-scroller {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .catalog-overlay-view {
    max-width: 1480px;
    margin: 0 auto;
    padding: 44px 40px 64px;
    opacity: 0;
    transform: translateY(34px) scale(0.99);
    filter: blur(10px);
    transition:
      opacity 0.42s ease,
      transform 0.88s var(--catalog-ease-rich),
      filter 0.88s var(--catalog-ease-soft);
  }
  .catalog-overlay-view.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  .catalog-overlay-view.is-leaving {
    opacity: 0;
    transform: translateY(-24px) scale(0.992);
    filter: blur(10px);
  }
  .catalog-overlay-intro {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: end;
    margin-bottom: 36px;
  }
  .catalog-overlay-intro .section-label {
    grid-column: 1 / span 5;
  }
  .catalog-overlay-intro h2 {
    grid-column: 1 / span 7;
    margin: 14px 0 0;
    max-width: 8ch;
    color: #171d23;
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .catalog-overlay-intro p {
    grid-column: 9 / -1;
    margin: 0;
    max-width: 32ch;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
  }
  .catalog-overlay-grid {
    display: grid;
    gap: 52px;
  }
  .catalog-overlay-group {
    display: grid;
    gap: 24px;
    opacity: 0;
    transform: translateY(24px) scale(0.996);
    filter: blur(8px);
    transition:
      opacity 0.52s ease,
      transform 0.9s var(--catalog-ease-rich),
      filter 0.9s var(--catalog-ease-soft);
  }
  .catalog-overlay-group-head {
    display: grid;
    gap: 10px;
    padding-top: 6px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
  }
  .catalog-overlay-group-kicker {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .catalog-overlay-group-head h3 {
    margin: 0;
    color: #171d23;
    font-size: clamp(26px, 2.4vw, 34px);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .catalog-overlay-group-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .catalog-overlay-card {
    position: relative;
    display: grid;
    gap: 16px;
    opacity: 0;
    transform: translateY(28px) scale(0.995);
    filter: blur(8px);
    transition:
      opacity 0.52s ease,
      transform 0.94s var(--catalog-ease-rich),
      filter 0.94s var(--catalog-ease-soft);
  }
  .catalog-overlay-card::before {
    content: '';
    position: absolute;
    inset: -14px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    pointer-events: none;
  }
  .catalog-overlay-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 6px 10px;
    background: rgba(23, 29, 35, 0.84);
    color: #f4f1ea;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-overlay-card-media {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.58);
    overflow: hidden;
  }
  .catalog-overlay-card-image {
    display: block;
    width: min(100%, 420px);
    height: auto;
    object-fit: contain;
  }
  .catalog-overlay-card-body {
    display: grid;
    gap: 10px;
  }
  .catalog-overlay-card-volume {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .catalog-overlay-card-body h3 {
    margin: 0;
    color: #171d23;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .catalog-overlay-card-body p {
    margin: 0;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .catalog-overlay-card-price {
    color: #171d23;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .catalog-overlay-card-meta {
    color: #6d7480;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-overlay-card-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .catalog-overlay-card-btn,
  .catalog-detail-cta,
  .catalog-package-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: none;
    background: #171d23;
    color: #f4f1ea;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease;
  }
  .catalog-overlay-card-btn:hover,
  .catalog-detail-cta:hover,
  .catalog-package-cta:hover {
    background: #232c35;
    transform: translateY(-1px);
  }
  .catalog-overlay-card-link {
    padding: 0;
    border: none;
    background: none;
    color: #5d6470;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .catalog-overlay-detail {
    padding-top: 56px;
  }
  .catalog-detail-layout {
    display: grid;
    gap: 48px;
  }
  .catalog-detail-hero {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    opacity: 0;
    transform: translateY(28px) scale(0.994);
    filter: blur(9px);
    transition:
      opacity 0.5s ease,
      transform 0.94s var(--catalog-ease-rich),
      filter 0.94s var(--catalog-ease-soft);
  }
  .catalog-detail-media {
    grid-column: 1 / span 7;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.58);
  }
  .catalog-detail-image {
    display: block;
    width: min(100%, 760px);
    height: auto;
    object-fit: contain;
  }
  .catalog-detail-summary {
    grid-column: 9 / -1;
    display: grid;
    gap: 16px;
    align-content: start;
  }
  .catalog-detail-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    background: rgba(23, 29, 35, 0.84);
    color: #f4f1ea;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-detail-volume {
    color: #8b634f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .catalog-detail-summary h2 {
    margin: 0;
    color: #171d23;
    font-size: clamp(40px, 4vw, 64px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }
  .catalog-detail-text {
    margin: 0;
    color: #5d6470;
    font-size: 16px;
    line-height: 1.75;
  }
  .catalog-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
  }
  .catalog-detail-price {
    color: #171d23;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
  }
  .catalog-detail-price-note {
    color: #6d7480;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-detail-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .catalog-detail-section {
    display: grid;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(23, 29, 35, 0.12);
    opacity: 0;
    transform: translateY(24px) scale(0.996);
    filter: blur(8px);
    transition:
      opacity 0.5s ease,
      transform 0.92s var(--catalog-ease-rich),
      filter 0.92s var(--catalog-ease-soft);
  }
  .catalog-detail-section-head {
    display: grid;
    gap: 14px;
  }
  .catalog-detail-section-head .section-label {
    margin-bottom: 0;
  }
  .catalog-detail-section-head h3 {
    margin: 0;
    color: #171d23;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .catalog-detail-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .catalog-detail-spec {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    background: rgba(255, 255, 255, 0.58);
  }
  .catalog-detail-spec-label {
    color: #6d7480;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-detail-spec-value {
    color: #171d23;
    font-size: 18px;
    line-height: 1.45;
  }
  .catalog-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .catalog-package-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    padding: 26px 22px 24px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    background: rgba(255, 255, 255, 0.58);
  }
  .catalog-package-card.is-recommended {
    border-color: rgba(23, 29, 35, 0.18);
    background: #171d23;
  }
  .catalog-package-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #8b634f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .catalog-package-head {
    display: grid;
    gap: 8px;
    padding-right: 76px;
  }
  .catalog-package-head h4 {
    margin: 0;
    color: #171d23;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .catalog-package-price {
    color: #171d23;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
  .catalog-package-price.is-pending {
    color: #8b634f;
    font-size: 22px;
  }
  .catalog-package-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .catalog-package-list li {
    position: relative;
    padding-left: 18px;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.65;
  }
  .catalog-package-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 8px;
    height: 1px;
    background: #8b634f;
  }
  .catalog-package-cta {
    width: 100%;
    margin-top: 8px;
  }
  .catalog-package-card.is-recommended .catalog-package-tag,
  .catalog-package-card.is-recommended .catalog-package-head h4,
  .catalog-package-card.is-recommended .catalog-package-price {
    color: #f4f1ea;
  }
  .catalog-package-card.is-recommended .catalog-package-list li {
    color: #cbd2da;
  }
  .catalog-package-card.is-recommended .catalog-package-list li::before {
    background: #8b634f;
  }
  .catalog-package-card.is-recommended .catalog-package-cta {
    background: #f4f1ea;
    color: #171d23;
  }
  .catalog-package-card.is-recommended .catalog-package-cta:hover {
    background: #ffffff;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group,
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-card,
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-detail-hero,
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-detail-section {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group:nth-of-type(1) {
    transition-delay: 0.12s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group:nth-of-type(3) {
    transition-delay: 0.28s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group-grid .catalog-overlay-card:nth-child(1) {
    transition-delay: 0.2s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group-grid .catalog-overlay-card:nth-child(2) {
    transition-delay: 0.28s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group-grid .catalog-overlay-card:nth-child(3) {
    transition-delay: 0.36s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-overlay-group-grid .catalog-overlay-card:nth-child(4) {
    transition-delay: 0.44s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-detail-hero {
    transition-delay: 0.12s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-detail-section:nth-of-type(1) {
    transition-delay: 0.22s;
  }
  .catalog-overlay.open .catalog-overlay-view.is-active .catalog-detail-section:nth-of-type(2) {
    transition-delay: 0.32s;
  }
  @media (max-width: 1160px) {
    .catalog-overlay-topbar {
      grid-template-columns: 1fr auto 1fr;
      padding: 16px 24px;
    }
    .catalog-overlay-view {
      padding: 32px 24px 48px;
    }
    .catalog-overlay-intro {
      grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    .catalog-overlay-intro .section-label,
    .catalog-overlay-intro h2,
    .catalog-overlay-intro p {
      grid-column: 1 / -1;
      max-width: none;
    }
    .catalog-overlay-group-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-detail-hero {
      grid-template-columns: 1fr;
    }
    .catalog-detail-media,
    .catalog-detail-summary {
      grid-column: auto;
    }
    .catalog-detail-media {
      min-height: 420px;
    }
    .catalog-detail-specs,
    .catalog-package-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 768px) {
    .catalog-overlay {
      padding: 0;
    }
    .catalog-overlay-shell {
      border: none;
      box-shadow: none;
    }
    .catalog-overlay-topbar {
      position: sticky;
      top: 0;
      z-index: 4;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      padding: 14px 16px;
    }
    .catalog-overlay-topbar-title {
      font-size: 12px;
      letter-spacing: 0.1em;
    }
    .catalog-overlay-topbar-btn {
      font-size: 12px;
      letter-spacing: 0.08em;
    }
    .catalog-overlay-view {
      padding: 24px 16px 32px;
    }
    .catalog-overlay-intro {
      margin-bottom: 24px;
    }
    .catalog-overlay-intro h2 {
      font-size: 40px;
    }
    .catalog-overlay-grid {
      gap: 36px;
    }
    .catalog-overlay-group-grid,
    .catalog-detail-specs,
    .catalog-package-grid {
      grid-template-columns: 1fr;
    }
    .catalog-overlay-card-media {
      min-height: 250px;
    }
    .catalog-detail-hero,
    .catalog-detail-layout {
      gap: 28px;
    }
    .catalog-detail-media {
      min-height: 280px;
    }
    .catalog-detail-summary h2 {
      font-size: 38px;
    }
    .catalog-detail-price-row {
      gap: 8px;
    }
    .catalog-package-card {
      padding: 22px 18px;
    }
  }

  /* MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 500; align-items: flex-start; justify-content: center; padding: 20px; backdrop-filter: blur(3px); overflow-y: auto; }
  .modal-overlay.open { display: flex; }
  .modal-box { background: white; border-radius: 20px; max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 70px rgba(0,0,0,0.3); animation: modalIn 0.22s ease; }
  @keyframes modalIn { from { opacity:0; transform: scale(0.95) translateY(12px); } to { opacity:1; transform: scale(1) translateY(0); } }
  .modal-close { position: absolute; top: 14px; right: 14px; z-index: 10; background: rgba(255,255,255,0.92); border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,0.18); transition: background 0.15s; }
  .modal-close:hover { background: white; }
  .document-preview-box {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    background: #f7f4ee;
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    animation: modalIn 0.22s ease;
  }
  .document-preview-head {
    display: grid;
    gap: 10px;
    padding: 36px 36px 0;
  }
  .document-preview-kicker {
    color: #8b634f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .document-preview-title {
    margin: 0;
    color: #171d23;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 0.98;
    letter-spacing: -0.04em;
  }
  .document-preview-caption {
    margin: 0;
    max-width: 44ch;
    color: #5d6470;
    font-size: 15px;
    line-height: 1.7;
  }
  .document-preview-media {
    padding: 28px 36px 36px;
  }
  .document-preview-image {
    display: block;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 40px rgba(23, 29, 35, 0.1);
  }
  .modal-img-inner { height: 220px !important; border-radius: 20px 20px 0 0; flex-shrink: 0; }
  .modal-body { padding: 24px 28px 32px; }
  .modal-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
  .modal-name { font-size: 28px; font-weight: 900; color: var(--blue); line-height: 1.2; }
  .modal-volume-badge { background: var(--light-bg); color: var(--blue); font-size: 17px; font-weight: 700; padding: 5px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
  .modal-desc { color: var(--muted); font-size: 18px; line-height: 1.6; margin-bottom: 16px; }
  .modal-price { font-size: 28px; font-weight: 900; color: var(--text); margin-bottom: 20px; }
  .modal-price span { font-size: 19px; font-weight: 400; color: var(--muted); }
  .modal-divider { height: 1px; background: #e8eef8; margin-bottom: 18px; }
  .modal-specs-title { font-size: 16px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
  .modal-specs-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
  .modal-specs-table tr:nth-child(even) td { background: var(--light-bg); }
  .modal-specs-table td { padding: 9px 12px; font-size: 18px; }
  .modal-specs-table td:first-child { color: var(--muted); font-weight: 600; width: 48%; }
  .modal-specs-table td:last-child { font-weight: 500; color: var(--text); }
  .modal-actions { display: flex; gap: 12px; }
  .modal-actions .btn-primary { flex: 1; padding: 14px 20px; font-size: 19px; }

  #calcModal {
    --calc-modal-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --calc-modal-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
    --calc-modal-ease-rich: cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    background: rgba(11, 16, 22, 0.64);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.72s ease,
      visibility 0s linear 0.72s,
      backdrop-filter 1.02s var(--calc-modal-ease-soft);
  }
  #calcModal.open {
    visibility: visible;
    transition:
      opacity 0.72s ease,
      backdrop-filter 1.02s var(--calc-modal-ease-soft);
  }
  #calcModal.is-visible {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(12px);
  }
  .calc-modal-box {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    max-width: 1040px;
    border: 1px solid rgba(23, 29, 35, 0.08);
    border-radius: 30px;
    background: #f4efe7;
    overflow: hidden;
    box-shadow: 0 34px 100px rgba(13, 21, 30, 0.24);
    animation: none;
    opacity: 0;
    transform: translateY(44px) scale(0.978);
    filter: blur(14px) saturate(0.94);
    transition:
      transform 1.04s var(--calc-modal-ease-rich),
      opacity 0.58s ease,
      filter 1.04s var(--calc-modal-ease-soft),
      box-shadow 1.04s var(--calc-modal-ease-soft);
  }
  #calcModal.is-visible .calc-modal-box {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) saturate(1);
    box-shadow: 0 46px 128px rgba(13, 21, 30, 0.32);
  }
  .calc-modal-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, transparent 0, transparent calc(33.333% - 0.5px), rgba(23, 29, 35, 0.06) calc(33.333% - 0.5px), rgba(23, 29, 35, 0.06) calc(33.333% + 0.5px), transparent calc(33.333% + 0.5px)),
      linear-gradient(90deg, transparent 0, transparent calc(66.666% - 0.5px), rgba(23, 29, 35, 0.06) calc(66.666% - 0.5px), rgba(23, 29, 35, 0.06) calc(66.666% + 0.5px), transparent calc(66.666% + 0.5px)),
      linear-gradient(137deg, transparent 0 58%, rgba(255, 255, 255, 0.36) 58% 64%, transparent 64%);
    opacity: 0.72;
    pointer-events: none;
  }
  .calc-modal-box .modal-close {
    top: 22px;
    right: 22px;
    width: 48px;
    height: 48px;
    background: rgba(244, 241, 234, 0.96);
    color: #171d23;
    box-shadow: none;
    opacity: 0;
    transform: translateY(-16px);
    filter: blur(8px);
    transition:
      opacity 0.4s ease 0.16s,
      transform 0.88s var(--calc-modal-ease-soft) 0.16s,
      filter 0.88s var(--calc-modal-ease-soft) 0.16s;
  }
  #calcModal.is-visible .modal-close {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .calc-modal-head,
  .calc-modal-body {
    position: relative;
    z-index: 1;
  }
  .calc-modal-head {
    padding: 46px 42px 42px;
    border-right: 1px solid rgba(23, 29, 35, 0.08);
    background: transparent;
    color: #171d23;
    overflow: hidden;
  }
  .calc-modal-head::after {
    content: '01';
    position: absolute;
    right: 26px;
    bottom: 8px;
    color: rgba(23, 29, 35, 0.06);
    font-size: clamp(120px, 14vw, 190px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.08em;
    pointer-events: none;
  }
  .calc-modal-head-grid {
    display: grid;
    gap: 28px;
    align-content: start;
  }
  .calc-modal-copy {
    display: grid;
    gap: 14px;
    opacity: 0;
    transform: translateY(22px);
    filter: blur(10px);
    transition:
      opacity 0.48s ease 0.2s,
      transform 0.96s var(--calc-modal-ease-rich) 0.2s,
      filter 0.96s var(--calc-modal-ease-soft) 0.2s;
  }
  #calcModal.is-visible .calc-modal-copy {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .calc-modal-kicker {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c37a4d;
  }
  .calc-modal-title {
    font-size: clamp(42px, 4.8vw, 68px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.06em;
    max-width: 8.5ch;
    color: #171d23;
  }
  .calc-modal-subtitle {
    margin: 0;
    max-width: 29ch;
    color: #5d6470;
    font-size: 17px;
    line-height: 1.75;
  }
  .calc-modal-meta {
    --calc-meta-shift-x: 54px;
    display: grid;
    gap: 18px;
    width: min(100%, 320px);
    padding: 18px 18px 16px;
    background: #142740;
    justify-self: start;
    opacity: 0;
    transform: translate(var(--calc-meta-shift-x), 28px);
    filter: blur(10px);
    box-shadow: 0 22px 48px rgba(20, 39, 64, 0.28);
    transition:
      opacity 0.5s ease 0.3s,
      transform 1.02s var(--calc-modal-ease-rich) 0.3s,
      filter 1.02s var(--calc-modal-ease-soft) 0.3s;
  }
  #calcModal.is-visible .calc-modal-meta {
    opacity: 1;
    transform: translate(var(--calc-meta-shift-x), 0);
    filter: blur(0);
  }
  .calc-modal-context {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 36px;
    padding: 0 12px;
    background: rgba(244, 241, 234, 0.1);
    border: 1px solid rgba(244, 241, 234, 0.14);
    color: #f4f1ea;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .calc-modal-points {
    display: grid;
    gap: 10px;
  }
  .calc-modal-point {
    padding-top: 10px;
    border-top: 1px solid rgba(244, 241, 234, 0.14);
    color: rgba(244, 241, 234, 0.82);
    font-size: 14px;
    line-height: 1.55;
  }
  .calc-modal-point:first-child {
    padding-top: 0;
    border-top: none;
  }
  .calc-modal-body {
    padding: 46px 42px 42px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    opacity: 0;
    transform: translateY(28px);
    filter: blur(12px);
    transition:
      opacity 0.52s ease 0.24s,
      transform 1s var(--calc-modal-ease-rich) 0.24s,
      filter 1s var(--calc-modal-ease-soft) 0.24s;
  }
  #calcModal.is-visible .calc-modal-body {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  .calc-form {
    display: grid;
    gap: 22px;
  }
  .calc-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .calc-form-full {
    grid-column: 1 / -1;
  }
  .calc-modal-field {
    display: grid;
    gap: 8px;
  }
  .calc-modal-field label,
  .calc-modal-contact legend {
    color: #171d23;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .calc-modal-input,
  .calc-modal-textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(23, 29, 35, 0.14);
    background: rgba(255, 255, 255, 0.68);
    color: #171d23;
    font: inherit;
    font-size: 16px;
    line-height: 1.55;
    border-radius: 0;
    transition: border-color 0.18s ease, background-color 0.18s ease;
  }
  .calc-modal-input:focus,
  .calc-modal-textarea:focus {
    outline: none;
    border-color: rgba(139, 99, 79, 0.72);
    background: #ffffff;
  }
  .calc-modal-textarea {
    min-height: 122px;
    resize: vertical;
  }
  .calc-modal-contact {
    margin: 0;
    padding: 0;
    border: none;
    display: grid;
    gap: 10px;
  }
  .calc-modal-choice {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .calc-form .m-btn {
    min-width: 0;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(23, 29, 35, 0.14);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.62);
    color: #5d6470;
    font-size: 15px;
    font-weight: 600;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  }
  .calc-form .m-btn:hover {
    border-color: rgba(139, 99, 79, 0.72);
    background: #ffffff;
    color: #171d23;
  }
  .calc-form .m-btn.selected {
    border-color: #171d23;
    background: #171d23;
    color: #f4f1ea;
    box-shadow: inset 0 -2px 0 rgba(195, 122, 77, 0.5);
  }
  .calc-modal-consents {
    display: grid;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(23, 29, 35, 0.08);
  }
  .calc-modal-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #5d6470;
    font-size: 13px;
    line-height: 1.55;
  }
  .calc-modal-consent input {
    margin-top: 3px;
    accent-color: #171d23;
  }
  .calc-submit {
    position: relative;
    width: min(100%, 420px);
    min-height: 68px;
    margin-top: 2px;
    justify-self: start;
    justify-content: flex-start;
    padding: 0 88px 0 26px;
    border-radius: 0;
    background: linear-gradient(90deg, #171d23 0, #171d23 calc(100% - 72px), #8b634f calc(100% - 72px), #8b634f 100%);
    box-shadow: 0 22px 38px rgba(23, 29, 35, 0.16);
    filter: none;
  }
  .calc-submit::after {
    content: '→';
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    color: #f4f1ea;
    font-size: 22px;
    font-weight: 400;
  }
  .calc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 46px rgba(23, 29, 35, 0.22);
    filter: none;
  }
  .calc-modal-response {
    margin-top: 2px;
    color: #6d7480;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .calc-modal-response.is-success {
    color: #1d6a3f;
    font-weight: 700;
  }

  @media (max-width: 980px) {
    .calc-modal-meta {
      --calc-meta-shift-x: 0px;
    }
  }

  @media (max-width: 768px) {
    .calc-modal-box {
      grid-template-columns: 1fr;
      width: 100%;
      max-width: 100%;
      max-height: calc(100dvh - 40px);
      overflow-y: auto;
    }
    .calc-modal-head {
      display: none;
    }
    .calc-modal-body {
      padding: 24px 20px;
    }
  }

  /* VIDEO MODAL */
  .video-modal-box { position: relative; width: 100%; max-width: 900px; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,0.5); animation: modalIn 0.22s ease; aspect-ratio: 16/9; }
  .video-modal-box iframe { width: 100%; height: 100%; display: block; }
  /* 3D TOUR MODAL */
  .tour-modal-box { max-width: 1100px; aspect-ratio: 4/3; }
  .video-modal-box .modal-close { background: rgba(0,0,0,0.6); color: white; z-index: 2; }
  .mfs-lbl { color: rgba(255,255,255,.55); font-size: 15px; margin-top: 2px; }

  /* COOKIE BANNER */
  .cookie-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(13, 23, 38, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: flex-end;
    justify-content: center;
    padding: 24px 20px;
  }
  .cookie-overlay.is-visible {
    display: flex;
  }
  .cookie-box {
    background: #0d1726;
    color: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 24px 60px rgba(7, 14, 24, 0.5);
  }
  .cookie-box-title {
    font-family: 'Geologica', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 10px;
  }
  .cookie-box-text {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }
  .cookie-box-text a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
  }
  .cookie-box-text a:hover { color: #fff; }
  .cookie-box-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cookie-btn-accept {
    width: 100%;
    background: #dc6238;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: -0.01em;
  }
  .cookie-btn-accept:hover { background: #c4522c; }
  .cookie-btn-configure {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    background: none;
    border: none;
    padding: 4px;
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
  }
  .cookie-btn-configure:hover { color: rgba(255, 255, 255, 0.55); }
  .cookie-screen2-title {
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
  }
  .cookie-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .cookie-category-name {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .cookie-category-desc {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }
  .cookie-always-on {
    flex-shrink: 0;
    font-family: 'Geologica', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    padding-top: 2px;
  }
  .cookie-toggle {
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    cursor: pointer;
  }
  .cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }
  .cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: #2d3f55;
    border-radius: 24px;
    transition: background 0.2s;
  }
  .cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
  }
  .cookie-toggle input:checked + .cookie-toggle-slider { background: #dc6238; }
  .cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
  .cookie-save-btn {
    width: 100%;
    margin-top: 16px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .cookie-save-btn:hover {
    background: rgba(255,255,255,0.16);
    color: #fff;
  }
  @media (max-width: 480px) {
    .cookie-box { padding: 22px 20px; border-radius: 12px; }
    .calc-modal-body { padding: 24px 16px; }
  }

  @media (max-width: 360px) {
    .calc-modal-choice { grid-template-columns: 1fr; }
    .calc-form .m-btn { min-height: 46px; font-size: 13px; }
    .modal-overlay { padding: 12px; }
  }

  /* LEAD TOAST */
  .lead-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #0d1726;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
    box-shadow: 0 20px 50px rgba(7, 14, 24, 0.36);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    max-width: min(480px, calc(100vw - 40px));
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .lead-toast.lead-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .lead-form--sent {
    display: none;
  }

/* COOKIE BANNER */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 16, 22, 0.93);
  color: #e8e4dc;
  padding: 14px 24px;
  z-index: 900;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner-text { margin: 0; }
.cookie-banner-text a { color: #c8a882; text-decoration: underline; }
.cookie-banner-btn {
  background: #fff;
  color: #0b1016;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; }
}
