@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Caveat:wght@700&display=swap');

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

            :root {
      --primary-purple: #593C90;
      --dark-purple: #5E2177;
      --accent-yellow: #FFDE59;
      --light-yellow: #FFEF9B;
      --text-black: #060306;
      --white: #FFFFFF;
      --bg: #060306;
      --bg2: #1a0b2e;
      --card: #1a1a1a;
      --card2: #222222;
      --purple: #593C90;
      --purple2: #593C90;
      --purple-dark: #5E2177;
      --text: #ffffff;
      --muted: #d4d4d4;
      --dim: #a8a8a8;
      --border: #2a2a2a;
      --grad: linear-gradient(135deg, #593C90 0%, #5E2177 100%);
      --gradient-purple: linear-gradient(135deg, #593C90 0%, #5E2177 100%);
      --gradient-dark: linear-gradient(180deg, #060306 0%, #1a0b2e 100%);
      --purple-rgba: rgba(89, 60, 144, 0.15);
      --yellow-rgba: rgba(255, 222, 89, 0.3);
      --header-h: 72px;
      --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-h);
      scrollbar-width: thin;
      scrollbar-color: #593C90 #161616;
      overflow-x: hidden;
    }

    *::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }

    *::-webkit-scrollbar-track {
      background: #161616;
      border-radius: 10px;
    }

    *::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #5E2177 0%, #593C90 100%);
      border-radius: 10px;
      border: 2px solid #161616;
    }

    *::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #593C90 0%, #FFDE59 100%);
    }

    *::-webkit-scrollbar-corner {
      background: #161616;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--gradient-dark);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: var(--purple2); text-decoration: none; transition: color var(--ease); }
    a:hover { color: var(--accent-yellow); }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    /* Brand typography */
    h1, h2, h3, h4, .section-title, .modal-title, .hall-name, .advantage-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    body, p, li, span, .advantage-text, .hall-desc {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
    }
    .accent, .handwritten, .hero-accent.handwritten {
      font-family: 'Caveat', cursive;
      font-weight: 700;
    }
    .logo, .logo-desktop, .logo-mobile {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 800;
      text-align: center;
      margin-bottom: 12px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-sub {
      text-align: center;
      color: #d8d8d8;
      font-size: 1.05rem;
      margin-bottom: 48px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 14px 32px;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all var(--ease);
      text-decoration: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, #593C90, #5E2177);
      color: #FFFFFF;
      border: none;
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #5E2177, #593C90);
      box-shadow: 0 4px 16px rgba(89, 60, 144, 0.4);
      color: #FFFFFF;
    }

    .btn-outline {
      background: transparent;
      color: var(--purple2);
      border: 2px solid var(--purple-dark);
    }

    .btn-outline:hover {
      background: var(--purple-dark);
      color: #fff;
      transform: translateY(-2px);
    }

    /* ===== Header ===== */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--header-h);
      background: rgba(26, 11, 46, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow var(--ease);
    }

    .header.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5); }

    .header .container {
      max-width: 1320px;
      padding: 0 16px;
    }

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

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      line-height: 0;
    }

    .logo-desktop {
      display: block;
      height: 40px;
      width: auto;
      max-width: 200px;
      object-fit: contain;
    }

    .logo:hover .logo-desktop { opacity: 0.88; }

    .logo-mobile {
      display: none;
      height: 48px;
      width: auto;
      max-width: 56px;
      object-fit: contain;
    }

    .logo-mark {
      width: 40px; height: 40px;
      border-radius: 10px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .nav {
      flex: 1;
      display: flex;
      justify-content: center;
      min-width: 0;
    }

    .nav-list {
      display: flex;
      flex-wrap: nowrap;
      gap: clamp(10px, 1.4vw, 20px);
      align-items: center;
    }

    .nav-link {
      color: #f5f5f5;
      font-weight: 600;
      font-size: clamp(0.78rem, 0.95vw, 0.9rem);
      white-space: nowrap;
      position: relative;
      padding: 4px 0;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--grad);
      transition: width var(--ease);
    }

    .nav-link:hover { color: #fff; }
    .nav-link:hover::after { width: 100%; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .header-contacts {
      text-align: right;
      line-height: 1.35;
    }

    .header-address {
      font-size: 0.72rem;
      color: #e0e0e0;
      margin-bottom: 2px;
      line-height: 1.3;
    }

    .city-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 14px;
      background: linear-gradient(135deg, var(--purple-dark), var(--purple));
      border: none;
      border-radius: 10px;
      color: #fff;
      font-family: inherit;
      font-size: 0.82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--ease);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .city-btn:hover {
      filter: brightness(1.1);
      transform: translateY(-1px);
    }

    .header-phone {
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .header-phone:hover { color: var(--purple2); }

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

    .burger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all var(--ease);
    }

    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: calc(var(--header-h) + 40px) 0 80px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero-accent { color: var(--purple2); }

    .hero-layout {
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 48px;
      align-items: center;
      width: 100%;
    }

    .hero-reviews {
      position: relative;
      width: 320px;
      height: 500px;
      flex-shrink: 0;
    }

    .hero-reviews-widget {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
    }

    .hero-reviews-link {
      position: absolute;
      bottom: 8px;
      left: 0;
      width: 100%;
      text-align: center;
      font-size: 10px;
      color: #b3b3b3;
      padding: 0 16px;
      box-sizing: border-box;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-content {
      text-align: center;
      padding: 0 20px;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-city {
      display: block;
      font-size: clamp(1.5rem, 3.5vw, 2.6rem);
      font-weight: 400;
      color: #fff;
      -webkit-text-fill-color: #fff;
      margin-top: 4px;
    }

    .hero-badge {
      display: inline-block;
      padding: 6px 16px;
      background: rgba(89, 60, 144, 0.15);
      border: 1px solid rgba(89, 60, 144, 0.35);
      border-radius: 20px;
      color: var(--purple2);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
      animation: fadeUp 0.7s ease forwards;
    }

    .hero-title {
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: 1px;
      margin-bottom: 20px;
      color: #fff;
      -webkit-text-fill-color: #fff;
      animation: fadeUp 0.7s ease 0.1s forwards;
      opacity: 0;
    }

    .hero-title .hero-accent {
      -webkit-text-fill-color: var(--purple2);
    }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255, 255, 255, 0.9);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.5;
      animation: fadeUp 0.7s ease 0.2s forwards;
      opacity: 0;
    }

    .btn-hero {
      padding: 16px 32px;
      font-size: 1rem;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: center;
      animation: fadeUp 0.7s ease 0.35s forwards;
      opacity: 0;
      margin-bottom: 28px;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s ease 0.5s forwards;
      opacity: 0;
    }

    .hero-stat { text-align: center; }

    .hero-stat-num {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--purple2);
    }

    .hero-stat-label {
      font-size: 0.8rem;
      color: var(--dim);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== Prices / Tabs ===== */
    .prices {
      padding: 56px 0 64px;
      background: var(--bg2);
      position: relative;
      overflow: hidden;
      transition: background 0.5s ease;
    }
    .prices .section-title {
      margin-bottom: 8px;
      font-size: clamp(1.45rem, 3vw, 1.9rem);
    }

    .prices::before {
      content: '';
      position: absolute;
      inset: 0;
      background: center / cover no-repeat;
      transition: background-image 0.5s ease;
      z-index: 0;
    }

    .prices::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      z-index: 0;
    }

    .prices > .container {
      position: relative;
      z-index: 1;
    }

    .prices[data-hall="velur"]::before {
      background-image: url('../images/halls/velur.jpg?v=3');
    }

    .prices[data-hall="neon"]::before {
      background-image: url('../images/halls/neon.jpg?v=4');
    }

    .prices[data-hall="loft"]::before,
    .prices[data-hall="neonloft"]::before {
      background-image: url('../images/halls/loft.jpg?v=3');
    }

    /* ===== Advantages ===== */
    .advantages {
      padding: 80px 0;
      background: #f7f8fa;
      color: #212121;
    }

    .advantages .section-title {
      margin-bottom: 12px;
    }

    .advantages .section-sub {
      color: #4a4a4a;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
    }

    .advantage-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(89, 60, 144, 0.08);
      transition: transform var(--ease), box-shadow var(--ease);
    }
    .advantage-card.format-card {
      display: flex;
      flex-direction: column;
    }
    .format-card .advantage-text {
      flex: 1;
    }

    .advantage-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(94, 33, 119, 0.15);
    }

    .advantage-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      line-height: 1;
    }

    .advantage-icon img { width: 64px; height: 64px; object-fit: contain; }

    .advantage-icon-svg svg { fill: var(--purple-dark); }

    .advantage-title {
      font-size: 20px;
      font-weight: 700;
      color: #593C90;
      margin-bottom: 14px;
    }

    .advantage-text {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
    }

    .advantage-text .format-points {
      margin: 10px 0 0;
      padding: 0 0 0 1.1em;
      list-style: disc;
    }
    .advantage-text .format-points li {
      margin: 0 0 6px;
      line-height: 1.45;
      color: #333;
    }
    .advantage-text .format-points li:last-child { margin-bottom: 0; }
    .format-card .advantage-text p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
    }
    .format-card .advantage-title {
      font-size: 17px;
      line-height: 1.35;
      margin-bottom: 10px;
    }


    .advantage-price {
      font-weight: 700;
      margin-top: 12px;
      font-size: 1rem;
    }

    /* ===== Neon+Loft price panel ===== */
    .neonloft-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 28px;
    }

    .neonloft-feature h4 {
      font-size: 0.95rem;
      color: var(--purple2);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .neonloft-feature p {
      font-size: 0.9rem;
      color: #e0e0e0;
      margin-bottom: 8px;
    }

    .neonloft-feature .note {
      font-size: 0.8rem;
      color: #c0c0c0;
      font-style: italic;
    }

    .tabs-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .tab-btn {
      padding: 12px 28px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      color: #e8e8e8;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--ease);
      position: relative;
      overflow: hidden;
    }

    .tab-btn span { position: relative; z-index: 1; }

    .tab-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad);
      opacity: 0;
      transition: opacity var(--ease);
    }

    .tab-btn:hover {
      border-color: var(--purple-dark);
      color: #fff;
    }

    .tab-btn.active {
      border-color: transparent;
      color: #fff;
      box-shadow: 0 4px 24px rgba(89, 60, 144, 0.4);
    }

    .tab-btn.active::before { opacity: 1; }

    .tab-panel {
      display: none;
      animation: panelIn 0.4s ease;
    }

    .tab-panel.active { display: block; overflow: visible; }

    @keyframes panelIn {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      max-width: none;
      width: 100%;
      margin: 0 auto;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    }

    .price-card-name {
      font-size: 2rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 8px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .price-card-cap {
      text-align: center;
      color: #e0e0e0;
      margin-bottom: 12px;
    }

    .price-warn {
      text-align: center;
      color: #FFDE59;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 28px;
    }

    .price-note {
      text-align: center;
      color: #d0d0d0;
      font-size: 0.85rem;
      margin-bottom: 32px;
      line-height: 1.5;
    }

    .price-seo-subtitle {
      max-width: 720px;
      margin: 0 auto 40px;
      text-align: center;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      font-size: clamp(15px, 2vw, 17px);
    }

    .price-calc {
      margin: 0 0 28px;
    }

    .price-calc-toggle {
      width: 100%;
    }

    .price-calc-toggle:focus-visible,
    .price-calc-slider:focus-visible {
      outline: 2px solid #593C90;
      outline-offset: 3px;
    }

    .price-calc-panel {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      transition: max-height 300ms ease, opacity 300ms ease, padding 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    }

    .price-calc.is-open .price-calc-panel {
      max-height: 280px;
      opacity: 1;
      padding: 24px;
      margin-top: 16px;
      border-color: rgba(89, 60, 144, 0.2);
      box-shadow: 0 8px 32px rgba(89, 60, 144, 0.15);
    }

    .price-calc-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .price-calc-label {
      flex: 0 0 auto;
      color: #e8e8e8;
      font-size: 0.92rem;
      font-weight: 600;
      min-width: 7.5em;
    }

    .price-calc-slider-col {
      flex: 1;
      min-width: 0;
    }

    .price-calc-slider-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .price-calc-slider {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 999px;
      background: linear-gradient(to right, #593C90 var(--pct, 35%), rgba(255, 255, 255, 0.15) var(--pct, 35%));
      cursor: pointer;
    }

    .price-calc.is-over .price-calc-slider {
      background: linear-gradient(
        to right,
        #593C90 var(--limit, 60%),
        #f97316 var(--limit, 60%),
        #f97316 var(--pct, 70%),
        rgba(255, 255, 255, 0.15) var(--pct, 70%)
      );
    }

    .price-calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #593C90;
      box-shadow: 0 0 12px rgba(89, 60, 144, 0.55);
    }

    .price-calc.is-over .price-calc-slider::-webkit-slider-thumb {
      border-color: #f97316;
    }

    .price-calc-slider::-moz-range-thumb {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #593C90;
    }

    .price-calc.is-over .price-calc-slider::-moz-range-thumb {
      border-color: #f97316;
    }

    .price-calc-guests {
      min-width: 1.6em;
      text-align: right;
      font-variant-numeric: tabular-nums;
      font-weight: 700;
      color: #fff;
    }

    .price-calc-scale {
      position: relative;
      height: 1.15em;
      margin: 8px calc(1.6em + 12px) 0 0;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.5);
      font-variant-numeric: tabular-nums;
    }

    .price-calc-scale-min { position: absolute; left: 0; }
    .price-calc-scale-max { position: absolute; right: 0; }
    .price-calc-scale-limit {
      position: absolute;
      left: var(--limit, 60%);
      transform: translateX(-50%);
      color: #fdba74;
    }

    .price-calc--sell {
      margin: 0 0 24px;
    }

    .price-calc--sell.is-open .price-calc-panel,
    .price-calc--sell .price-calc-panel {
      max-height: none;
      overflow: visible;
      opacity: 1;
      padding: 24px;
      margin-top: 0;
      border-color: rgba(89, 60, 144, 0.2);
      box-shadow: 0 8px 32px rgba(89, 60, 144, 0.15);
    }

    .price-calc-result {
      text-align: center;
      margin: 8px 0 20px;
    }

    .price-calc-result-value {
      margin: 0;
      color: #4ade80;
      font-size: 32px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .price-calc-result-meta {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.88rem;
    }

    .price-calc-switches {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 20px;
    }

    .price-calc-switch {
      display: flex;
      gap: 8px;
      padding: 4px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.04);
    }

    .price-calc-chip {
      flex: 1;
      min-height: 40px;
      padding: 8px 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      background: transparent;
      color: rgba(255, 255, 255, 0.78);
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 700;
      cursor: pointer;
    }

    .price-calc-chip.is-active {
      background: var(--grad);
      border-color: transparent;
      color: #fff;
    }

    .price-perks {
      background: rgba(89, 60, 144, 0.05);
      border: 1px solid rgba(89, 60, 144, 0.2);
      border-radius: 12px;
      padding: 24px;
      margin: 0 0 24px;
    }

    .price-perks-title {
      margin: 0 0 16px;
      font-size: 1.15rem;
      font-weight: 800;
      color: #fff;
    }

    .price-perks-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .price-perks-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    .price-perk-icon {
      flex: 0 0 auto;
      color: #4ade80;
      font-weight: 800;
      font-size: 1.05rem;
      line-height: 1.3;
    }

    .price-compare {
      margin: 0 0 24px;
    }

    .price-compare-title {
      margin: 0 0 10px;
      text-align: center;
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
    }

    .price-compare-sub {
      margin: 0 auto 20px;
      max-width: 640px;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.5;
    }

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

    .price-compare-col {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.02);
    }

    .price-compare-col--kr {
      border: 2px solid #593C90;
      background: rgba(89, 60, 144, 0.05);
      box-shadow: 0 8px 28px rgba(89, 60, 144, 0.22);
    }

    .price-compare-col h4 {
      margin: 0 0 14px;
      text-align: center;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.85);
    }

    .price-compare-col--kr h4 { color: #e9d5ff; }

    .price-compare-col p {
      margin: 0 0 8px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    .price-compare-col ul {
      margin: 8px 0 12px;
      padding: 0;
      list-style: none;
    }

    .price-compare-col li {
      position: relative;
      padding-left: 14px;
      margin: 0 0 4px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.92rem;
    }

    .price-compare-col li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: #593C90;
    }

    .price-compare-label {
      margin-top: 10px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
    }

    .price-compare-total {
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      font-weight: 800;
      color: #fff;
      font-size: 1.05rem;
    }

    .price-compare-save {
      margin: 20px 0 0;
      text-align: center;
      font-size: clamp(16px, 2.2vw, 20px);
      font-weight: 700;
      line-height: 1.45;
      color: #e9d5ff;
    }

    .price-calc-hint {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .price-calc-hint.is-over {
      color: #fdba74;
      font-weight: 700;
    }

    .price-cta-full {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 820px;
      height: 48px;
      margin: 4px auto 0;
      padding: 0 24px;
      border-radius: 12px;
      background: var(--grad);
      color: #fff;
      font-size: 1rem;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 4px 30px rgba(89, 60, 144, 0.4);
    }

    .price-cta-full:hover {
      transform: translateY(-2px);
      color: #fff;
      box-shadow: 0 8px 40px rgba(89, 60, 144, 0.55);
    }

    .price-cta-note {
      margin: 10px 0 28px;
      text-align: center;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.82rem;
    }

    .price-reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .price-reveal.is-in {
      opacity: 1;
      transform: none;
    }

    .price-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: stretch;
      margin-bottom: 12px;
    }

    .price-pillar {
      display: flex;
      flex-direction: column;
      min-width: 0;
      border: 1px solid rgba(89, 60, 144, 0.35);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.02);
    }

    .price-pillar-hat {
      margin: 0;
      padding: 12px 16px 14px;
      text-align: center;
      color: #fff;
      -webkit-text-fill-color: #fff;
      background: var(--grad);
    }

    .price-pillar-hat-title {
      display: block;
      font-size: 0.92rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .price-pillar-hat-sub {
      display: block;
      margin-top: 6px;
      font-size: 0.68rem;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: 0;
      text-transform: none;
      color: rgba(255, 255, 255, 0.92);
      -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
    }

    .price-pillar-hat-sub--warn {
      font-weight: 800;
      letter-spacing: 0.02em;
      color: #fde68a;
      -webkit-text-fill-color: #fde68a;
    }

    .price-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 0;
      padding: 16px;
      flex: 1;
    }

    .price-pillar .party-block {
      flex: 1;
      border: none;
      background: transparent;
      border-radius: 0;
      padding: 16px 20px 20px;
    }

    .price-block {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      text-align: center;
    }

    .price-block h4 {
      font-size: 0.9rem;
      color: var(--purple2);
      margin-bottom: 16px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.95rem;
    }

    .price-row:last-child { border-bottom: none; }
    .price-row .time { color: #d8d8d8; }
    .price-row .val,
    .party-row .val {
      font-weight: 700;
      color: #fff;
      font-variant-numeric: tabular-nums;
      text-align: right;
    }
    .price-per {
      font-weight: 700;
      color: #4ade80;
      letter-spacing: -0.01em;
    }
    .price-card.is-calc .price-total,
    .price-card:not(.is-calc) .price-per,
    .price-card.is-calc .price-note--surcharge {
      display: none;
    }

    .party-block {
      background: rgba(89, 60, 144, 0.08);
      border: 1px solid rgba(89, 60, 144, 0.25);
      border-radius: 14px;
      padding: 24px;
      margin-bottom: 0;
    }

    .party-block h3,
    .party-block h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 4px;
      text-align: center;
      color: var(--purple2);
    }

    .party-pack {
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.88rem;
      margin: 0 0 14px;
    }

    .party-group + .party-group {
      margin-top: 18px;
    }

    .party-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(89, 60, 144, 0.15);
      font-size: 0.95rem;
    }

    .party-row:last-child { border-bottom: none; }
    .party-row .label { color: #d8d8d8; }
    .party-row .val { font-weight: 700; color: #fff; }

    .party-mega-title {
      font-size: 1.1rem;
      font-weight: 700;
      text-align: center;
      color: var(--purple2);
      margin: 0 0 4px;
    }

    .price-card .btn { width: 100%; }

    /* ===== Halls ===== */
    .halls { padding: 100px 0; }

    .halls-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .halls-grid--single {
      grid-template-columns: 1fr;
      max-width: none;
      width: 100%;
      margin: 0;
    }
    .halls-grid--single .hall-visual {
      height: 420px;
    }
    @media (min-width: 900px) {
      .halls-grid--single .hall-card {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
        align-items: stretch;
      }
      .halls-grid--single .hall-visual {
        height: auto;
        min-height: 460px;
      }
      .halls-grid--single .hall-visual::after {
        background: linear-gradient(90deg, transparent 40%, #0a0a0a 100%);
      }
      .halls-grid--single .hall-body {
        justify-content: center;
      }
    }

    .hall-card {
      background: #0a0a0a;
      border: 1px solid rgba(89, 60, 144, 0.22);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all var(--ease);
    }

    .hall-card:hover {
      transform: translateY(-6px);
      border-color: rgba(89, 60, 144, 0.45);
      box-shadow: 0 16px 48px rgba(94, 33, 119, 0.28);
      background: #0d0d0d;
    }

    .hall-visual {
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    .hall-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hall-card:hover .hall-visual img { transform: scale(1.05); }

    .hall-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 45%, #0a0a0a 100%);
      pointer-events: none;
    }

    .hall-body {
      padding: 18px 22px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .hall-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 4px;
    }

    .hall-name {
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0;
      color: #fff;
      line-height: 1.25;
      min-width: 0;
      flex: 1 1 auto;
    }

    .hall-price {
      flex: 0 0 auto;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--purple2);
      white-space: nowrap;
      text-align: right;
    }

    .hall-meta-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      margin: 0 0 10px;
    }

    .hall-meta-row .hall-cap {
      flex: 0 0 auto;
      margin: 0;
      text-align: left;
    }

    .hall-meta-row .hall-addr {
      flex: 0 0 auto;
      margin: 0;
      text-align: right;
      margin-left: auto;
    }

    .hall-addr {
      color: #c8c8c8;
      font-size: 0.85rem;
      margin: 0 0 10px;
      text-align: right;
    }

    .hall-cap {
      margin: 0;
      font-size: 0.85rem;
      color: var(--purple2);
      font-weight: 600;
      text-align: left;
    }

    .hall-meta {
      display: flex;
      gap: 14px;
      margin-bottom: 10px;
    }

    .hall-meta span {
      font-size: 0.85rem;
      color: var(--purple2);
      font-weight: 600;
    }

    .hall-desc {
      color: #e0e0e0;
      font-size: 0.9rem;
      margin-bottom: 16px;
      flex: 1;
      line-height: 1.5;
    }

    .hall-body .btn { align-self: flex-start; }

    /* ===== Gallery / Photo Slider ===== */
    .gallery {
      padding: 100px 0;
      background: var(--bg2);
    }
    .gallery:has(.gallery-hero) {
      padding: 0 0 64px;
    }

    .photo-slider {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .photo-slider--wide {
      max-width: none;
      width: 100%;
    }

    .photo-slider-viewport {
      overflow: hidden;
      border-radius: 16px;
      border: 1px solid var(--border);
      height: 60vh;
      min-height: 400px;
      position: relative;
      background: #0d0d1a;
    }

    .photo-slider-track {
      position: absolute;
      inset: 0;
    }

    .photo-slider-slide {
      position: absolute;
      inset: 0;
      height: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
      pointer-events: none;
    }

    .photo-slider-slide.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
    }

    .photo-slider-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .gallery-hero {
      position: relative;
      width: 100%;
    }
    .gallery-hero .photo-slider--wide {
      position: relative;
    }
    .gallery-hero .photo-slider-viewport {
      height: min(85vh, 760px);
      min-height: 480px;
      border-radius: 0;
    }
    .gallery-hero .photo-slider-slide img {
      object-fit: cover;
      object-position: center 18%;
    }
    .halls-hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: min(85vh, 760px);
      min-height: 480px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 48px;
      background: linear-gradient(180deg, rgba(10, 6, 20, 0.62) 0%, rgba(10, 6, 20, 0.12) 42%, rgba(10, 6, 20, 0.28) 100%);
      pointer-events: none;
      z-index: 4;
    }
    .halls-title-box {
      background: rgba(12, 8, 24, 0.78);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(89, 60, 144, 0.28);
      border-radius: 14px;
      padding: 18px 32px;
      text-align: center;
      max-width: min(640px, 92%);
    }
    .halls-title-box h2 {
      color: #593C90;
      font-size: clamp(24px, 4vw, 32px);
      font-weight: 800;
      margin-bottom: 8px;
    }
    .halls-title-box p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      margin: 0;
    }
    @media (max-width: 768px) {
      .gallery-hero .photo-slider-viewport {
        height: min(70vh, 520px);
        min-height: 360px;
      }
      .gallery-hero .halls-hero-overlay {
        height: min(70vh, 520px);
        min-height: 360px;
        padding-top: 28px;
      }
      .halls-title-box { padding: 14px 20px; }
      .halls-title-box h2 { font-size: 20px; }
      .hours-text { font-size: 18px; }
      .package-price { font-size: 20px; }
      .halls-grid--single .hall-visual { height: 240px; }
    }

    .photo-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(10, 10, 10, 0.75);
      border: 1px solid var(--border);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 6;
      transition: all var(--ease);
    }

    .photo-slider-btn:hover {
      background: var(--purple-dark);
      border-color: var(--purple2);
    }

    .photo-slider-prev { left: 16px; z-index: 6; }
    .photo-slider-next { right: 16px; z-index: 6; }

    .photo-slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .photo-slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all var(--ease);
    }

    .photo-slider-dot.active,
    .photo-slider-dot:hover {
      background: var(--purple2);
      transform: scale(1.2);
    }

    /* ===== Guests / Корпоративы ===== */
    .guests {
      position: relative;
      overflow: hidden;
      padding: 100px 0;
      background: #050505;
    }

    .guests-bg {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0.34;
      filter: brightness(0.48) saturate(1.15);
      z-index: 0;
    }

    .guests::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.72) 100%);
      z-index: 0;
      pointer-events: none;
    }

    .guests .container {
      position: relative;
      z-index: 1;
    }

    .guests .section-title {
      max-width: 18em;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.25;
    }

    .guests .section-lead {
      text-align: center;
      font-size: clamp(1.05rem, 2.2vw, 1.28rem);
      font-weight: 700;
      line-height: 1.4;
      color: #fff;
      max-width: 820px;
      margin: 0 auto 16px;
    }

    .guests .section-sub {
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
      color: #ececec;
    }

    .guests-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 32px 48px;
    }

    .guests-item {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: #fff;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      min-height: 0;
      border: 3px solid rgba(255, 255, 255, 0.92);
      box-shadow:
        0 0 0 4px rgba(89, 60, 144, 0.3),
        0 0 28px rgba(89, 60, 144, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.45);
      animation: guestGlow 3.2s ease-in-out infinite;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .guests-item:nth-child(2) { animation-delay: 0.4s; }
    .guests-item:nth-child(3) { animation-delay: 0.8s; }
    .guests-item:nth-child(4) { animation-delay: 1.2s; }

    .guests-item:hover {
      transform: translateY(-8px) scale(1.08);
      animation-play-state: paused;
    }

    .guests-item img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      border-radius: 50%;
    }

    @keyframes guestGlow {
      0%, 100% {
        box-shadow:
          0 0 0 4px rgba(89, 60, 144, 0.25),
          0 0 22px rgba(89, 60, 144, 0.38),
          0 10px 28px rgba(0, 0, 0, 0.4);
      }
      50% {
        box-shadow:
          0 0 0 6px rgba(89, 60, 144, 0.45),
          0 0 40px rgba(89, 60, 144, 0.7),
          0 14px 32px rgba(0, 0, 0, 0.45);
      }
    }

    /* ===== Contacts ===== */
    .contacts { padding: 60px 0 100px; }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      gap: 20px;
      max-width: 960px;
      margin: 0 auto 48px;
    }

    .contact-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      transition: all var(--ease);
    }

    .contact-card:hover {
      border-color: var(--purple-dark);
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(94, 33, 119, 0.15);
    }

    .contact-icon {
      width: 52px; height: 52px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: rgba(89, 60, 144, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple2);
      font-size: 1.3rem;
    }

    .contact-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
      color: #fff;
      font-weight: 700;
    }

    .contact-card p,
    .contact-card a {
      color: #e8e8e8;
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .contact-card a:hover { color: var(--purple2); }

    /* ===== Footer ===== */
    .footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 40px 0;
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 1.05rem;
    }

    .footer-info {
      color: var(--muted);
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .footer-info a { color: var(--muted); }
    .footer-info a:hover { color: var(--purple2); }

    .footer-copy {
      color: #b8b8b8;
      font-size: 0.8rem;
      margin-top: 8px;
    }

    .footer-legal {
      color: #c8c8c8;
      font-size: 0.85rem;
      line-height: 1.6;
      max-width: 700px;
    }

    /* ===== Maps ===== */
    .maps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 0;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto;
    }

    .map-switcher {
      max-width: 960px;
      margin: 0 auto;
    }

    .map-switcher-nav {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .map-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
    }

    .map-card--switch {
      max-width: 960px;
      margin: 0 auto;
    }

    .map-panel {
      display: none;
    }

    .map-panel.active {
      display: block;
    }

    .map-title {
      padding: 16px 20px;
      font-size: 1rem;
      font-weight: 600;
      border-bottom: 1px solid var(--border);
      color: #fff;
    }

    .map-frame {
      width: 100%;
      height: 360px;
      border: none;
      display: block;
      background: rgba(0, 0, 0, 0.25);
    }

    .map-link {
      display: block;
      padding: 12px 20px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--accent);
      text-align: center;
      border-top: 1px solid var(--border);
      transition: color 0.2s, background 0.2s;
    }

    .map-link:hover {
      color: #fff;
      background: rgba(89, 60, 144, 0.12);
    }

    /* ===== Shared Tolyatti blocks ===== */
    .footer-franchise {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      padding: 28px 32px;
      margin-bottom: 36px;
      border-radius: 16px;
      border: 1px solid var(--border);
      background:
        radial-gradient(ellipse 80% 120% at 100% 50%, rgba(89, 60, 144, 0.18) 0%, transparent 55%),
        rgba(255, 255, 255, 0.03);
    }

    .footer-franchise-title {
      font-size: clamp(1.15rem, 2.2vw, 1.45rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .footer-franchise-sub {
      color: #d0d0d0;
      font-size: 0.95rem;
      line-height: 1.5;
      max-width: 520px;
    }

    .footer-franchise-btn {
      flex-shrink: 0;
      white-space: nowrap;
    }

    .footer-docs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 28px;
      margin-bottom: 32px;
    }

    .footer-docs a {
      color: #e8e8e8;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color var(--ease);
    }

    .footer-docs a:hover { color: var(--purple2); }

    /* ===== Tolyatti single-hall extras ===== */
    .formats-intro {
      padding: 80px 0 40px;
      background: var(--bg);
      text-align: center;
    }

    .formats-intro .section-sub {
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
      line-height: 1.7;
    }

    .formats-strip {
      padding: 80px 0;
      background: transparent;
    }

    .formats-strip .section-sub {
      color: rgba(255, 255, 255, 0.78);
      max-width: 720px;
      margin: 0 auto 36px;
    }

    .formats-dots,
    .tabs-dots {
      display: none;
    }

    .welcome-block {
      display: none;
    }

    .halls-app-section,
    .packages-section {
      display: none;
    }

    .formats-head-mobile-only {
      display: none;
    }

    .formats-head-desktop-only {
      display: block;
    }

    @media (max-width: 768px) {
      .formats-section.advantages,
      #formats.advantages {
        background: linear-gradient(180deg, #060306 0%, #1a0b2e 100%);
      }

      .formats-head-mobile-only {
        display: block;
      }

      .formats-head-desktop-only {
        display: none;
      }

      #formats .formats-head-mobile-only.section-title {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: #593C90;
        color: #593C90;
        font-size: 28px;
      }

      #formats .section-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        text-align: center;
        margin-bottom: 32px;
      }

      .advantages-grid.formats-container .advantage-card.format-card,
      .formats-slider .format-card {
        background: linear-gradient(135deg, rgba(89, 60, 144, 0.15) 0%, rgba(6, 3, 6, 0.95) 100%);
        border: 2px solid rgba(89, 60, 144, 0.4);
        border-radius: 16px;
        padding: 24px 20px;
        box-shadow: 0 8px 24px rgba(89, 60, 144, 0.2);
        text-align: left;
        min-height: 280px;
      }

      .formats-slider .format-card .advantage-title {
        color: #593C90;
        font-size: 20px;
      }

      .formats-slider .format-card .advantage-text,
      .formats-slider .format-card .advantage-text p {
        color: rgba(255, 255, 255, 0.9);
      }

      .formats-slider .format-card .format-points li {
        color: rgba(255, 255, 255, 0.85);
      }

      .formats-slider .format-card .advantage-icon {
        font-size: 48px;
        width: auto;
        height: auto;
        margin: 0 0 16px;
        justify-content: flex-start;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .formats-slider,
      .advantages-grid.formats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        overflow: visible;
        padding: 0 8px 24px;
      }

      .formats-slider .format-card,
      .advantages-grid.formats-container .format-card {
        flex: none;
      }
    }

    .formats-flip-wrap {
      position: relative;
    }

    .formats-flip-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .flip-card {
      perspective: 1000px;
      height: 400px;
      cursor: pointer;
      background: transparent;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      transition: transform 0.6s ease;
    }

    .flip-card:hover .flip-card-inner,
    .flip-card:focus-within .flip-card-inner,
    .flip-card.is-flipped .flip-card-inner,
    .flip-card.flipped .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid transparent;
    }

    .flip-card:hover .flip-card-front,
    .flip-card:hover .flip-card-back,
    .flip-card.is-flipped .flip-card-front,
    .flip-card.is-flipped .flip-card-back,
    .flip-card.flipped .flip-card-front,
    .flip-card.flipped .flip-card-back {
      border-color: var(--purple2);
    }

    .flip-card-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .flip-card-back {
      background: linear-gradient(135deg, #1a0b2e 0%, #0d0d1a 100%);
      color: #fff;
      padding: 24px 20px;
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .flip-card-back h3 {
      font-size: 24px;
      font-weight: 800;
      color: #593C90;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .flip-card-back p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .flip-card-back ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .flip-card-back li {
      font-size: 0.82rem;
      line-height: 1.45;
      color: #e8e8e8;
      padding-left: 14px;
      position: relative;
    }

    .flip-card-back li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--purple2);
    }

    .prices--single {
      background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(89, 60, 144, 0.12) 0%, transparent 60%),
        var(--bg2);
    }

    .features {
      padding: 100px 0;
      background: var(--bg2);
    }

    .features .section-title {
      color: #fff;
      background: none;
      -webkit-text-fill-color: #fff;
    }

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

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 20px;
      text-align: center;
      transition: border-color var(--ease);
    }

    .feature-card:hover {
      border-color: var(--purple2);
      transform: none;
      box-shadow: none;
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 16px;
    }

    .feature-icon img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      /* tint dark icons to brand purple */
      filter: brightness(0) saturate(100%) invert(27%) sepia(74%) saturate(1800%) hue-rotate(258deg) brightness(0.95);
    }

    .feature-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--purple2);
      margin-bottom: 12px;
    }

    .feature-text {
      font-size: 0.88rem;
      color: #e0e0e0;
      line-height: 1.6;
    }

    .photo-grid {
      padding: 60px 0 100px;
      background: var(--bg2);
    }

    .photo-grid-inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 960px;
      margin: 0 auto;
    }

    .photo-grid-item {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/3;
      transition: transform var(--ease), box-shadow var(--ease);
    }

    .photo-grid-item:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 32px rgba(94, 33, 119, 0.25);
    }

    .photo-grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .social {
      padding: 80px 0;
      background: var(--bg);
      text-align: center;
    }

    .social-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      margin-bottom: 16px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .social-sub {
      color: #d8d8d8;
      max-width: 560px;
      margin: 0 auto 32px;
      line-height: 1.6;
    }

    .social-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-social {
      min-width: 200px;
    }

    .btn-vk {
      background: linear-gradient(135deg, #4a76a8, #5181b8);
      color: #fff;
      box-shadow: 0 4px 24px rgba(74, 118, 168, 0.35);
    }

    .btn-vk:hover { color: #fff; filter: brightness(1.1); }

    .btn-max {
      background: linear-gradient(135deg, #5E2177, #593C90);
      color: #fff;
      box-shadow: 0 4px 24px rgba(94, 33, 119, 0.35);
    }

    .btn-max:hover { color: #fff; filter: brightness(1.1); }

    .price-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }

    .formats-intro .section-title {
      color: #fff;
      background: none;
      -webkit-text-fill-color: #fff;
    }

    .maps-grid--single {
      grid-template-columns: 1fr;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-brand img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }


    /* ===== Classic layout 2026-08-16 ===== */
    body {
      background: linear-gradient(180deg, #1a0b2e 0%, #0d0d1a 55%, #0d0d1a 100%);
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 48% 36% at 12% 18%, rgba(89, 60, 144, 0.28) 0%, transparent 58%),
        radial-gradient(ellipse 42% 32% at 88% 72%, rgba(94, 33, 119, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 30% 24% at 50% 100%, rgba(89, 60, 144, 0.14) 0%, transparent 50%);
    }
    .hero, section, footer {
      position: relative;
      z-index: 1;
    }

    .advantages {
      background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    }
    .advantage-card {
      box-shadow: 0 4px 20px rgba(89, 60, 144, 0.08);
      border: 1px solid rgba(89, 60, 144, 0.12);
    }
    .advantage-card:hover {
      box-shadow: 0 12px 36px rgba(89, 60, 144, 0.18);
    }

    .formats-carousel {
      position: relative;
      padding: 0 28px;
    }
    .formats-arrow {
      display: none;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.72);
      color: #5E2177;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      opacity: 0.55;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 18px rgba(94, 33, 119, 0.18);
      transition: opacity 0.2s ease;
    }
    .formats-arrow:hover { opacity: 1; }
    .formats-arrow--prev { left: -8px; }
    .formats-arrow--next { right: -8px; }
    .format-card--cover,
    .cover-card {
      display: none;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      background: linear-gradient(135deg, #593C90 0%, #5E2177 50%, #5E2177 100%) !important;
      color: #fff;
      border-radius: 16px;
      min-height: 420px;
      padding: 32px 24px;
      border: 2px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 28px rgba(94, 33, 119, 0.28);
    }
    .cover-icon {
      font-size: 80px;
      line-height: 1;
      width: auto;
      height: auto;
      margin: 40px 0 0;
    }
    .cover-title {
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
      background: none !important;
      -webkit-background-clip: unset !important;
      background-clip: unset !important;
      animation: none !important;
      font-size: 28px;
      font-weight: 800;
      line-height: 1.2;
      margin: 24px 0 0;
      text-align: center;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    }
    .cover-subtitle {
      color: rgba(255, 255, 255, 0.95) !important;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.5;
      padding: 0 8px;
      margin: 16px 0 0;
      text-align: center;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    @media (min-width: 1025px) {
      .formats-arrow { display: flex; }
      .formats-head { display: block; }
      .format-card--cover { display: none !important; }
      .advantages-grid.formats-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }
      .advantages-grid.formats-container::-webkit-scrollbar { display: none; }
      .advantages-grid.formats-container > .format-card:not(.format-card--cover) {
        flex: 0 0 calc((100% - 40px) / 3);
        min-height: 420px;
        scroll-snap-align: start;
      }
      .formats-dots { display: none !important; }
    }

    .prices::after {
      background: rgba(0, 0, 0, 0.75);
      transition: background 0.5s ease;
    }
    .prices::before {
      transition: background-image 0.5s ease, opacity 0.5s ease;
    }

    .price-min-warn {
      text-align: center;
      color: #FFDE59;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin: 4px 0 12px;
    }
    .price-min-warn--top {
      font-size: clamp(0.85rem, 1.8vw, 1rem);
      margin-bottom: 14px;
    }
    .price-card-addr {
      text-align: center;
      color: rgba(255, 255, 255, 0.62);
      margin-bottom: 0;
      font-size: 0.9rem;
    }
    .price-card-cap {
      color: #593C90;
      font-weight: 700;
      margin-bottom: 0;
      font-size: 0.9rem;
    }
    .price-hall-info {
      text-align: center;
      margin-bottom: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }
    .price-hall-head {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 12px 16px;
      width: 100%;
      max-width: 820px;
    }
    .price-hall-head .price-card-cap {
      justify-self: start;
      text-align: left;
      white-space: nowrap;
    }
    .price-hall-head .price-card-name {
      justify-self: center;
      text-align: center;
      margin: 0;
      color: #fff;
      background: none;
      -webkit-text-fill-color: #fff;
      font-size: clamp(1.25rem, 2.4vw, 1.6rem);
      white-space: nowrap;
    }
    .price-hall-head .price-card-addr {
      justify-self: end;
      text-align: right;
      white-space: nowrap;
    }
    .price-hall-info .price-note {
      margin-bottom: 0;
      font-size: 0.82rem;
      line-height: 1.35;
      color: rgba(255, 255, 255, 0.72);
    }
    .price-hall-info .price-note + .price-note {
      margin-bottom: 0;
    }
    @media (max-width: 640px) {
      .price-hall-head {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: center;
      }
      .price-hall-head .price-card-cap,
      .price-hall-head .price-card-name,
      .price-hall-head .price-card-addr {
        justify-self: center;
        text-align: center;
        white-space: normal;
      }
    }

    .tabs-nav {
      gap: 4px;
      margin-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      padding-bottom: 0;
    }
    .tab-btn {
      background: transparent;
      border: 0;
      border-radius: 0;
      color: rgba(255, 255, 255, 0.5);
      box-shadow: none;
      padding: 8px 14px;
    }
    .tab-btn::before { display: none; }
    .tab-btn:hover {
      color: #fff;
      border-color: transparent;
    }
    .tab-btn.active {
      color: #fff;
      border-color: transparent;
      box-shadow: none;
      border-bottom: 2px solid #593C90;
    }

    .price-classic-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin: 0 auto 4px;
      max-width: 820px;
    }
    #panel-neonloft .price-classic-grid {
      grid-template-columns: repeat(3, 1fr);
      max-width: none;
    }
    .price-glass {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 14px;
      padding: 16px 18px;
      color: #fff;
    }
    .price-glass h4 {
      color: #593C90;
      font-weight: 800;
      font-size: 17px;
      margin-bottom: 10px;
      text-align: center;
    }
    .price-glass-row {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: baseline;
      margin-bottom: 6px;
      color: #fff;
      font-size: 14px;
    }
    .price-glass-row:last-child { margin-bottom: 0; }
    .price-glass-row strong {
      font-weight: 800;
      white-space: nowrap;
      font-size: 20px;
    }
    .price-glass-pack {
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 12px;
      font-weight: 600;
    }
    .price-glass-mega {
      color: #593C90;
      font-weight: 800;
      text-transform: uppercase;
      text-align: center;
      margin: 18px 0 6px;
      letter-spacing: 0.04em;
    }
    .price-glass-note {
      color: rgba(255, 255, 255, 0.55);
      font-size: 11px;
      line-height: 1.35;
      margin-top: 8px;
    }
    .price-glass-copy {
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.95rem;
      line-height: 1.55;
    }

    .calc-block {
      padding: 100px 0;
      background: transparent;
    }
    .calc-sub {
      color: rgba(255, 255, 255, 0.78);
      max-width: 720px;
      margin: 0 auto 32px;
      text-align: center;
    }
    .calc-halls {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }
    .calc-hall-chip {
      min-height: 44px;
      padding: 10px 20px;
      border-radius: 999px;
      border: 1px solid rgba(89, 60, 144, 0.35);
      background: rgba(0, 0, 0, 0.35);
      color: rgba(255, 255, 255, 0.7);
      font-family: inherit;
      font-weight: 700;
      cursor: pointer;
    }
    .calc-hall-chip.is-active,
    .calc-hall-chip:hover {
      color: #fff;
      background: linear-gradient(135deg, #593C90 0%, #5E2177 100%);
      border-color: transparent;
    }
    .calc-block .price-calc,
    .calc-block .price-perks,
    .calc-block .price-compare {
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(89, 60, 144, 0.2);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 20px;
    }

    .feature-card,
    .hall-card,
    .price-compare-col {
      border-color: rgba(89, 60, 144, 0.2);
    }
    .feature-card:hover,
    .hall-card:hover,
    .advantage-card:hover {
      box-shadow: 0 8px 28px rgba(89, 60, 144, 0.22);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #5E2177, #593C90);
      box-shadow: 0 4px 16px rgba(89, 60, 144, 0.4);
    }

    .prices--single::before {
      background-image: url('../images/gallery/photo-1.jpg');
    }

    @media (max-width: 1024px) {
      .price-classic-grid { grid-template-columns: repeat(2, 1fr); }
      .format-card--cover { display: none !important; }
      .formats-head { display: block; }
    }
    @media (max-width: 768px) {
      .price-classic-grid { grid-template-columns: 1fr; }
      .formats-head { display: block; }
      .format-card--cover { display: none !important; }
      .formats-arrow { display: none !important; }
      .formats-carousel { padding: 0; }
      .calc-block { padding: 48px 0; }
      .survey-grid { grid-template-columns: 1fr; }
      .guests-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 8px 8px 24px;
        scrollbar-width: none;
      }
      .guests-grid::-webkit-scrollbar { display: none; }
      .guests-item {
        flex: 0 0 calc(50% - 8px);
        width: auto;
        height: auto;
        aspect-ratio: 1 / 1;
        scroll-snap-align: center;
      }
      .formats-flip-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 8px 24px;
      }
    }

    .price-glass-mega-price {
      text-align: center;
      font-size: 28px;
      font-weight: 800;
      color: #fff;
      margin: 8px 0 4px;
    }
    .price-save {
      color: #4ADE80;
      font-weight: 700;
      font-size: 14px;
    }
    .price-save--center { text-align: center; }
    .price-glass-copy { font-size: 15px; }

    .format-card--custom {
      background: linear-gradient(160deg, #3b0764 0%, #5E2177 55%, #5E2177 100%) !important;
      color: #fff !important;
      border: 0;
    }
    .format-card--custom .advantage-title,
    .format-card--custom .advantage-text,
    .format-card--custom .advantage-text p {
      color: #fff !important;
      -webkit-text-fill-color: #fff !important;
      background: none !important;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .survey {
      padding: 80px 0;
    }
    .survey-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .survey-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(89, 60, 144, 0.2);
      border-radius: 16px;
      padding: 28px 22px;
    }
    .survey-card--hit {
      border: 2px solid #593C90;
      box-shadow: 0 8px 32px rgba(89, 60, 144, 0.28);
    }
    .survey-icon { font-size: 42px; text-align: center; margin-bottom: 12px; }
    .survey-card h3 {
      color: #593C90;
      font-size: 1.15rem;
      text-align: center;
      margin-bottom: 14px;
    }
    .survey-card blockquote {
      font-style: italic;
      color: rgba(255, 255, 255, 0.88);
      font-size: 14px;
      line-height: 1.55;
      border-left: 3px solid #593C90;
      padding-left: 14px;
      margin: 0 0 16px;
    }
    .survey-plus { display: flex; flex-direction: column; gap: 8px; }
    .survey-plus li {
      color: #fff;
      font-size: 14px;
      padding-left: 18px;
      position: relative;
    }
    .survey-plus li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #4ADE80;
      font-weight: 800;
    }
    .calc-after {
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      font-size: 17px;
      font-weight: 600;
      margin: 8px 0 20px;
      line-height: 1.5;
    }

    @media (min-width: 769px) {
      .formats-flip-grid {
        display: grid !important;
        overflow: visible !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 0;
      }
      .formats-flip-grid .flip-card {
        width: 100% !important;
        flex: none !important;
        aspect-ratio: 1 / 1;
        height: auto !important;
        min-height: 0;
      }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .formats-flip-grid { grid-template-columns: repeat(2, 1fr) !important; }
      .survey-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .price-glass-row strong { font-size: 22px; }
      .price-glass-mega-price { font-size: 26px; }
      .tabs-dots { display: flex; }
      .special-offers-grid { grid-template-columns: 1fr; }
      .special-offers-divider { flex-wrap: wrap; justify-content: center; }
      .divider-text {
        white-space: normal;
        text-align: center;
        font-size: 12px;
        letter-spacing: 1px;
      }
      .special-offer-card {
        animation: none;
        box-shadow: 0 0 15px rgba(89, 60, 144, 0.2);
      }
      .benefit-badge {
        font-size: 10px;
        padding: 6px 12px;
        top: -8px;
        right: 16px;
      }
      .special-price { font-size: 28px; }
      .special-title { font-size: 20px; }
    }

    .special-offers-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 16px auto 12px;
      padding: 0;
      max-width: 820px;
      width: 100%;
    }
    .divider-line {
      flex: 1;
      max-width: 72px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, #593C90 50%, transparent 100%);
    }
    .divider-text {
      color: #593C90;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      white-space: nowrap;
      text-shadow: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .divider-icon {
      font-size: 14px;
      animation: none;
    }
    @keyframes offer-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    .special-offers-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin: 0 auto 10px;
      padding-top: 0;
      max-width: 820px;
      overflow: visible;
      align-items: stretch;
    }

    .special-offer-card {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 100%;
      background: rgba(18, 12, 32, 0.92);
      border: 1px solid rgba(89, 60, 144, 0.35);
      border-radius: 14px;
      padding: 14px 16px 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      transform: none;
      animation: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .special-offer-card:hover {
      transform: none;
      border-color: rgba(89, 60, 144, 0.7);
      box-shadow: 0 12px 28px rgba(88, 28, 135, 0.25);
    }
    .package-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .hours-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      background: none;
      padding: 0;
      border: 0;
      border-radius: 0;
      flex: 0 0 auto;
    }
    .hours-icon { font-size: 15px; line-height: 1; opacity: 0.85; }
    .hours-text {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      letter-spacing: 0.06em;
      text-shadow: 0 0 10px rgba(89, 60, 144, 0.35);
      white-space: nowrap;
    }
    .package-header .special-title {
      margin: 0;
      text-align: right;
      flex: 1 1 auto;
      max-width: 58%;
      line-height: 1.2;
    }
    .package-header-right {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      flex: 1 1 auto;
      max-width: 70%;
      min-width: 0;
      margin-left: auto;
    }
    .package-header-right .special-title {
      max-width: none;
      flex: 0 1 auto;
      text-align: right;
    }
    .package-header-right .benefit-badge {
      margin-left: 0;
    }
    .package-deal-badge {
      display: flex;
      justify-content: flex-end;
      margin: 0 0 8px;
      flex-shrink: 0;
    }
    .package-price-row--badge-in {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
      padding-top: 12px;
      padding-bottom: 12px;
    }
    .package-price-row--badge-in > .benefit-badge {
      align-self: flex-end;
      margin: 0;
    }
    .package-row-main {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 8px 10px;
      width: 100%;
    }
    .package-row-main .package-price {
      flex: 1;
    }
    .package-day-outside {
      display: none;
    }
    .package-day-outside .day-label {
      min-width: 0;
      text-align: center;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
    }
    .package-header .benefit-badge,
    .package-header-right .benefit-badge,
    .package-deal-badge .benefit-badge,
    .package-price-row--mega > .benefit-badge {
      position: static;
      top: auto;
      right: auto;
      flex-shrink: 0;
      animation: none;
    }
    .package-price-row--mega > .benefit-badge {
      margin: 0;
    }
    .package-prices {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 8px;
      margin-top: 0;
      margin-bottom: 0;
      min-height: 0;
      flex: 1 1 auto;
    }
    .package-price-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px 10px;
      padding: 10px 14px;
      min-height: 48px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      box-sizing: border-box;
      width: 100%;
    }
    .package-price-row--featured {
      background: rgba(89, 60, 144, 0.18);
      border: 1px solid rgba(89, 60, 144, 0.35);
    }
    .package-price-row--featured:not(.package-price-row--mega) {
      flex-wrap: nowrap;
      gap: 8px;
    }
    .package-price-row--featured:not(.package-price-row--mega) .package-price {
      flex: 0 0 auto;
    }
    .package-deal-line {
      display: inline-flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 8px;
      min-width: 0;
      flex: 1 1 auto;
    }
    .package-deal-line .package-price {
      flex: 0 0 auto;
    }
    .package-price-row--mega {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      flex: 0 1 auto;
      align-self: stretch;
      width: 100%;
      min-height: 0;
      padding: 0;
      box-sizing: border-box;
      text-align: center;
      gap: 10px;
      background: transparent !important;
      border: none !important;
      border-radius: 0;
      box-shadow: none;
    }
    .package-price-row--mega.package-price-row--badge-in {
      align-items: stretch;
      padding: 0;
    }
    .package-price-row--mega.package-price-row--badge-in > .benefit-badge {
      align-self: flex-end;
      margin: 0 0 2px;
    }
    .package-price-row--mega > .day-label {
      align-self: center;
    }
    /* обычная строка цены справа — без серого контейнера */
    .package-price-row--mega .package-mega-line {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 8px 10px;
      width: 100%;
      margin: 0;
      padding: 4px 0;
      min-height: 0;
      background: transparent;
      border: none;
      border-radius: 0;
      box-sizing: border-box;
    }
    .package-price-row--mega > .benefit-badge {
      margin: 0;
    }
    .package-price-row--mega .day-label {
      min-width: 0;
      width: auto;
      text-align: center;
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      margin: 0;
    }
    .package-mega-line {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 8px 10px;
      margin: 0;
    }
    .package-mega-line .package-price {
      flex: 0 0 auto;
      font-size: 22px;
    }
    .day-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      min-width: 72px;
    }
    .package-price {
      color: #fff;
      font-size: 20px;
      font-weight: 800;
      flex: 1;
    }

    .benefit-badge {
      position: static;
      background: linear-gradient(135deg, #FFDE59, #FFEF9B);
      color: #060306;
      padding: 4px 10px;
      border-radius: 6px;
      border: 1px solid rgba(255, 222, 89, 0.5);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: none;
      animation: none;
      z-index: 2;
    }
    .badge-icon { display: none; }

    .special-offer-card .special-title,
    h4.special-title {
      color: #FFEF9B;
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-align: right;
      text-shadow: none;
      animation: none;
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .special-offer-card .price-glass-note {
      margin-top: 10px;
      padding-top: 0;
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .special-price {
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      text-shadow: 0 0 20px rgba(89, 60, 144, 0.5);
      margin: 12px 0;
      text-align: center;
      display: block;
      line-height: 1.1;
    }
    .special-deal {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px 10px;
      margin: 12px 0 8px;
      text-align: center;
    }
    .special-deal .special-price { margin: 0; }
    .benefit-amount {
      display: inline-block;
      background: rgba(34, 197, 94, 0.14);
      color: #86EFAC;
      border: 1px solid rgba(74, 222, 128, 0.45);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: none;
      animation: none;
      white-space: nowrap;
      text-transform: lowercase;
    }
    .benefit-save {
      display: inline-block;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }
    .benefit-amount--center {
      display: block;
      width: fit-content;
      margin: 0 auto 12px;
    }
    @keyframes pulse-green {
      0%, 100% { box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3); }
      50% { box-shadow: 0 4px 20px rgba(74, 222, 128, 0.6); }
    }

    @media (prefers-reduced-motion: reduce) {
      .divider-icon,
      .special-offer-card,
      .special-offer-card::before,
      .special-offer-card::after,
      .benefit-badge,
      .special-title,
      .benefit-amount {
        animation: none !important;
      }
    }
    @media (max-width: 768px) {
      .special-offers-grid { grid-template-columns: 1fr; }
      .special-offers-divider { flex-wrap: wrap; justify-content: center; }
      .divider-text {
        white-space: normal;
        text-align: center;
        font-size: 12px;
        letter-spacing: 1px;
      }
      .special-offer-card {
        animation: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
        transform: none;
        padding: 18px 16px 16px;
      }
      .special-offer-card:hover { transform: none; }
      .benefit-badge {
        font-size: 10px;
        padding: 5px 10px;
      }
      .package-prices { min-height: 0; }
      .special-price { font-size: 28px; }
      .special-offer-card .special-title,
      h4.special-title { font-size: 15px; }
      .special-offers-divider { max-width: none; }
      .special-offers-grid { max-width: none; }
      .price-cta-full { max-width: none; }
    }

    .articles-block {
      padding: 64px 0;
      background: linear-gradient(180deg, #1a0b2e 0%, #0d0d1a 100%);
    }
    .articles-block h2 {
      text-align: center;
      color: #593C90;
      font-size: clamp(24px, 5vw, 32px);
      margin-bottom: 16px;
    }
    .articles-block .subtitle {
      text-align: center;
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      margin: 0 auto 48px;
      max-width: 720px;
    }
    .articles-flip-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .articles-flip-grid .flip-card {
      background-color: transparent;
      width: 100%;
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
      aspect-ratio: 1 / 1;
      perspective: 1000px;
      cursor: pointer;
      flex: none;
    }
    .articles-flip-grid .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s;
      transform-style: preserve-3d;
    }
    .articles-flip-grid .flip-card:hover .flip-card-inner,
    .articles-flip-grid .flip-card:focus-within .flip-card-inner,
    .articles-flip-grid .flip-card.is-flipped .flip-card-inner,
    .articles-flip-grid .flip-card.flipped .flip-card-inner {
      transform: rotateY(180deg);
    }
    .articles-flip-grid .flip-card-front,
    .articles-flip-grid .flip-card-back {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid rgba(89, 60, 144, 0.3);
      transform: none;
    }
    .articles-flip-grid .flip-card-back {
      transform: rotateY(180deg);
    }
    .articles-flip-grid .flip-card-front {
      background: #1a0b2e;
      display: flex;
      flex-direction: column;
    }
    .articles-flip-grid .flip-card-front::before {
      content: 'Загрузка...';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
      z-index: 1;
      pointer-events: none;
    }
    .articles-flip-grid .flip-card-front:has(.card-image.loaded)::before {
      display: none;
      content: none;
    }
    .articles-flip-grid .card-image {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .articles-flip-grid .card-overlay,
    .articles-flip-grid .neon-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(6, 3, 6, 0.3) 0%, rgba(6, 3, 6, 0.9) 100%);
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 24px;
      z-index: 3;
    }
    .articles-flip-grid .card-title,
    .articles-flip-grid .neon-overlay h3 {
      color: #FFFFFF;
      font-size: 20px;
      font-weight: 700;
      margin: 0;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.3;
      text-align: left;
      text-transform: none;
      letter-spacing: 0;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }
    .articles-flip-grid .flip-card-back {
      background: linear-gradient(135deg, #593C90 0%, #5E2177 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 32px 24px;
      opacity: 1;
      pointer-events: auto;
    }
    .articles-flip-grid .card-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
    }
    .articles-flip-grid .card-title-back,
    .articles-flip-grid .flip-card-back h3 {
      color: #FFDE59;
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 16px;
      font-family: 'Montserrat', sans-serif;
      line-height: 1.3;
    }
    .articles-flip-grid .card-description,
    .articles-flip-grid .flip-card-back p {
      color: #FFFFFF;
      font-size: 14px;
      line-height: 1.5;
      margin: 0 0 24px;
      flex: 1;
    }
    .articles-flip-grid .read-more-btn {
      display: inline-block;
      background: #FFDE59;
      color: #060306;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      min-height: 44px;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s;
    }
    .articles-flip-grid .read-more-btn:hover {
      background: #FFFFFF;
      color: #060306;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(255, 222, 89, 0.4);
    }
    .articles-carousel .articles-dots {
      display: none;
    }
    @media (max-width: 768px) {
      .articles-carousel { padding: 0; }
      .articles-flip-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        overflow: visible;
        margin: 0;
        padding: 0;
      }
      .articles-flip-grid .flip-card {
        aspect-ratio: 1 / 1;
        width: 100%;
      }
      .articles-flip-grid .card-title,
      .articles-flip-grid .neon-overlay h3 {
        font-size: 16px;
      }
      .articles-flip-grid .card-title-back,
      .articles-flip-grid .flip-card-back h3 {
        font-size: 16px;
      }
    }
    .neon-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.35);
      padding: 16px;
    }
    .neon-overlay h3 {
      color: #fff;
      font-size: clamp(22px, 3vw, 28px);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      text-align: center;
      text-shadow:
        0 0 10px rgba(89, 60, 144, 1),
        0 0 20px rgba(89, 60, 144, 0.8),
        0 0 30px rgba(89, 60, 144, 0.6);
      margin: 0;
    }
    .read-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      background: linear-gradient(135deg, #593C90, #5E2177);
      color: #fff;
      padding: 12px 24px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .read-more-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(89, 60, 144, 0.4);
      color: #fff;
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .article-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(89, 60, 144, 0.2);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(89, 60, 144, 0.2);
    }
    .article-card .card-image {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #1a0b2e;
    }
    .article-card .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .article-card .card-content {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .article-card .card-content h3 {
      color: #593C90;
      font-size: 20px;
      margin-bottom: 12px;
      line-height: 1.35;
    }
    .article-card .card-content p {
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }
    .article-card .read-more {
      color: #593C90;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
    }
    .article-card .read-more:hover { color: #FFDE59; }

    .format-card .advantage-title {
      font-size: 17px;
      line-height: 1.35;
    }
    .format-card .advantage-text {
      font-size: 14px;
      line-height: 1.55;
    }

    body.article-page {
      background: #0d0d1a;
      padding-top: var(--header-h, 72px);
    }
    .article-main { padding: 40px 0 80px; }
    .article-wrap { max-width: 780px; }
    .article-back { margin-bottom: 16px; }
    .article-back a { color: #593C90; }
    .article-wrap h1 {
      color: #fff;
      font-size: clamp(26px, 5vw, 36px);
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .article-lead { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
    .article-hero {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      border-radius: 16px;
      margin-bottom: 28px;
    }
    .article-body { color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.7; }
    .article-body h2 {
      color: #593C90;
      font-size: 22px;
      margin: 28px 0 12px;
    }
    .article-body p, .article-body li { margin-bottom: 12px; }
    .article-body ol, .article-body ul { padding-left: 22px; margin-bottom: 16px; }
    .article-cta-wrap { margin: 32px 0; }
    .article-related {
      border-top: 1px solid rgba(89, 60, 144, 0.25);
      padding-top: 24px;
    }
    .article-related h2 { color: #593C90; font-size: 20px; margin-bottom: 12px; }
    .article-related a { color: #FFDE59; }

    @media (max-width: 768px) {
      .articles-grid { grid-template-columns: 1fr; }
      .article-card { margin-bottom: 8px; }
      .article-card:hover { transform: none; }
      .format-card,
      .advantage-card.format-card { min-height: auto; }
      .format-card .advantage-title { font-size: 16px; }
      .fx-particles, .fx-cursor { display: none !important; }
      .special-offer-card,
      .article-card,
      .advantage-card { animation: none !important; }
      .btn, .btn-primary, .btn-outline, .tab-btn, .read-more { min-height: 48px; }
    }


    /* ===== Modal equipment / benefits accordion ===== */
    .accordion {
      margin: 12px 0;
      border: 1px solid rgba(89, 60, 144, 0.3);
      border-radius: 12px;
      overflow: hidden;
    }
    .accordion-header {
      width: 100%;
      background: rgba(89, 60, 144, 0.15);
      border: none;
      padding: 14px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      color: #FFDE59;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.35;
      text-align: left;
      transition: background 0.3s;
    }
    .accordion-header:hover {
      background: rgba(89, 60, 144, 0.25);
      color: #FFDE59;
    }
    .accordion-header > span:first-child {
      flex: 1;
      min-width: 0;
      padding-right: 4px;
      white-space: normal;
      overflow-wrap: break-word;
    }
    .arrow {
      color: #FFDE59;
      font-size: 12px;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .accordion-header.active .arrow {
      transform: rotate(0deg);
    }
    .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: rgba(0, 0, 0, 0.2);
      padding: 0 16px;
    }
    .accordion-body.open {
      max-height: 2000px;
      padding: 12px 16px;
    }
    .accordion-body .modal-spec-table,
    .accordion-body .modal-price-block {
      margin-top: 0;
    }
    .equipment-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .equipment-list li {
      padding: 8px 0;
      padding-left: 8px;
      position: relative;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid rgba(89, 60, 144, 0.1);
    }
    .equipment-list li:last-child {
      border-bottom: none;
    }
    .benefits-text {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }
    .benefits-text p {
      margin: 12px 0;
    }
    .benefits-text p:first-child { margin-top: 0; }
    .benefits-text p:last-child { margin-bottom: 0; }
    .benefits-text ul {
      list-style: none;
      padding: 0;
      margin: 12px 0;
    }
    .benefits-text ul li {
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
    }
    .benefits-text ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #4ADE80;
      font-weight: bold;
    }
    @media (max-width: 768px) {
      .accordion-header {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 48px;
        color: #FFDE59;
        line-height: 1.35;
      }
      .accordion-body {
        padding: 0 16px;
      }
      .accordion-body.open {
        padding: 12px 16px;
      }
      .equipment-list li,
      .benefits-text li {
        font-size: 13px;
        padding: 6px 0;
      }
    }

    .hall-description-text {
      background: rgba(89, 60, 144, 0.08);
      border-left: 3px solid #593C90;
      padding: 16px 20px;
      margin: 20px 0;
      border-radius: 0 12px 12px 0;
    }

    .hall-description-text p {
      margin: 12px 0;
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.9);
    }

    .hall-description-text p:first-child {
      margin-top: 0;
    }

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

    @media (max-width: 768px) {
      .equipment-list li {
        font-size: 14px;
        padding: 8px 0;
      }

      .equipment-title {
        font-size: 16px;
      }

      .hall-description-text {
        padding: 12px 16px;
      }

      .hall-description-text p {
        font-size: 14px;
      }
    }

    /* Brandbook utilities */
    .gradient-purple { background: linear-gradient(135deg, #593C90 0%, #5E2177 100%); }
    .gradient-yellow { background: linear-gradient(135deg, #FFDE59 0%, #FFEF9B 100%); }
    .gradient-dark { background: linear-gradient(180deg, #060306 0%, #1a0b2e 100%); }
    .neon-glow {
      text-shadow:
        0 0 10px rgba(89, 60, 144, 0.8),
        0 0 20px rgba(89, 60, 144, 0.6),
        0 0 30px rgba(89, 60, 144, 0.4);
    }
    .neon-border {
      box-shadow:
        0 0 10px rgba(89, 60, 144, 0.5),
        inset 0 0 10px rgba(89, 60, 144, 0.2);
    }
    .card-glow:hover {
      box-shadow:
        0 8px 32px rgba(89, 60, 144, 0.3),
        0 0 20px rgba(255, 222, 89, 0.2);
    }
    .body-text { color: rgba(255, 255, 255, 0.9); font-family: 'Montserrat', sans-serif; font-weight: 400; }
    .accent-text { color: #FFDE59; font-family: 'Caveat', cursive; font-weight: 700; }
    .savings { background: #FFDE59; color: #060306; }
    .profit-badge { background: linear-gradient(135deg, #FFDE59, #FFEF9B); color: #060306; }
    .card { background: rgba(89, 60, 144, 0.05); border: 1px solid rgba(89, 60, 144, 0.2); }

.btn-speak,
.btn-speak-hall {
  display: none;
}

@media (max-width: 768px) {
  .btn-speak,
  .btn-speak-hall {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }
}

html.app-mode .btn-speak,
html.app-mode .btn-speak-hall {
  display: flex;
}

.btn-speak {
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
  background: linear-gradient(135deg, #593C90, #5E2177);
  color: #FFFFFF;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 16px rgba(89, 60, 144, 0.4);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.hero-content .btn-speak {
  margin: 16px 0 0;
}

.welcome-block .btn-speak {
  width: 100%;
  margin: 16px auto 0;
}

.btn-speak:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(89, 60, 144, 0.6);
}

.btn-speak.speaking {
  background: linear-gradient(135deg, #FFDE59, #FFEF9B);
  color: #060306;
}

.speak-icon {
  font-size: 20px;
  line-height: 1;
}

.btn-speak-hall {
  align-items: center;
  gap: 8px;
  background: rgba(89, 60, 144, 0.2);
  border: 1px solid rgba(89, 60, 144, 0.4);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.btn-speak-hall:hover {
  background: rgba(89, 60, 144, 0.3);
}

.btn-speak-hall.speaking {
  background: rgba(255, 222, 89, 0.3);
  border-color: #FFDE59;
  color: #FFDE59;
}

html.no-speech .btn-speak,
html.no-speech .btn-speak-hall {
  display: none !important;
}


