    /* ============ ДИЗАЙН-ТОКЕНЫ ============ */
    :root {
      /* Тёмный премиальный фон + тёплый оттенок */
      --bg:        #0A0A0B;
      --bg-2:      #111012;
      --fg:        #F4F2EE;   /* тёплый белый */
      --muted:     #9C968E;   /* приглушённый тёплый серый */
      --accent:    #D6B27C;   /* мягкое золото — премиальный акцент */
      --accent-soft: rgba(214, 178, 124, 0.14);

      --glass-bg:    rgba(255, 255, 255, 0.04);
      --glass-brd:   rgba(255, 255, 255, 0.09);
      --glass-brd-2: rgba(255, 255, 255, 0.06);

      --radius: 22px;
      --maxw: 1240px;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);

      /* === Ручная настройка мобильного Hero (фон-интерьер) === */
      --mobile-hero-bg-size: auto 118%;      /* почти на весь экран + запас для сдвига по вертикали */
      --mobile-hero-bg-position: center 24%; /* положение кадра: меньше % = фото выше (показ верхней части интерьера) */
      --mobile-hero-overlay-top: 0.97;       /* затемнение сверху (читаемость текста) */
      --mobile-hero-overlay-middle: 0.58;    /* затемнение в зоне фото (меньше = ярче) */
      --mobile-hero-overlay-bottom: 0.97;    /* затемнение снизу (≈чёрный → плавный переход к след. секции) */
    }

    /* ============ БАЗА ============ */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg);
      color: var(--fg);
      min-height: 100dvh;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

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

    /* ============ ФОНОВОЕ ОСВЕЩЕНИЕ ============ */
    .ambient {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(60% 50% at 78% 18%, rgba(214, 178, 124, 0.10), transparent 70%),
        radial-gradient(50% 60% at 12% 90%, rgba(120, 120, 140, 0.08), transparent 70%),
        var(--bg);
    }
    .ambient::after { /* лёгкая зернистость для премиальной фактуры */
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ============ НАВИГАЦИЯ ============ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 11, 0.7);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 22px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    /* Якорная прокрутка с учётом фиксированной шапки */
    section[id] { scroll-margin-top: 96px; }

    /* Бургер (только мобильные) */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px; height: 44px;
      padding: 11px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block;
      width: 100%; height: 1.6px;
      background: var(--fg);
      border-radius: 2px;
      transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    }
    .nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
    .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
    .nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      color: var(--fg);
    }
    .brand .dot {
      width: 9px; height: 9px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 14px var(--accent);
      flex-shrink: 0;
    }
    .brand-text { display: flex; flex-direction: column; line-height: 1.15; }
    .brand-name {
      font-weight: 600;
      font-size: 17px;
      letter-spacing: 0.22em;
    }
    .brand-tag {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: var(--muted);
      margin-top: 3px;
    }
    /* Бренд-блок в шапке: знак-монограмма + текст */
    .site-brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      flex-shrink: 0;
      color: var(--fg);
    }
    .site-logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
      flex-shrink: 0;
    }
    .site-logo img {
      display: block;
      height: 40px;
      width: auto;
      object-fit: contain;
    }
    .site-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
    .site-brand-title {
      font-family: 'Manrope', sans-serif;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #F2F2F2;
      line-height: 1;
    }
    .site-brand-subtitle { font-size: 10.5px; font-weight: 400; letter-spacing: 0.04em; color: var(--muted); margin-top: 5px; }
    .nav-links { display: flex; gap: 34px; align-items: center; }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: var(--muted);
      transition: color 0.25s var(--ease);
    }
    .nav-links a:hover { color: var(--fg); }
    /* Кнопка «Связаться» в шапке — премиальный золотой акцент */
    .nav-links a.nav-cta {
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 100px;
      color: var(--accent);
      background: rgba(214, 178, 124, 0.08);
      border: 1px solid rgba(214, 178, 124, 0.45);
      box-shadow: 0 0 24px rgba(214, 178, 124, 0.14);
      transition: background 0.3s var(--ease), color 0.3s var(--ease),
                  border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    }
    .nav-links a.nav-cta:hover {
      background: linear-gradient(135deg, #D8B56D, #F1D89A);
      color: #0B0B0B;
      border-color: #E8C987;
      box-shadow: 0 0 30px rgba(214, 178, 124, 0.30);
      transform: translateY(-1px);
    }
    .nav-cta-mobile { display: none; }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 56px 32px 110px;
      display: grid;
      grid-template-columns: 0.8fr 1.25fr;
      gap: 48px;
      align-items: center;
      min-height: calc(100dvh - 96px);
    }

    /* --- Левая колонка: текст --- */
    .copy { max-width: 580px; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 8px 16px;
      border: 1px solid var(--accent-soft);
      border-radius: 100px;
      background: var(--accent-soft);
      margin-bottom: 30px;
    }
    .eyebrow .line { width: 22px; height: 1px; background: var(--accent); opacity: 0.6; }

    h1.title {
      font-weight: 300;
      font-size: clamp(2.2rem, 4.7vw, 3.9rem);
      line-height: 1.07;
      letter-spacing: -0.02em;
      margin-bottom: 26px;
    }
    h1.title b {
      font-weight: 600;
      background: linear-gradient(120deg, var(--accent), #F0D9B0 60%, var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .subtitle {
      font-size: clamp(1rem, 1.4vw, 1.18rem);
      line-height: 1.65;
      font-weight: 300;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 40px;
    }
    .subtitle .save {
      color: var(--fg);
      font-weight: 500;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 1px;
    }

    /* --- Кнопки --- */
    .actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: inherit;
      font-size: 15px;
      font-weight: 600;
      padding: 16px 28px;
      border-radius: 100px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
                  background 0.3s var(--ease), border-color 0.3s var(--ease);
      will-change: transform;
    }
    .btn svg { transition: transform 0.35s var(--ease); }
    .btn:hover { transform: translateY(-3px); }
    .btn:hover svg { transform: translateX(4px); }
    .btn:active { transform: translateY(-1px); }
    .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    /* Основная: светлая кнопка (Apple / Tesla стиль) */
    .btn-primary {
      background: var(--fg);
      color: #0A0A0B;
      box-shadow: 0 8px 30px rgba(244, 242, 238, 0.10);
    }
    .btn-primary:hover {
      box-shadow: 0 16px 44px rgba(244, 242, 238, 0.22);
    }

    /* Вторичная: стеклянная / контурная */
    .btn-ghost {
      background: var(--glass-bg);
      color: var(--fg);
      border-color: var(--glass-brd);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.07);
    }

    /* --- Мини-этапы (Подберём · Закупим · Доставим) --- */
    .steps {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      padding-top: 36px;
      border-top: 1px solid var(--glass-brd-2);
    }
    .step { display: flex; flex-direction: column; gap: 4px; }
    .step .num { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 0.08em; }
    .step .lbl { font-size: 15px; font-weight: 500; color: var(--fg); }
    .step .desc { font-size: 13px; color: var(--muted); }

    /* Преимущества с иконками — показываются только на мобильной версии */
    .hero-benefits { display: none; }

    /* ============ ПРАВАЯ КОЛОНКА: ИНТЕРЬЕР (placeholder) ============ */
    .visual {
      position: relative;
      perspective: 1400px;
    }
    .visual-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--glass-brd);
      background: linear-gradient(160deg, #1A1714, #0E0D0F 70%);
      box-shadow: 0 54px 120px rgba(0, 0, 0, 0.62);
      aspect-ratio: 4 / 5;
      transform-style: preserve-3d;
      transition: transform 0.4s var(--ease);
    }
    /* Тёплый блик сверху + лёгкое затемнение снизу для бейджа */
    .visual-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        /* тёплый премиальный оттенок (равномерный) */
        linear-gradient(0deg, rgba(214, 178, 124, 0.06), rgba(214, 178, 124, 0.06)),
        /* тёплый блик сверху */
        radial-gradient(60% 42% at 70% 16%, rgba(214, 178, 124, 0.16), transparent 58%),
        /* кинематографичная виньетка по краям (глубина) */
        radial-gradient(ellipse 82% 82% at 50% 44%, transparent 44%, rgba(8, 7, 6, 0.52) 100%),
        /* затемнение левого края — переход к тексту */
        linear-gradient(90deg, rgba(10, 10, 11, 0.32) 0%, transparent 33%),
        /* затемнение снизу — читаемость бейджа */
        linear-gradient(180deg, rgba(10, 10, 11, 0.16) 0%, transparent 24%, transparent 50%, rgba(10, 10, 11, 0.6) 100%);
      pointer-events: none;
    }
    .visual-card img,
    .visual-card svg {
      display: block; width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.12);
      transform-origin: center;
      filter: contrast(1.2) brightness(1) saturate(1.12) sepia(0.05);
      backface-visibility: hidden;
    }

    /* Бейдж "до −40%" поверх карточки */
    .badge {
      position: absolute;
      left: -22px;
      bottom: 42px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 22px;
      border-radius: 18px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-brd);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
      transform: translateZ(60px);
    }
    .badge .big { font-size: 30px; font-weight: 700; color: var(--accent); line-height: 1; }
    .badge .small { font-size: 12px; color: var(--muted); line-height: 1.4; max-width: 110px; }

    /* Метка placeholder в углу */
    .ph-tag {
      position: absolute;
      top: 16px; right: 16px;
      z-index: 4;
      font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--muted);
      padding: 6px 12px;
      border-radius: 100px;
      background: rgba(0,0,0,0.35);
      border: 1px solid var(--glass-brd-2);
      backdrop-filter: blur(6px);
    }

    /* ============ О НАС ============ */
    .about {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 78px 32px 64px;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .about-title {
      font-weight: 300;
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      line-height: 1.18;
      letter-spacing: -0.01em;
      color: var(--fg);
      margin-top: 12px;
      max-width: 520px;
    }
    .about-title b {
      font-weight: 600;
      letter-spacing: 0.06em;
      background: linear-gradient(120deg, var(--accent), #F0D9B0 60%, var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .about-body { padding-top: 6px; }
    .about-body p {
      font-size: 16.5px;
      line-height: 1.75;
      color: var(--muted);
      margin: 0 0 20px;
      max-width: 540px;
    }
    .about-body p:last-child { margin-bottom: 0; }
    .about-body .g { color: var(--fg); font-weight: 500; }

    @media (max-width: 880px) {
      .about { padding: 54px 20px 46px; }
      .about-inner { grid-template-columns: 1fr; gap: 26px; }
      .about-body p { max-width: 100%; }
    }

    /* ============ ПРИМЕРЫ ПРОЕКТОВ ============ */
    .projects {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 40px 32px 80px;
    }
    .projects-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 60px;
    }
    .section-title {
      font-weight: 300;
      font-size: clamp(2rem, 4vw, 3.1rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin: 8px 0 18px;
    }
    .section-title b {
      font-weight: 600;
      background: linear-gradient(120deg, var(--accent), #F0D9B0 60%, var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .section-sub {
      font-size: clamp(1rem, 1.3vw, 1.1rem);
      line-height: 1.6;
      font-weight: 300;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto;
    }

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

    .card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--glass-brd);
      background: #15130f;
      cursor: pointer;
      aspect-ratio: 3 / 4;
      opacity: 0;
      transform: translateY(30px);
      transition: transform 0.6s var(--ease), opacity 0.7s var(--ease),
                  border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
      will-change: transform, opacity;
    }
    .card.in { opacity: 1; transform: translateY(0); }
    .card.in:hover {
      transform: translateY(-10px);
      border-color: rgba(214, 178, 124, 0.55);
      box-shadow: 0 44px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(214, 178, 124, 0.22);
    }
    .card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    .card img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.9s var(--ease);
    }
    .card.in:hover img { transform: scale(1.08); }
    /* Затемняющий градиент поверх фото */
    .card::after {
      content: "";
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,0.5) 66%, rgba(10,10,11,0.92));
      transition: opacity 0.5s var(--ease);
      pointer-events: none;
    }

    .card-content {
      position: absolute;
      left: 0; right: 0; bottom: 0;
      z-index: 2;
      padding: 26px 26px 28px;
    }
    .card-style {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .card-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 30px;
      font-weight: 600;
      line-height: 1.06;
      letter-spacing: 0.01em;
      color: #fff;
      margin-top: 8px;
    }
    .card-name::after {
      content: "";
      display: block;
      width: 32px; height: 2px;
      margin-top: 13px;
      background: var(--accent);
      transform-origin: left;
      transform: scaleX(0.55);
      opacity: 0.55;
      transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
    }
    .card.in:hover .card-name::after { transform: scaleX(1); opacity: 1; }
    .card-meta {
      display: block;
      font-size: 13.5px;
      color: rgba(244, 242, 238, 0.85);
      letter-spacing: 0.02em;
      margin-top: 14px;
      opacity: 0;
      max-height: 0;
      transform: translateY(8px);
      transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), max-height 0.45s var(--ease);
    }
    .card-meta b { color: var(--accent); font-weight: 600; }
    .card.in:hover .card-meta { opacity: 1; max-height: 44px; transform: translateY(0); }
    @media (hover: none) {
      .card-meta { opacity: 1; max-height: 44px; transform: none; }
      .card-name::after { transform: scaleX(1); opacity: 1; }
    }

    @media (max-width: 1024px) { .grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .grid { grid-template-columns: 1fr; }
      .projects { padding: 24px 20px 56px; }
      .projects-head { margin-bottom: 44px; }
    }

    /* ============ ПОЧЕМУ ВЫГОДНО ============ */
    .trust {
      position: relative; z-index: 2;
      max-width: var(--maxw); margin: 0 auto;
      padding: 20px 32px 80px;
    }
    .trust-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
    .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .trust-card {
      padding: 32px 30px;
      border: 1px solid var(--glass-brd);
      border-radius: 18px;
      background: var(--bg-2);
      transition: transform 0.55s var(--ease), opacity 0.6s var(--ease),
                  border-color 0.45s var(--ease), background 0.45s var(--ease);
    }
    .trust-card.in:hover {
      transform: translateY(-6px);
      border-color: rgba(214, 178, 124, 0.4);
      background: rgba(214, 178, 124, 0.04);
    }
    .trust-icon {
      display: grid; place-items: center;
      width: 50px; height: 50px;
      border-radius: 13px;
      background: rgba(214, 178, 124, 0.12);
      color: var(--accent);
      margin-bottom: 22px;
    }
    .trust-icon svg { width: 24px; height: 24px; }
    .trust-title { font-size: 18px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; margin-bottom: 9px; }
    .trust-text { font-size: 14px; line-height: 1.6; color: var(--muted); }

    /* ============ ПРИМЕР ЭКОНОМИИ ============ */
    .savings {
      position: relative; z-index: 2;
      max-width: var(--maxw); margin: 0 auto;
      padding: 20px 32px 80px;
    }
    .savings-card {
      max-width: 920px; margin: 0 auto;
      padding: 50px 54px;
      border-radius: 26px;
      border: 1px solid rgba(214, 178, 124, 0.28);
      background:
        radial-gradient(120% 100% at 100% 0%, rgba(214, 178, 124, 0.10), transparent 55%),
        linear-gradient(180deg, #16140f, #100f10);
      box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
      transition: opacity 0.7s var(--ease), transform 0.6s var(--ease);
    }
    .savings-head { text-align: center; margin-bottom: 42px; }
    .savings-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 4.4vw, 3rem);
      font-weight: 600; line-height: 1.05; color: var(--fg);
      margin: 12px 0 7px;
    }
    .savings-sub { font-size: 15px; color: var(--muted); letter-spacing: 0.02em; }
    .savings-compare { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
    .compare-row { display: grid; grid-template-columns: 230px 1fr auto; gap: 24px; align-items: center; }
    .compare-label { font-size: 14px; color: var(--muted); }
    .compare-track {
      position: relative; display: block;
      height: 14px; border-radius: 100px;
      background: rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }
    .bar {
      position: absolute; left: 0; top: 0; height: 100%;
      width: 0; border-radius: 100px;
      transition: width 1.1s var(--ease) 0.25s;
    }
    .bar-ru { background: linear-gradient(90deg, #6b6258, #8a7d6a); }
    .bar-cn { background: linear-gradient(90deg, var(--accent), #F0D9B0); }
    .savings-card.in .bar { width: var(--w); }
    .compare-price { font-size: 22px; font-weight: 700; color: var(--fg); min-width: 110px; text-align: right; }
    .compare-price.gold { color: var(--accent); }
    .savings-result {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 14px;
      padding-top: 32px; border-top: 1px solid var(--glass-brd-2);
    }
    .savings-result-label { font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
    .savings-result-value {
      font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 700; line-height: 1;
      background: linear-gradient(120deg, var(--accent), #F0D9B0 55%, var(--accent));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }

    /* ============ ПОКАЗАТЕЛИ ============ */
    .stats {
      position: relative; z-index: 2;
      max-width: var(--maxw); margin: 0 auto;
      padding: 20px 32px 90px;
    }
    .stats-head { text-align: center; max-width: 840px; margin: 0 auto 50px; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .stat-item {
      text-align: center;
      padding: 38px 22px;
      border: 1px solid var(--glass-brd);
      border-radius: 18px;
      background: var(--bg-2);
      transition: transform 0.55s var(--ease), opacity 0.6s var(--ease),
                  border-color 0.45s var(--ease), background 0.45s var(--ease);
    }
    .stat-item.in:hover {
      transform: translateY(-5px);
      border-color: rgba(214, 178, 124, 0.4);
      background: rgba(214, 178, 124, 0.04);
    }
    .stat-num {
      display: block;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 600; line-height: 1;
      background: linear-gradient(120deg, var(--accent), #F0D9B0 60%, var(--accent));
      -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .stat-label { display: block; font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.45; }

    @media (max-width: 1024px) {
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .trust { padding: 10px 20px 56px; }
      .trust-grid { grid-template-columns: 1fr; }
      .savings { padding: 10px 20px 56px; }
      .savings-card { padding: 32px 22px; border-radius: 20px; }
      .compare-row { grid-template-columns: 1fr auto; gap: 10px 14px; }
      .compare-label { grid-column: 1 / -1; }
      .compare-price { min-width: 0; }
      .savings-result { flex-direction: column; align-items: flex-start; }
      .stats { padding: 10px 20px 64px; }
      .stats-grid { grid-template-columns: 1fr; gap: 12px; }
      .stat-item { padding: 30px 20px; }
    }

    /* ============ ЧТО ВХОДИТ В КОМПЛЕКТАЦИЮ ============ */
    .includes {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 30px 32px 70px;
    }
    .includes-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 54px;
    }
    .includes-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .inc-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 14px;
      padding: 28px 16px;
      border: 1px solid var(--glass-brd);
      border-radius: 16px;
      background: var(--bg-2);
      transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
    }
    .inc-item:hover {
      transform: translateY(-5px);
      border-color: rgba(214, 178, 124, 0.40);
      background: rgba(214, 178, 124, 0.04);
    }
    .inc-icon {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(214, 178, 124, 0.10);
      color: var(--accent);
      transition: background 0.4s var(--ease);
    }
    .inc-item:hover .inc-icon { background: rgba(214, 178, 124, 0.18); }
    .inc-icon svg { width: 24px; height: 24px; }
    .inc-label {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      color: var(--fg);
      letter-spacing: 0.01em;
    }

    @media (max-width: 1024px) { .includes-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 640px) {
      .includes { padding: 24px 20px 50px; }
      .includes-head { margin-bottom: 40px; }
      .includes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .inc-item { padding: 22px 12px; }
    }

    /* ============ ФОРМА: ОТПРАВИТЬ ПРОЕКТ ============ */
    .contact {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 40px 32px 130px;
    }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .contact-copy { padding-top: 6px; }
    .contact-copy .section-title { text-align: left; }
    .contact-copy .section-sub { margin: 0; text-align: left; max-width: 460px; }

    .contact-points {
      list-style: none;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .contact-points li {
      display: flex;
      gap: 13px;
      align-items: center;
      font-size: 15px;
      color: var(--muted);
    }
    .contact-points li svg { color: var(--accent); flex-shrink: 0; }

    /* --- Карточка формы --- */
    .lead-form {
      background: var(--glass-bg);
      border: 1px solid var(--glass-brd);
      border-radius: var(--radius);
      padding: 34px;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    }
    .field { margin-bottom: 18px; }
    .field label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--fg);
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }
    .req { color: var(--accent); }
    .opt { color: var(--muted); font-weight: 400; font-size: 12px; }

    .field input[type="text"],
    .field input[type="tel"],
    .field textarea {
      width: 100%;
      font-family: inherit;
      font-size: 15px;
      color: var(--fg);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--glass-brd);
      border-radius: 12px;
      padding: 14px 16px;
      transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }
    .field textarea {
      resize: vertical;
      min-height: 92px;
      line-height: 1.5;
    }
    .field input::placeholder,
    .field textarea::placeholder { color: rgba(156, 150, 142, 0.6); }
    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--accent);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 0 0 3px rgba(214, 178, 124, 0.12);
    }
    .field input.invalid {
      border-color: #E5675F;
      box-shadow: 0 0 0 3px rgba(229, 103, 95, 0.14);
    }
    .err {
      display: none;
      font-size: 12.5px;
      color: #F0938C;
      margin-top: 7px;
    }
    .err.show { display: block; }

    /* --- Прикрепить файл --- */
    .file {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 14px 16px;
      border: 1px dashed var(--glass-brd);
      border-radius: 12px;
      color: var(--muted);
      cursor: pointer;
      transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
    }
    .file:hover {
      border-color: rgba(214, 178, 124, 0.5);
      color: var(--fg);
      background: rgba(255, 255, 255, 0.03);
    }
    .file svg { color: var(--accent); flex-shrink: 0; }
    .file-text { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .file.has-file { border-style: solid; border-color: rgba(214, 178, 124, 0.5); color: var(--fg); }
    #file:focus-visible + .file,
    .file:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
    .file-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 8px; }
    .file-hint.error { color: #F0938C; }

    /* --- Кнопка отправки --- */
    .form-submit { width: 100%; justify-content: center; margin-top: 6px; }
    .form-submit:disabled { cursor: progress; opacity: 0.85; }
    .form-submit .spinner {
      display: none;
      width: 17px; height: 17px;
      border: 2px solid rgba(10, 10, 11, 0.3);
      border-top-color: #0A0A0B;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }
    .form-submit.is-loading .spinner { display: inline-block; }
    .form-submit.is-loading .arrow { display: none; }
    @keyframes spin { to { transform: rotate(360deg); } }

    .form-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 14px;
      line-height: 1.5;
    }
    .form-success {
      margin-top: 16px;
      padding: 16px 18px;
      border-radius: 14px;
      background: rgba(214, 178, 124, 0.10);
      border: 1px solid var(--accent-soft);
      color: var(--fg);
      font-size: 14px;
      line-height: 1.5;
      display: flex;
      gap: 11px;
      align-items: flex-start;
    }
    .form-success svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
    .form-success[hidden] { display: none; }

    .form-error {
      margin-top: 16px;
      padding: 16px 18px;
      border-radius: 14px;
      background: rgba(229, 103, 95, 0.10);
      border: 1px solid rgba(229, 103, 95, 0.35);
      color: var(--fg);
      font-size: 14px;
      line-height: 1.5;
      display: flex;
      gap: 11px;
      align-items: flex-start;
    }
    .form-error svg { color: #F0938C; flex-shrink: 0; margin-top: 1px; }
    .form-error[hidden] { display: none; }

    /* --- Чип выбранного проекта --- */
    .form-project {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
      padding: 11px 12px 11px 15px;
      border: 1px solid var(--accent-soft);
      border-radius: 12px;
      background: rgba(214, 178, 124, 0.10);
      font-size: 13px;
      color: var(--muted);
    }
    .form-project[hidden] { display: none; }
    .form-project strong { color: var(--accent); font-weight: 600; }
    .form-project-clear {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      font-size: 17px;
      line-height: 1;
      display: grid;
      place-items: center;
      transition: background 0.25s var(--ease), color 0.25s var(--ease);
    }
    .form-project-clear:hover { background: rgba(255, 255, 255, 0.12); color: var(--fg); }
    .form-project-clear:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

    /* --- Блок ограничения мест --- */
    .scarcity {
      margin: 36px auto 0;
      max-width: 600px;
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 18px 22px;
      border: 1px solid rgba(214, 178, 124, 0.22);
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(214, 178, 124, 0.07), rgba(255, 255, 255, 0.015));
    }
    .scarcity-badge {
      position: relative;
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(214, 178, 124, 0.12);
      color: var(--accent);
    }
    .scarcity-badge svg { width: 21px; height: 21px; }
    .scarcity-badge::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 12px;
      box-shadow: 0 0 0 0 rgba(214, 178, 124, 0.45);
      animation: scarcityPulse 2.6s ease-out infinite;
    }
    @keyframes scarcityPulse {
      0%   { box-shadow: 0 0 0 0 rgba(214, 178, 124, 0.40); }
      70%  { box-shadow: 0 0 0 13px rgba(214, 178, 124, 0); }
      100% { box-shadow: 0 0 0 0 rgba(214, 178, 124, 0); }
    }
    .scarcity-text {
      margin: 0;
      font-size: 14px;
      line-height: 1.55;
      color: var(--muted);
    }
    .scarcity-count {
      color: var(--accent);
      font-weight: 600;
      white-space: nowrap;
    }

    /* ============ ФУТЕР ============ */
    .footer {
      position: relative;
      z-index: 2;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 58px 32px 42px;
      border-top: 1px solid var(--glass-brd-2);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 48px;
      align-items: start;
    }
    .footer-brand .brand { margin-bottom: 18px; }
    .footer-note {
      font-size: 14px;
      line-height: 1.65;
      color: var(--muted);
      max-width: 460px;
    }
    .footer-disclaimer {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(156, 150, 142, 0.6);
      max-width: 460px;
      margin-top: 14px;
    }
    .footer-contacts {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .footer-contacts a {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: fit-content;
      font-size: 15px;
      color: var(--fg);
      transition: color 0.25s var(--ease);
    }
    .footer-contacts a:hover { color: var(--accent); }
    .footer-contacts a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
    .footer-contacts svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
    .footer-geo { font-size: 13px; color: var(--muted); margin-top: 6px; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 46px;
      padding-top: 24px;
      border-top: 1px solid var(--glass-brd-2);
      font-size: 13px;
      color: var(--muted);
    }
    .footer-bottom a {
      color: var(--muted);
      transition: color 0.25s var(--ease);
    }
    .footer-bottom a:hover { color: var(--fg); }

    @media (max-width: 768px) {
      .footer { padding: 44px 20px 34px; }
      .footer-inner { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 36px;
      }
    }

    @media (max-width: 900px) {
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      .lead-form { max-width: 520px; }
    }
    @media (max-width: 600px) {
      .contact { padding: 24px 20px 90px; }
      .lead-form { padding: 26px 22px; }
    }

    /* ============ АНИМАЦИЯ ПОЯВЛЕНИЯ ============ */
    [data-reveal] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }
    [data-reveal].in { opacity: 1; transform: translateY(0); }

    [data-reveal-scroll] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }
    [data-reveal-scroll].in { opacity: 1; transform: none; }

    /* Базовое появление для премиальных карточек (своя transition у элемента) */
    .reveal-up { opacity: 0; transform: translateY(26px); }
    .reveal-up.in { opacity: 1; transform: translateY(0); }

    /* ============ АДАПТИВ ============ */
    @media (max-width: 1024px) {
      .hero { gap: 48px; }
      .badge { left: 0; }
    }

    @media (max-width: 880px) {
      .nav-toggle { display: inline-flex; }
      .site-logo img { height: 36px; }
      .site-brand-title { font-size: 16px; letter-spacing: 0.2em; }
      .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 26px;
        background: #100f12;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
      }
      .nav.open .nav-links { opacity: 1; visibility: visible; transform: translateY(0); }
      .nav-links a:not(.nav-cta):not(.nav-cta-mobile) {
        width: 100%;
        font-size: 17px;
        font-weight: 500;
        color: var(--fg);
        padding: 17px 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        transition: color 0.2s var(--ease);
      }
      .nav-links a:not(.nav-cta):not(.nav-cta-mobile):active { color: var(--accent); }
      .nav-cta { display: none; }
      .nav-links a.nav-cta-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 22px;
        padding: 19px 24px;
        border-radius: 14px;
        background: linear-gradient(120deg, var(--accent), #E7C690 55%, var(--accent));
        color: #14110B;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.01em;
        box-shadow: 0 16px 36px rgba(214, 178, 124, 0.32);
        transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease);
      }
      .nav-links a.nav-cta-mobile svg { transition: transform 0.25s var(--ease); }
      .nav-links a.nav-cta-mobile:active {
        transform: scale(0.97);
        box-shadow: 0 8px 20px rgba(214, 178, 124, 0.26);
      }
      .nav-links a.nav-cta-mobile:active svg { transform: translateX(3px); }
      /* --- Mobile Hero: премиальный фон-интерьер (по референсу) --- */
      .hero {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: left;
        gap: 0;
        padding: 60px 24px 48px;            /* больше воздуха сверху */
        min-height: 1040px;
        min-height: max(100svh, 1040px);    /* высокий первый экран */
        position: relative;
        background-image:
          /* мягкий золотой glow справа */
          radial-gradient(66% 38% at 84% 60%, rgba(214, 176, 122, 0.18) 0%, transparent 60%),
          /* многослойное затемнение: верх тёмный → фото проявляется → низ тёмный */
          linear-gradient(to bottom,
            rgba(10, 10, 10, var(--mobile-hero-overlay-top)) 0%,
            rgba(10, 10, 10, 0.92) 28%,
            rgba(10, 10, 10, var(--mobile-hero-overlay-middle)) 52%,
            rgba(10, 10, 10, 0.68) 70%,
            rgba(10, 10, 10, 0.85) 88%,
            rgba(10, 10, 10, var(--mobile-hero-overlay-bottom)) 100%),
          url("../img/7.png");
        background-repeat: no-repeat;
        background-position: center, center, var(--mobile-hero-bg-position);
        background-size: cover, cover, var(--mobile-hero-bg-size);
      }
      .copy {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        flex: 1;
        max-width: 100%;
        order: 1;
      }
      .visual { display: none; }          /* фото — это фон, не карточка */

      /* Бейдж под шапкой */
      .eyebrow {
        font-size: 12.5px;
        letter-spacing: 0.1em;
        padding: 13px 22px;
        margin-bottom: 34px;
      }
      /* Заголовок — крупный, воздушный, без обрезки */
      h1.title {
        font-size: clamp(2.3rem, 9vw, 3.25rem);
        line-height: 1.12;
        margin-bottom: 22px;
      }
      .subtitle { font-size: 16px; line-height: 1.7; margin-bottom: 36px; max-width: 100%; }

      /* Кнопки — крупные премиальные CTA, в столбик */
      .actions { flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 0; }
      .btn { width: 100%; justify-content: center; padding: 19px 28px; font-size: 16px; }

      /* Преимущества с иконками (после кнопок, поверх фона) */
      .hero-benefits {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 38px;
      }
      .hb-item { display: flex; align-items: center; gap: 14px; }
      .hb-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
      .hb-item span { font-size: 15px; line-height: 1.4; color: var(--fg); }

      /* Этапы 01/02/03 — в самом низу, 3 колонки с тонкими разделителями */
      .steps {
        margin-top: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      .step { padding: 0 14px; border-left: 1px solid rgba(255, 255, 255, 0.1); }
      .step:first-child { padding-left: 0; border-left: none; }
    }

    @media (max-width: 480px) {
      .nav { padding: 22px 20px; }
      .brand-tag { display: none; }
      .site-logo img { height: 32px; }
      .site-brand-title { font-size: 15px; letter-spacing: 0.16em; }
      .site-brand-subtitle {
        display: block;
        font-size: 10px;
        line-height: 1.2;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.55);
        margin-top: 3px;
      }
      .hero { padding: 52px 20px 44px; }
      .step { padding: 0 11px; }
    }

    /* Уважаем настройку «уменьшить движение» */
    @media (prefers-reduced-motion: reduce) {
      * { scroll-behavior: auto !important; }
      [data-reveal],
      [data-reveal-scroll],
      .reveal-up,
      .card { opacity: 1 !important; transform: none !important; transition: none !important; }
      .btn:hover, .btn:active { transform: none; }
      .card.in:hover, .card:hover { transform: none !important; }
      .card.in:hover img { transform: none !important; }
      .visual-card { transition: none !important; }
      .scarcity-badge::after { animation: none !important; }
    }

    /* ============ МНОГОСТРАНИЧНОСТЬ: активный пункт меню ============ */
    .nav-links a.active:not(.nav-cta) { color: var(--accent); }
    /* .nav-cta всегда отображается как премиальная золотая кнопка (см. выше) */

    /* ============ ВНУТРЕННИЕ СТРАНИЦЫ ============ */
    .page { position: relative; z-index: 2; }
    .page-hero {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 92px 32px 28px;
      text-align: center;
    }
    .page-hero .eyebrow { margin-bottom: 24px; }
    .page-hero .section-title { margin: 0 auto 18px; text-align: center; }
    .page-hero .section-sub { margin: 0 auto; text-align: center; }
    .page-section {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 36px 32px 72px;
    }
    .page-disclaimer {
      max-width: 760px;
      margin: 28px auto 0;
      padding: 18px 24px;
      border: 1px solid var(--glass-brd);
      border-radius: 14px;
      background: var(--glass-bg);
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.6;
      text-align: center;
    }

    /* --- Юридические страницы (Политика / Согласие) --- */
    .legal {
      max-width: 820px;
      margin: 0 auto;
      color: var(--muted);
      font-size: 15px;
      font-weight: 300;
      line-height: 1.78;
    }
    .legal .legal-meta {
      margin-bottom: 36px;
      padding: 22px 24px;
      border: 1px solid var(--glass-brd);
      border-radius: 14px;
      background: var(--glass-bg);
      font-size: 14px;
      line-height: 1.7;
    }
    .legal .legal-meta b { color: var(--fg); font-weight: 600; }
    .legal h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 600;
      font-size: clamp(1.4rem, 2.4vw, 1.85rem);
      line-height: 1.2;
      letter-spacing: 0.01em;
      color: var(--fg);
      margin: 40px 0 14px;
    }
    .legal h2:first-of-type { margin-top: 0; }
    .legal p { margin-bottom: 14px; }
    .legal ul { list-style: none; margin: 8px 0 20px; padding: 0; }
    .legal li { position: relative; padding-left: 22px; margin-bottom: 10px; }
    .legal li::before {
      content: ""; position: absolute; left: 0; top: 12px;
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent); opacity: 0.7;
    }
    .legal a { color: var(--accent); transition: color 0.25s var(--ease); }
    .legal a:hover { color: #F0D9B0; }
    .legal strong { color: var(--fg); font-weight: 600; }

    /* Ссылки в подписи формы + блок юр-ссылок в футере */
    .form-note a { color: var(--accent); transition: color 0.25s var(--ease); }
    .form-note a:hover { color: #F0D9B0; }
    .footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }

    /* --- Процесс (этапы) --- */
    .process-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .process-step {
      display: flex;
      gap: 22px;
      align-items: flex-start;
      padding: 24px 28px;
      border: 1px solid var(--glass-brd);
      border-radius: 16px;
      background: var(--bg-2);
      transition: transform 0.45s var(--ease), opacity 0.6s var(--ease),
                  border-color 0.45s var(--ease), background 0.45s var(--ease);
    }
    .process-step.in:hover {
      transform: translateX(5px);
      border-color: rgba(214, 178, 124, 0.4);
      background: rgba(214, 178, 124, 0.035);
    }
    .process-num {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 34px; font-weight: 600; line-height: 1;
      color: var(--accent);
      min-width: 46px;
      flex-shrink: 0;
    }
    .process-step h3 { font-size: 18px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; margin: 5px 0 6px; }
    .process-step p { font-size: 14px; line-height: 1.55; color: var(--muted); }

    /* --- CTA-блок --- */
    .cta-band {
      max-width: 920px; margin: 30px auto 0;
      padding: 50px 44px; text-align: center;
      border-radius: 24px;
      border: 1px solid rgba(214, 178, 124, 0.28);
      background:
        radial-gradient(120% 100% at 100% 0%, rgba(214, 178, 124, 0.10), transparent 55%),
        linear-gradient(180deg, #16140f, #100f10);
      box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
    }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 600; color: var(--fg);
      margin-bottom: 18px; line-height: 1.1;
    }
    .cta-band-sub {
      max-width: 560px; margin: 0 auto 28px;
      color: var(--muted); font-size: 15px; line-height: 1.6;
    }

    /* --- Страница контактов --- */
    .contacts-grid {
      max-width: var(--maxw); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
      align-items: start;
    }
    .contacts-list { display: flex; flex-direction: column; }
    .contacts-list a, .contacts-list .ci {
      display: flex; align-items: center; gap: 14px;
      padding: 15px 2px; font-size: 16px; color: var(--fg);
      border-bottom: 1px solid var(--glass-brd-2);
      transition: color 0.25s var(--ease);
    }
    .contacts-list a:hover { color: var(--accent); }
    .contacts-list svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
    .contacts-list .ci { color: var(--muted); }
    .contacts-list .ci.legal { border-bottom: none; }
    .cform-success {
      margin-top: 16px; padding: 16px 18px; border-radius: 14px;
      background: rgba(214, 178, 124, 0.10); border: 1px solid var(--accent-soft);
      color: var(--fg); font-size: 14px; line-height: 1.5;
      display: flex; gap: 11px; align-items: flex-start;
    }
    .cform-success svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
    .cform-success[hidden] { display: none; }

    @media (max-width: 880px) {
      .page-hero { padding: 60px 22px 22px; }
      .page-section { padding: 28px 22px 56px; }
      .contacts-grid { grid-template-columns: 1fr; gap: 36px; }
      .cta-band { padding: 36px 24px; }
      .process-step { padding: 20px 20px; gap: 16px; }
      .process-num { font-size: 28px; min-width: 38px; }
    }
  
