:root {
  --navy: #0B1829;
    --navy-mid: #132236;
    --gold: #F0B429;
    --gold-dark: #C9920A;
    --cream: #F4EFE6;
    --cream-dark: #E8E1D5;
    --white: #FFFFFF;
    --gray: #8A9BB0;
    --text: #1A2B3C;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 100;
    max-width: 100vw;
    background: rgba(11,24,41,0.96);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 64px;
    border-bottom: 1px solid rgba(240,180,41,0.2);
  }
  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1.5rem; letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    transition: opacity .2s;
  }
  .nav-logo:hover { opacity: 0.9; }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--gray); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a.active { color: var(--gold); font-weight: 600; }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    padding: 0.55rem 1.4rem; border-radius: 4px;
    font-weight: 700; font-size: 0.85rem; text-decoration: none;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: #ffc84a; transform: translateY(-1px); }
  .nav-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  /* Burger: hidden on desktop */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    cursor: pointer;
    color: var(--white);
    transition: border-color .2s, background .2s;
  }
  .nav-burger:hover { border-color: var(--gold); background: rgba(240,180,41,0.1); }
  .nav-burger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .25s, opacity .25s;
  }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: var(--navy) url('Images/Webp/IMG_4559.webp') center / cover no-repeat;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 5% 0;
    position: relative;
    overflow: hidden;
  }
  #hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(11,24,41,0.88) 0%, rgba(11,24,41,0.5) 45%, rgba(11,24,41,0.35) 100%);
    pointer-events: none;
    z-index: 1;
  }
  #hero::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(240,180,41,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-text { position: relative; z-index: 3; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(240,180,41,0.15); border: 1px solid rgba(240,180,41,0.35);
    color: var(--gold); padding: 0.35rem 0.9rem; border-radius: 20px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s ease both;
  }
  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.95; color: var(--white); text-transform: uppercase;
    letter-spacing: -0.01em;
    animation: fadeUp .7s .1s ease both;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-sub {
    color: var(--gray); font-size: 1.05rem; line-height: 1.7;
    max-width: 440px; margin: 1.5rem 0 2.5rem;
    animation: fadeUp .7s .2s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.8rem; border-radius: 6px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    letter-spacing: 0.03em; text-transform: uppercase;
    transition: all .2s; cursor: pointer; border: none;
  }
  .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; color: var(--gold); }
  .btn-primary { background: var(--gold); color: var(--navy); }
  .btn-primary:hover { background: #ffc84a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,180,41,0.35); }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
  .btn-whatsapp { background: #25D366; color: var(--white); }
  .btn-whatsapp:hover { background: #1eb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
  .btn-dark { background: var(--navy); color: var(--white); }
  .btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
  .btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

  /* ── HERO STATS ── */
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    animation: fadeUp .7s .4s ease both;
  }
  .stat { border-left: 2px solid var(--gold); padding-left: 1rem; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1;
  }
  .stat-label { color: var(--gray); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }

  /* Hero visual */
  .hero-visual {
    position: relative; display: flex; align-items: flex-end; justify-content: flex-end;
    height: 100%; padding: 2rem 5% 4rem; padding-top: 8rem;
    animation: fadeIn .9s .3s ease both;
  }
  .hero-card {
    background: linear-gradient(155deg, rgba(11,24,41,0.92) 0%, rgba(19,34,54,0.96) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(240,180,41,0.65);
    border-radius: 18px; padding: 2.5rem;
    max-width: 380px; width: 100%;
    position: relative;
    margin-left: 15rem;
    box-shadow:
      0 24px 64px rgba(0,0,0,0.45),
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 40px rgba(240,180,41,0.15);
  }
  .hero-card-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
    text-shadow: 0 0 24px rgba(240,180,41,0.35);
  }
  .product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(240,180,41,0.3);
    border-radius: 8px; padding: 0.75rem 1rem;
    color: var(--white); font-size: 0.85rem; font-weight: 600;
    display: flex; align-items: center; gap: 0.4rem;
    transition: background .2s, border-color .2s, color .2s;
  }
  .product-pill:hover { background: rgba(240,180,41,0.18); border-color: rgba(240,180,41,0.5); }
  .product-pill .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 10px rgba(240,180,41,0.6); }
  .hero-price-tag {
    position: absolute; top: -1rem; right: -1rem;
    background: var(--gold); color: var(--navy);
    border-radius: 12px; padding: 0.75rem 1.1rem; text-align: center;
    box-shadow: 0 8px 24px rgba(240,180,41,0.4);
  }
  .hero-price-tag .price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; line-height: 1; }
  .hero-price-tag .price-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
  .hero-delivery {
    margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
    background: rgba(240,180,41,0.14);
    border: 1px solid rgba(240,180,41,0.4);
    border-radius: 10px; padding: 0.85rem 1rem;
  }
  .hero-delivery-icon { font-size: 1.4rem; filter: drop-shadow(0 0 8px rgba(240,180,41,0.5)); }
  .hero-delivery-text { color: var(--white); font-size: 0.9rem; font-weight: 700; }
  .hero-delivery-sub { color: rgba(255,255,255,0.85); font-size: 0.75rem; }

  /* Floating badge */
  .float-badge {
    position: absolute; bottom: 3rem; left: -1.5rem;
    background: #132236; border: 1px solid rgba(240,180,41,0.3);
    border-radius: 10px; padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.6rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .float-badge-emoji { font-size: 1.4rem; }
  .float-badge-text { color: var(--white); font-size: 0.82rem; font-weight: 600; }
  .float-badge-sub { color: var(--gray); font-size: 0.72rem; }

  /* ── SECTION BASE ── */
  section {
    padding: 100px 5%;
    position: relative;
    /* Мягкий переход к следующей секции — лёгкая тень по нижнему краю */
    box-shadow: inset 0 -48px 32px -24px rgba(0, 0, 0, 0.08);
  }
  section:last-of-type { box-shadow: none; }
  .section-tag {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    display: inline-block; margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(2.2rem, 4vw, 3.6rem);
    text-transform: uppercase; line-height: 1; color: var(--navy);
  }
  .section-title.light { color: var(--white); }
  .section-sub {
    color: #5A6A7A; font-size: 1rem; line-height: 1.7;
    max-width: 520px; margin-top: 1rem;
  }
  .section-sub.light { color: var(--gray); }

  /* ────────────────────────────────────────────
     PHOTO FRAMES  —  стилизованные рамки-плейсхолдеры
  ──────────────────────────────────────────── */

  /* Базовый стиль рамки */
  .photo-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .photo-frame::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    transition: opacity 0.3s;
  }
  .photo-frame:hover { transform: translateY(-3px); }

  /* Иконка и подпись внутри рамки */
  .photo-frame-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    text-align: center;
    pointer-events: none;
  }
  .photo-frame-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.3s;
  }
  .photo-frame:hover .photo-frame-icon { transform: scale(1.1); }
  .photo-frame-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .photo-frame-hint {
    font-size: 0.62rem; font-weight: 500; opacity: 0.6;
    letter-spacing: 0.06em;
  }

  /* ТЁМНАЯ рамка (для секций на navy фоне) */
  .photo-frame.dark-frame {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(240,180,41,0.06) 100%);
    border: 1.5px dashed rgba(240,180,41,0.4);
  }
  .photo-frame.dark-frame::before {
    background: linear-gradient(145deg, rgba(240,180,41,0.05), transparent);
    opacity: 0;
  }
  .photo-frame.dark-frame:hover { border-color: rgba(240,180,41,0.75); box-shadow: 0 12px 40px rgba(240,180,41,0.15); }
  .photo-frame.dark-frame:hover::before { opacity: 1; }
  .photo-frame.dark-frame .photo-frame-icon { background: rgba(240,180,41,0.15); color: var(--gold); }
  .photo-frame.dark-frame .photo-frame-label { color: var(--gold); }
  .photo-frame.dark-frame .photo-frame-hint { color: var(--gray); }

  /* СВЕТЛАЯ рамка (для cream/white секций) */
  .photo-frame.light-frame {
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border: 1.5px dashed rgba(11,24,41,0.25);
    box-shadow: inset 0 0 0 4px rgba(240,180,41,0.08);
  }
  .photo-frame.light-frame:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(240,180,41,0.18), inset 0 0 0 4px rgba(240,180,41,0.12); }
  .photo-frame.light-frame .photo-frame-icon { background: var(--navy); color: var(--gold); }
  .photo-frame.light-frame .photo-frame-label { color: var(--navy); }
  .photo-frame.light-frame .photo-frame-hint { color: #8A9BB0; }

  /* ЗОЛОТАЯ акцентная рамка */
  .photo-frame.gold-frame {
    background: linear-gradient(145deg, rgba(240,180,41,0.08) 0%, rgba(240,180,41,0.18) 100%);
    border: 2px solid rgba(240,180,41,0.5);
  }
  .photo-frame.gold-frame:hover { border-color: var(--gold); box-shadow: 0 14px 48px rgba(240,180,41,0.25); }
  .photo-frame.gold-frame .photo-frame-icon { background: var(--gold); color: var(--navy); }
  .photo-frame.gold-frame .photo-frame-label { color: var(--gold-dark); }
  .photo-frame.gold-frame .photo-frame-hint { color: rgba(11,24,41,0.5); }

  /* Уголки-декораторы */
  .photo-frame.corner-deco::after {
    content: '';
    position: absolute;
    top: 8px; right: 8px;
    width: 18px; height: 18px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-radius: 0 4px 0 0;
    opacity: 0.6;
  }
  .photo-frame.corner-deco::before {
    content: '';
    position: absolute;
    bottom: 8px; left: 8px;
    width: 18px; height: 18px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    border-radius: 0 0 0 4px;
    opacity: 0.6;
    background: none;
  }

  /* ── ABOUT ── */
  #about { background: var(--cream); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
  .about-content { display: flex; flex-direction: column; }
  .about-content .btn-wrap { margin-top: auto; }
  .features-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
  .feature-item { display: flex; gap: 1rem; align-items: flex-start; }
  .feature-icon {
    width: 44px; height: 44px; background: var(--navy); color: var(--gold);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .feature-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
  .feature-desc { color: #5A6A7A; font-size: 0.87rem; line-height: 1.6; }

  /* About visual — колонка: галерея растягивается, карточка UAE внизу */
  .about-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
  }
  /* Большая рамка сверху — на всю ширину */
  .about-photo-main {
    grid-column: span 2;
    height: 240px;
  }
  /* Две маленьких рамки */
  .about-photo-sm {
    height: 140px;
  }
  /* Объединённый блок: занимает всё место над карточкой UAE (без пунктира) */
  .photo-frame.about-photo-merged {
    flex: 1;
    min-height: 0;
    position: relative;
    border: none !important;
    box-shadow: none !important;
  }
  .photo-frame.about-photo-merged:hover {
    border: none !important;
    box-shadow: none !important;
  }
  .about-gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .photo-frame-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .photo-option {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .photo-option-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  /* Карточка со статистикой */
  .about-card {
    background: var(--navy); border-radius: 14px; padding: 1.75rem;
    color: var(--white);
  }
  .about-card.accent { background: var(--gold); color: var(--navy); flex-shrink: 0; }
  .about-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem; font-weight: 900; line-height: 1;
  }
  .about-card-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.75; margin-top: 0.25rem; }
  .about-card-desc { font-size: 0.85rem; line-height: 1.6; margin-top: 0.5rem; opacity: 0.8; }

  /* ── PRODUCTS ── */
  #products { background: var(--navy); }
  .products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
  .product-card {
    position: relative;
    z-index: 1;
    background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: visible;
    transition: transform .25s, border-color .25s;
  }
  .product-card:hover { z-index: 2; transform: translateY(-4px); border-color: rgba(240,180,41,0.35); }

  /* Хедер продуктовой карточки — фоторамка вместо emoji */
  .product-card-header {
    background: linear-gradient(135deg, #1A2F45 0%, #0D2035 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    z-index: 0;
  }
  /* Большая фоторамка внутри карточки */
  .product-card-header .photo-frame {
    border-radius: 16px 16px 0 0;
    border-left: none; border-right: none; border-top: none;
    height: 220px;
    overflow: hidden;
    background: transparent;
  }
  .product-card-header .photo-frame::before,
  .product-card-header .photo-frame::after { display: none; }
  .product-card-header .photo-frame.dark-frame {
    border: none;
    box-shadow: none;
    background: transparent;
  }
  /* Два изображения 50/50 по горизонтали в хедере карточки (Women's), как FRONT | BACK */
  .product-card-header-two-imgs {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
  }
  .product-card-header-two-imgs .header-img-half {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }
  .product-card-header-two-imgs .header-img-half:first-child {
    border-radius: 16px 0 0 0;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .product-card-header-two-imgs .header-img-half:last-child {
    border-radius: 0 16px 0 0;
  }
  .product-card-header-two-imgs .header-img-half img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-type-label {
    position: absolute; top: 1rem; left: 1rem; z-index: 2;
    display: inline-block;
    background: rgba(0,0,0,0.6); color: var(--gold);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 20px;
  }
  .product-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem; font-weight: 800; text-transform: uppercase;
    color: var(--white); letter-spacing: 0.05em;
    position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  }
  .product-card-body { padding: 1.5rem; position: relative; z-index: 1; }
  .product-tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; justify-content: stretch; width: 100%; position: relative; }
  .product-tag-list--preview { margin-bottom: 1rem; }
  .product-card-body .btn.btn-primary { margin-top: 0; }
  .product-tag-hint {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
  }
  .product-tag-list:not(.product-tag-list--preview) { margin-bottom: 1.25rem; }
  .product-tag {
    flex: 1 1 0;
    min-width: 0;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
    font-size: 0.76rem; padding: 0.3rem 0.5rem; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
  }
  .product-tag-preview-wrap {
    border-color: rgba(240,180,41,0.5);
    box-shadow: 0 0 0 1px rgba(240,180,41,0.25);
    animation: previewGlowRun 5s ease-in-out infinite;
  }
  .product-tag-preview-wrap:hover,
  .product-tag-preview-wrap.is-open,
  .product-tag-preview-wrap.is-hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(240,180,41,0.4);
    animation: none;
  }
  @keyframes previewGlowRun {
    0%, 100% { box-shadow: 0 -2px 5px 1px rgba(240,180,41,0.5), 0 0 0 1px rgba(240,180,41,0.25); }
    25% { box-shadow: 2px 0 5px 1px rgba(240,180,41,0.5), 0 0 0 1px rgba(240,180,41,0.25); }
    50% { box-shadow: 0 2px 5px 1px rgba(240,180,41,0.5), 0 0 0 1px rgba(240,180,41,0.25); }
    75% { box-shadow: -2px 0 5px 1px rgba(240,180,41,0.5), 0 0 0 1px rgba(240,180,41,0.25); }
  }
  @media (prefers-reduced-motion: reduce) {
    .product-tag-preview-wrap { animation: none; }
  }
  /* Всплывающее фото при наведении на тег */
  .product-tag-preview-wrap { position: static; }
  .product-tag-preview {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.92);
    margin-bottom: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease-out, visibility 0.15s ease-out, transform 0.2s ease-out;
    z-index: 1000;
  }
  /* Cropped: левый край превью посередине между левым краем кнопки и левой границей блока (padding body 1.5rem → середина 0.75rem) */
  .product-tag-list .product-tag-preview-wrap:first-child .product-tag-preview {
    left: -0.75rem;
    transform: scale(0.92);
  }
  .product-tag-list .product-tag-preview-wrap:first-child:hover .product-tag-preview,
  .product-tag-list .product-tag-preview-wrap:first-child.is-hover .product-tag-preview {
    transform: scale(1);
  }
  /* Long: правый край превью посередине между правым краем кнопки и правой границей блока (то же 0.75rem от края карточки) */
  .product-tag-list .product-tag-preview-wrap:last-child .product-tag-preview {
    left: auto;
    right: -0.75rem;
    transform: scale(0.92);
  }
  .product-tag-list .product-tag-preview-wrap:last-child:hover .product-tag-preview,
  .product-tag-list .product-tag-preview-wrap:last-child.is-hover .product-tag-preview {
    transform: scale(1);
  }
  /* Standard: по центру (базовые стили уже left: 50%; translateX(-50%)) */
  .product-tag-preview img {
    display: block;
    width: 380px;
    height: 460px;
    max-width: 380px;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 2px solid rgba(240,180,41,0.4);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  }
  .product-tag-preview-wrap:hover .product-tag-preview,
  .product-tag-preview-wrap.is-open .product-tag-preview,
  .product-tag-preview-wrap.is-hover .product-tag-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }
  .product-tag-list .product-tag-preview-wrap:first-child:hover .product-tag-preview,
  .product-tag-list .product-tag-preview-wrap:first-child.is-hover .product-tag-preview,
  .product-tag-list .product-tag-preview-wrap:last-child:hover .product-tag-preview,
  .product-tag-list .product-tag-preview-wrap:last-child.is-hover .product-tag-preview {
    transform: scale(1);
  }
  /* При открытом модале превью над тегами не показывать */
  body.preview-modal-open .product-tag-preview-wrap .product-tag-preview {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  /* Десктоп: превью остаётся при наведении на картинку, клик по картинке возможен */
  @media (hover: hover) {
    .product-tag-preview-wrap:hover .product-tag-preview,
    .product-tag-preview-wrap.is-hover .product-tag-preview {
      pointer-events: auto;
    }
  }
  /* На тач-устройствах превью по тапу (класс is-open добавляется JS) */
  @media (hover: none) {
    .product-tag-preview-wrap { cursor: pointer; }
    .product-tag-preview-wrap.is-open .product-tag-preview { pointer-events: none; }
    .product-tag-preview-wrap.is-open .product-tag-preview img { pointer-events: auto; cursor: pointer; }
    /* Минимальная зона нажатия 44px для тапов */
    .product-tag-preview-wrap { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  }
  .product-tag-preview img { cursor: pointer; }

  /* Полноэкранный просмотр по клику на фото из превью */
  .preview-fullscreen {
    display: none;
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem 1rem;
    overflow: hidden;
    box-sizing: border-box;
  }
  .preview-fullscreen.is-open { display: flex; }
  .preview-fullscreen-inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    min-width: 0;
    min-height: 0;
    padding: 1rem;
    box-sizing: border-box;
  }
  .preview-fullscreen img {
    position: absolute;
    inset: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    display: block;
  }
  .preview-fullscreen-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }
  .preview-fullscreen-close:hover { background: rgba(255,255,255,0.25); }
  .preview-fullscreen-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  /* Один модал превью по клику на тег (desktop + mobile) */
  .preview-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90vw;
    max-width: 420px;
    background: var(--navy-mid);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    border: 1px solid rgba(240,180,41,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 9999;
  }
  .preview-modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }
  .preview-modal img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    cursor: pointer;
  }
  .preview-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .preview-modal-close:hover { background: rgba(255,255,255,0.25); }
  .preview-modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

  /* Fabric features */
  .fabric-strip {
    position: relative;
    background: linear-gradient(90deg, var(--navy-mid) 0%, #1C3049 100%);
    border: 1px solid rgba(240,180,41,0.15);
    border-radius: 16px; padding: 2.5rem;
    margin-top: 1.5rem;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
  }
  .fabric-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Images/Webp/IMG_8623.webp') no-repeat;
    background-size: 140%;
    background-position: 38% 50%;
    z-index: 0;
    opacity: 1;
  }
  .fabric-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,24,41,0.72) 0%, rgba(19,34,54,0.68) 50%, rgba(11,24,41,0.72) 100%);
    z-index: 0;
  }
  .fabric-strip .fabric-feat { position: relative; z-index: 1; }
  .fabric-feat { text-align: center; transition: transform .2s; }
  .fabric-feat:hover { transform: translateY(-2px); }
  .fabric-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
  .fabric-title { color: var(--white); font-weight: 700; font-size: 0.88rem; margin-bottom: 0.3rem; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
  .fabric-desc { color: rgba(255,255,255,0.88); font-size: 0.78rem; line-height: 1.5; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }

  /* ── CUSTOMIZATION ── */
  #customization {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    padding-top: 0;
  }
  #customization::before,
  #customization::after { display: none; }
  #customization > .custom-hero-banner ~ * { position: relative; z-index: 1; }

  /* Баннер от верха секции до блоков 01 */
  .custom-hero-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: clamp(3rem, 8vw, 5rem) 5% clamp(3rem, 8vw, 5rem) 5%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .custom-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Images/Webp/IMG_8628.webp') center/cover no-repeat;
    background-position: 65% 50%;
    z-index: 0;
  }
  .custom-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,24,41,0.82) 0%, rgba(11,24,41,0.45) 55%, rgba(11,24,41,0.25) 100%);
    z-index: 0;
  }
  .custom-hero-banner .custom-hero-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
  }
  .custom-hero-banner .custom-hero-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
  .custom-hero-banner .custom-hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
  }
  .custom-hero-banner .custom-hero-title em { color: var(--gold); font-style: normal; }
  .custom-hero-banner .custom-hero-sub {
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    line-height: 1.65;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }

  /* Большая фоторамка в секции кастомизации — левая колонка по высоте до низа CTA */
  .custom-section-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-top: 0;
    padding-top: 3rem;
    align-items: stretch;
  }
  .custom-photo-col {
    position: sticky; top: 84px;
    display: flex; flex-direction: column; min-height: 0;
  }
  .custom-photo-tall { height: 320px; }
  .custom-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .custom-photo-sq { height: 140px; }

  /* Объединённая рамка: стиль как у hero-card (🏐 Teamwear Specialists), одна фотография до CTA */
  .custom-photo-unified {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(240,180,41,0.65);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
      0 24px 64px rgba(0,0,0,0.25),
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 40px rgba(240,180,41,0.15);
    transition: border-color .3s, box-shadow .3s;
  }
  .custom-photo-unified:hover {
    border-color: var(--gold);
    box-shadow:
      0 24px 64px rgba(0,0,0,0.3),
      0 0 0 1px rgba(255,255,255,0.1) inset,
      0 0 48px rgba(240,180,41,0.25);
  }
  .custom-photo-unified .custom-unified-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
  }

  .custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .custom-card {
    background: var(--white); border-radius: 14px; padding: 1.75rem;
    border: 1px solid var(--cream-dark);
    transition: all .25s;
  }
  .custom-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(240,180,41,0.12); transform: translateY(-3px); }
  .custom-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem; font-weight: 900; color: var(--cream-dark);
    line-height: 1; margin-bottom: 0.75rem;
  }
  .custom-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.4rem; }
  .custom-desc { color: #6A7A8A; font-size: 0.85rem; line-height: 1.6; }
  .custom-cta-bar {
    background: var(--navy); border-radius: 14px; padding: 2.5rem;
    margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem;
  }
  .custom-cta-text { color: var(--white); font-size: 1.1rem; font-weight: 600; max-width: 500px; line-height: 1.5; }
  .custom-cta-text span { color: var(--gold); }

  /* ── WHO WE WORK WITH ── */
  #clients { background: var(--navy); overflow: visible; }
  .clients-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }
  .clients-content .section-tag { margin-bottom: 0.5rem; }
  .clients-content .section-title { margin-bottom: 0.5rem; }
  /* Круг «пицца»: 5 карточек по окружности (без clip-path, чтобы не обрезать контент) */
  .clients-wheel {
    position: relative;
    width: 420px;
    height: 420px;
    margin-top: 7rem;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
    border: 2px solid rgba(240,180,41,0.5);
    border-radius: 50%;
    background: rgba(11,24,41,0.2);
    overflow: visible;
  }
  .client-slice {
    --angle: calc(72deg * var(--i, 0));
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform-origin: 0 0;
    transform: rotate(var(--angle)) translate(0, -210px);
    pointer-events: none;
  }
  .client-slice-inner {
    pointer-events: auto;
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--angle)));
    transform-origin: 50% 50%;
    background: linear-gradient(155deg, rgba(11,24,41,0.96) 0%, rgba(19,34,54,0.98) 100%);
    border: 2px solid rgba(240,180,41,0.65);
    border-radius: 50%;
    padding: 1.15rem;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .client-slice-inner:hover {
    border-color: var(--gold);
    box-shadow: 0 18px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset, 0 0 36px rgba(240,180,41,0.2);
  }
  .client-slice .client-icon {
    width: auto;
    height: auto;
    min-width: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    margin-bottom: 0.5rem;
  }
  .client-slice .client-name {
    font-size: clamp(0.8rem, 1.45vw, 0.98rem);
    margin-bottom: 0.35rem;
    line-height: 1.25;
    color: var(--white);
  }
  .client-slice .client-desc {
    font-size: clamp(0.72rem, 1.25vw, 0.85rem);
    line-height: 1.4;
    color: rgba(255,255,255,0.82);
  }
  .clients-placeholder-col {
    position: relative;
    min-height: 0;
  }
  .clients-placeholder-col .clients-photo-unified {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .clients-photo-unified-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .client-card {
    background: linear-gradient(155deg, rgba(11,24,41,0.92) 0%, rgba(19,34,54,0.96) 100%);
    border: 2px solid rgba(240,180,41,0.65);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:
      0 16px 48px rgba(0,0,0,0.35),
      0 0 0 1px rgba(255,255,255,0.06) inset,
      0 0 32px rgba(240,180,41,0.12);
  }
  .client-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow:
      0 20px 56px rgba(0,0,0,0.4),
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 40px rgba(240,180,41,0.2);
  }
  .client-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(240,180,41,0.2);
    border: 1px solid rgba(240,180,41,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
  }
  .client-name {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .client-desc { color: var(--gray); font-size: 0.8rem; line-height: 1.5; flex-grow: 1; }
  #clients .quantity-banner { margin-top: 7rem; width: 100%; max-width: none; min-height: 3.5rem; }
  .quantity-banner {
    background: rgba(240,180,41,0.1); border: 1px solid rgba(240,180,41,0.25);
    border-radius: 10px; padding: 1.35rem 2rem;
    display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
    color: var(--gold); font-weight: 600; font-size: 0.95rem; line-height: 1.5;
  }
  .quantity-banner span:last-of-type { flex: 1; min-width: 0; }

  /* Единый блок в секции clients (справа от карточек) */
  .clients-layout .clients-photo-unified {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(240,180,41,0.65);
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(255,255,255,0.04) 0%, rgba(240,180,41,0.06) 100%);
    transition: border-color .3s, box-shadow .3s;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06) inset;
  }
  .clients-photo-unified:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 56px rgba(0,0,0,0.25), 0 0 40px rgba(240,180,41,0.15);
  }
  .clients-photo-unified .photo-frame-inner {
    text-align: center;
    padding: 1rem;
  }
  .clients-photo-unified .photo-frame-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(240,180,41,0.2);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  .clients-photo-unified .photo-frame-label {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .clients-photo-unified .photo-frame-hint {
    color: var(--gray);
    font-size: 0.72rem;
    margin-top: 0.35rem;
  }

  /* ── WHY US ── */
  #why {
    background: var(--cream);
    padding-top: 72px;
  }
  .why-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 3rem;
  }
  .why-content { display: flex; flex-direction: column; gap: 0; }
  .why-content .section-tag { margin-bottom: 0.75rem; }
  .why-content .section-title { margin-bottom: 1rem; }
  .why-content .why-grid { margin-top: 1.5rem; }
  .why-photo-col { display: flex; flex-direction: column; min-height: 0; }
  .why-photo-unified {
    flex: 1;
    min-height: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(240,180,41,0.65);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
      0 24px 64px rgba(0,0,0,0.25),
      0 0 0 1px rgba(255,255,255,0.08) inset,
      0 0 40px rgba(240,180,41,0.15);
    transition: border-color .3s, box-shadow .3s;
  }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .why-card {
    background: var(--white); border-radius: 14px; padding: 1.75rem;
    border-left: 3px solid var(--gold);
    transition: all .25s;
  }
  .why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
  .why-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem;
  }
  .why-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
  .why-desc { color: #6A7A8A; font-size: 0.85rem; line-height: 1.6; }

  /* Фоторамки в секции Why Us */
  .why-photo-tall { height: 260px; }
  .why-photo-wide { height: 150px; }
  .why-photo-unified:hover {
    border-color: var(--gold);
    box-shadow:
      0 24px 64px rgba(0,0,0,0.3),
      0 0 0 1px rgba(255,255,255,0.1) inset,
      0 0 48px rgba(240,180,41,0.25);
  }
  .why-photo-unified .why-unified-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center top; /* голова на фото видна полностью */
    display: block;
  }

  /* ── PROCESS ── */
  #process {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  #process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Images/Webp/IMG_4201.webp') center / cover no-repeat;
    z-index: 0;
  }
  #process::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11,24,41,0.88) 0%, rgba(11,24,41,0.5) 45%, rgba(11,24,41,0.35) 100%);
    pointer-events: none;
    z-index: 0;
  }
  #process > * { position: relative; z-index: 1; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3.5rem; position: relative; align-items: stretch; }
  /* Линия только в промежутках между кружками шагов (не под ними) */
  .process-steps-line {
    position: absolute; top: 52px; left: 0; width: 100%; height: 3px;
    pointer-events: none; z-index: 0;
  }
  .process-steps-line .line-seg {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    background: rgba(240,180,41,0.18);
    border-radius: 2px;
  }
  /* Промежуток между кружком 1 и 2 (центры колонок 12.5% и 37.5%, кружок 56px) */
  .process-steps-line .line-seg-1 { left: calc(12.5% + 28px); width: calc(25% - 56px); }
  .process-steps-line .line-seg-2 { left: calc(37.5% + 28px); width: calc(25% - 56px); }
  .process-steps-line .line-seg-3 { left: calc(62.5% + 28px); width: calc(25% - 56px); }
  .line-seg-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), #f5c84d);
    box-shadow: 0 0 10px rgba(240,180,41,0.5);
    transition: width 0.45s cubic-bezier(0.33, 0.1, 0.2, 1);
  }
  .line-seg-1 .line-seg-fill { border-radius: 2px 0 0 2px; }
  .line-seg-3 .line-seg-fill { border-radius: 0 2px 2px 0; }
  /* Базовые задержки при опустошении (переопределяются при заполнении) */
  .line-seg-2 .line-seg-fill { transition-delay: 0.25s; }
  .line-seg-3 .line-seg-fill { transition-delay: 0.5s; }
  /* Шаг 1: только сегмент 1 */
  .step-card:nth-child(1):hover ~ .process-steps-line .line-seg-1 .line-seg-fill { width: 100%; transition-delay: 0s; }
  /* Шаг 2: сегмент 1 сразу, сегмент 2 — после пульса шага 2 */
  .step-card:nth-child(2):hover ~ .process-steps-line .line-seg-1 .line-seg-fill,
  .step-card:nth-child(2):hover ~ .process-steps-line .line-seg-2 .line-seg-fill { width: 100%; }
  .step-card:nth-child(2):hover ~ .process-steps-line .line-seg-1 .line-seg-fill { transition-delay: 0s; }
  .step-card:nth-child(2):hover ~ .process-steps-line .line-seg-2 .line-seg-fill { transition-delay: 1.3s; }
  /* Шаг 3: сегмент 3 — после пульса шага 3 */
  .step-card:nth-child(3):hover ~ .process-steps-line .line-seg-1 .line-seg-fill,
  .step-card:nth-child(3):hover ~ .process-steps-line .line-seg-2 .line-seg-fill,
  .step-card:nth-child(3):hover ~ .process-steps-line .line-seg-3 .line-seg-fill { width: 100%; }
  .step-card:nth-child(3):hover ~ .process-steps-line .line-seg-1 .line-seg-fill { transition-delay: 0s; }
  .step-card:nth-child(3):hover ~ .process-steps-line .line-seg-2 .line-seg-fill { transition-delay: 1.3s; }
  .step-card:nth-child(3):hover ~ .process-steps-line .line-seg-3 .line-seg-fill { transition-delay: 2.6s; }
  /* Шаг 4: то же */
  .step-card:nth-child(4):hover ~ .process-steps-line .line-seg-1 .line-seg-fill,
  .step-card:nth-child(4):hover ~ .process-steps-line .line-seg-2 .line-seg-fill,
  .step-card:nth-child(4):hover ~ .process-steps-line .line-seg-3 .line-seg-fill { width: 100%; }
  .step-card:nth-child(4):hover ~ .process-steps-line .line-seg-1 .line-seg-fill { transition-delay: 0s; }
  .step-card:nth-child(4):hover ~ .process-steps-line .line-seg-2 .line-seg-fill { transition-delay: 1.3s; }
  .step-card:nth-child(4):hover ~ .process-steps-line .line-seg-3 .line-seg-fill { transition-delay: 2.6s; }
  /* При снятии наведения — опустошение справа налево */
  .line-seg-1 .line-seg-fill { transition-delay: 0.45s; }
  .line-seg-2 .line-seg-fill { transition-delay: 0.25s; }
  .line-seg-3 .line-seg-fill { transition-delay: 0s; }
  .step-card:nth-child(1):hover ~ .process-steps-line .line-seg-2 .line-seg-fill,
  .step-card:nth-child(1):hover ~ .process-steps-line .line-seg-3 .line-seg-fill,
  .step-card:nth-child(2):hover ~ .process-steps-line .line-seg-3 .line-seg-fill { width: 0; }
  /* Авто-проигрывание: сегмент 2 после пульса шага 2 (0.45s + 0.85s), сегмент 3 после пульса шага 3 */
  .process-steps.has-played .line-seg-1 .line-seg-fill { width: 100%; transition-delay: 0s; }
  .process-steps.has-played .line-seg-2 .line-seg-fill { width: 100%; transition-delay: 1.3s; }
  .process-steps.has-played .line-seg-3 .line-seg-fill { width: 100%; transition-delay: 2.6s; }
  @keyframes stepReached {
    0% { transform: scale(1); }
    40% { transform: scale(1.12); }
    100% { transform: scale(1); }
  }
  @keyframes stepReachedBubble {
    0% { transform: scale(1); }
    35% { transform: scale(1.32); }
    100% { transform: scale(1); }
  }
  .step-card {
    background: rgba(255,255,255,0.28);
    border: 1px solid rgba(255,255,255,0.32);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: border-color .25s, box-shadow .25s;
  }
  .step-card .step { flex: 1; display: flex; flex-direction: column; }
  .step-card:hover {
    border-color: rgba(240,180,41,0.4);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  /* Пульс при достижении линии (класс добавляется JS по transitionend заполнения) */
  .step-card.step-reached { animation: stepReached 0.85s ease-in-out; }
  .step-card.step-reached .step-bubble { animation: stepReachedBubble 0.85s ease-in-out; }
  .step { text-align: center; padding: 0 0.5rem; position: relative; padding-bottom: 0.25rem; }
  .step-desc { margin-top: 0.5rem; max-width: 220px; margin-left: auto; margin-right: auto; }
  .step-bubble {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold); color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; position: relative; z-index: 1;
  }
  .step-day {
    background: rgba(240,180,41,0.15); color: var(--gold);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 20px;
    display: inline-block; margin-bottom: 0.6rem;
  }
  .step-title { color: #FDFDFD; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; text-shadow: 0 0 6px rgba(0,0,0,0.5); }
  .step-desc { color: #E3ECF5; font-size: 0.84rem; line-height: 1.6; text-shadow: 0 0 4px rgba(0,0,0,0.55); }
  .process-cta {
    margin-top: 4rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  }
  .process-promise {
    display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
  }
  .promise-item { color: var(--gray); font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }
  .promise-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

  /* ── PRICING ── */
  #pricing {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  #pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Images/Webp/IMG_4347.webp') center no-repeat;
    background-size: 100% auto;
    background-color: var(--navy);
    z-index: 0;
  }
  #pricing::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11,24,41,0.88) 0%, rgba(11,24,41,0.5) 45%, rgba(11,24,41,0.35) 100%);
    pointer-events: none;
    z-index: 0;
  }
  #pricing > * { position: relative; z-index: 1; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .pricing-card {
    background: rgba(11,24,41,0.3);
    border: 1px solid rgba(240,180,41,0.35);
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    transition: all .25s;
  }
  .pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
  .pricing-card.featured {
    background: rgba(11,24,41,0.4);
    border-color: rgba(240,180,41,0.45);
    box-shadow: 0 8px 40px rgba(240,180,41,0.2);
  }
  .featured-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--navy);
    font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 20px;
    white-space: nowrap;
  }
  .pricing-tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
  .pricing-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.6rem; text-transform: uppercase; }
  .pricing-name.dark { color: var(--navy); }
  .pricing-name.light { color: var(--white); }
  .pricing-price {
    font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1;
    margin: 1.25rem 0 0.25rem;
  }
  .pricing-price.dark { color: var(--navy); }
  .pricing-price.light { color: var(--gold); }
  .pricing-price span { font-size: 1.2rem; font-weight: 600; }
  .pricing-note { font-size: 0.78rem; color: var(--gray); line-height: 1.5; margin-bottom: 1.5rem; }
  .pricing-note.light { color: var(--gray); }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
  .pricing-features li { font-size: 0.87rem; display: flex; align-items: center; gap: 0.5rem; }
  .pricing-features li.dark { color: var(--text); }
  .pricing-features li.light { color: rgba(255,255,255,0.8); }
  .pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

  /* Фоторамка в pricing карточке */
  .pricing-photo {
    height: 130px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
  }

  /* ── CTA / CONTACT ── */
  #contact {
    background: var(--navy);
    text-align: center; position: relative; overflow: hidden;
  }
  #contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Images/Webp/IMG_7934.webp') center / cover no-repeat;
    z-index: 0;
  }
  #contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11,24,41,0.88) 0%, rgba(11,24,41,0.5) 45%, rgba(11,24,41,0.35) 100%);
    pointer-events: none;
    z-index: 0;
  }
  .contact-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .contact-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase; color: var(--white); line-height: 1;
    margin-bottom: 1.5rem;
  }
  .contact-title em { color: var(--gold); font-style: normal; }
  .contact-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.4);
    max-width: 32em;
  }
  .contact-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .contact-channels {
    display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  }
  .channel { color: var(--gray); font-size: 0.85rem; }
  .channel-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
  .channel-value { color: var(--white); font-weight: 600; }

  /* Фото-полоса над контактной секцией */
  .contact-photo-strip {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 0.75rem;
    margin-bottom: 3rem;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
  }
  .contact-photo-strip .photo-frame { border-radius: 10px; }
  .contact-strip-sm { height: 100px; }
  .contact-strip-md { height: 130px; }

  /* ── FOOTER ── */
  footer {
    background: #060E18; padding: 2rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--white);
  }
  .footer-logo span { color: var(--gold); }
  .footer-copy { color: #5A6A7A; font-size: 0.78rem; }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { color: #5A6A7A; text-decoration: none; font-size: 0.78rem; transition: color .2s; }
  .footer-links a:hover { color: var(--gold); }

  /* Back to top — показывается после ~30% скролла */
  .back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 7rem;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(240,180,41,0.4);
    transition: background .2s, transform .2s, box-shadow .2s, opacity .25s, visibility .25s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .back-to-top:hover { background: #ffc84a; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(240,180,41,0.5); }
  .back-to-top:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
  .back-to-top span { line-height: 1; }

  /* Inline icons (WhatsApp, Instagram, Email) */
  .icon-wa, .icon-ig, .icon-mail {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: -0.2em;
    fill: currentColor;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-burger { display: flex; order: 1; }
    .nav-logo { order: 2; }
    .nav-cta { order: 3; margin-left: 0; }
    .nav-links {
      display: flex;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: rgba(11,24,41,0.98);
      backdrop-filter: blur(12px);
      padding: 1rem 5%;
      border-bottom: 1px solid rgba(240,180,41,0.2);
      transform: translateY(-100%);
      visibility: hidden;
      opacity: 0;
      transition: transform .25s, opacity .25s, visibility .25s;
    }
    .nav-links.is-open {
      transform: translateY(0);
      visibility: visible;
      opacity: 1;
    }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
    #hero { grid-template-columns: 1fr; padding-top: 100px; width: 100%; max-width: 100%; min-width: 0; }
    #hero .hero-text { min-width: 0; }
    section { max-width: 100%; min-width: 0; }
    .hero-visual { display: none; }
    .about-grid,
    .products-grid,
    .why-grid,
    .process-steps,
    .pricing-grid { grid-template-columns: 1fr; }
    .process-steps { gap: 1rem; }
    .step-card {
      min-height: 0;
      border-bottom: 1px solid rgba(240,180,41,0.2);
      padding: 1.5rem 1rem;
    }
    .step-card:last-child { border-bottom: none; }
    /* Картинка во втором блоке (About): на мобильном flex даёт высоту 0 — задаём min-height */
    .photo-frame.about-photo-merged { min-height: 260px; }
    .custom-section-layout { grid-template-columns: 1fr; }
    .custom-photo-unified { min-height: 320px; }
    .why-photo-unified { min-height: 320px; }
    .custom-hero-banner { min-height: 43vh; padding: 2.5rem 5%; align-items: flex-end; padding-bottom: 2rem; }
    .custom-hero-banner .custom-hero-title { font-size: clamp(1.9rem, 6vw, 2.8rem); }
    .custom-photo-col { position: static; }
    .custom-grid { grid-template-columns: 1fr 1fr; }
    .clients-layout { grid-template-columns: 1fr; }
    .clients-placeholder-col .clients-photo-unified { position: static; height: auto; min-height: 160px; margin-top: 2rem; margin-bottom: 1.5rem; }
    .clients-wheel {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      width: 100%;
      height: auto;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
      border-radius: 14px;
      overflow: visible;
      border: none;
      background: transparent;
    }
    .client-slice { position: static; clip-path: none; transform: none; width: auto; height: auto; margin: 0; left: auto; top: auto; }
    .client-slice-inner { position: static; transform: none; width: 180px; height: 180px; max-width: 100%; margin: 0 auto; border-radius: 50%; }
    .fabric-strip {
      grid-template-columns: repeat(2, 1fr);
      width: 100vw;
      margin-left: calc(50% - 50vw);
      border-radius: 0;
    }
    .fabric-strip::before {
      background-size: cover;
      background-position: 38% 50%;
    }
    .process-steps::before { display: none; }
    .process-steps-line { display: none; }
    .custom-cta-bar { flex-direction: column; text-align: center; }
    .contact-channels { gap: 1.5rem; flex-direction: column; align-items: center; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .why-layout { grid-template-columns: 1fr; }
    .contact-photo-strip { grid-template-columns: 1fr; }
    .product-tag-list { justify-content: stretch; flex-wrap: nowrap; gap: 0.4rem; }
    .product-tag { flex: 1 1 0; min-width: 0; min-height: 44px; font-size: 0.7rem; padding: 0.26rem 0.35rem; white-space: nowrap; text-align: center; display: inline-flex; align-items: center; justify-content: center; }
    .quantity-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 1.25rem 1rem; gap: 1rem; }
    .quantity-banner .btn { width: 100%; justify-content: center; margin-left: 0 !important; }
  }
  @media (max-width: 768px) {
    section { padding: 70px 4%; }
    .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
    .custom-grid { grid-template-columns: 1fr; }
    .contact-buttons { flex-direction: column; }
    .contact-buttons .btn { width: 100%; justify-content: center; }
    /* Кнопки тегов на всю ширину фото */
    .product-tag-list { justify-content: stretch; flex-wrap: nowrap; gap: 0.35rem; }
    .product-tag { flex: 1 1 0; min-width: 0; min-height: 44px; font-size: 0.68rem; padding: 0.28rem 0.35rem; white-space: nowrap; text-align: center; display: inline-flex; align-items: center; justify-content: center; }
    .product-tag-hint { font-size: 0.65rem; margin-bottom: 0.85rem; }
    .quantity-banner { font-size: 0.9rem; padding: 1rem; line-height: 1.5; }
  }
  /* Очень узкие экраны (смартфоны ~320–480px) */
  @media (max-width: 480px) {
    section { padding: 56px 5%; }
    #hero { padding-top: 88px; }
    .hero-title { font-size: clamp(1.85rem, 9vw, 2.6rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.3rem 0.7rem; }
    nav { padding: 0 4%; }
    .nav-logo { font-size: 1.25rem; }
    .nav-cta { padding: 0.5rem 0.9rem; font-size: 0.78rem; }
    .custom-hero-banner { min-height: 38vh; padding: 2rem 5%; align-items: flex-end; padding-bottom: 1.75rem; }
    .custom-hero-banner .custom-hero-title { font-size: clamp(1.65rem, 7vw, 2.4rem); }
    .fabric-strip {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1.5rem 5%;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      border-radius: 0;
      box-sizing: border-box;
    }
    .fabric-strip::before {
      background-size: cover;
      background-position: 38% 50%;
    }
    .fabric-title { font-size: 0.95rem; }
    .fabric-desc { font-size: 0.85rem; line-height: 1.55; }
    .section-title { font-size: clamp(1.75rem, 6vw, 2.4rem); }
    .clients-layout { grid-template-columns: 1fr; }
    .clients-wheel { grid-template-columns: 1fr; }
    .product-card-header { height: 180px; }
    .product-card-header .photo-frame { height: 180px; }
    .photo-frame.about-photo-merged { min-height: 200px; }
    .product-tag-list { justify-content: stretch; gap: 0.25rem; }
    .product-tag { flex: 1 1 0; min-height: 44px; font-size: 0.58rem; padding: 0.2rem 0.25rem; display: inline-flex; align-items: center; justify-content: center; }
    /* Превью-картинка в границах экрана на узких экранах (тап открывает модал, но поплавок может мелькнуть) */
    .product-tag-preview img { width: min(380px, calc(100vw - 2rem)); height: min(460px, 70vh); max-width: none; max-height: none; object-fit: cover; }
  }
