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

        :root {
            /* Брендовые цвета из логотипа */
            --primary-navy: #1D51A2;
            --primary-blue: #0097DA;
            --accent-light: #8FD8F8;
            --accent-bright: #43B0E4;
            --navy: #1D51A2;
            --cream: #F0F7FB;
            --text-dark: #1A2332;
            --text-light: #64748B;
            --text-secondary: #64748B;
            --bg-light: #F8FAFB;

            /* Алиасы для совместимости */
            --coral: #0097DA;
            --coral-dark: #1D51A2;
            --orange: #FF9B71;
            --mint: #8FD8F8;
            --mint-dark: #43B0E4;
            --accent: #0097DA;
        }

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

        body[data-lang="en"] .lang-si {
            display: none;
        }

        body[data-lang="en"] .lang-en {
            display: inline;
        }

        body[data-lang="si"] .lang-en {
            display: none;
        }

        body[data-lang="si"] .lang-si {
            display: inline;
        }

        body:not([data-lang]) .lang-en {
            display: none;
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: #2C3E50;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: #2C3E50;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 24px 40px;
            display: flex;
            align-items: flex-start;
            gap: 32px;
            position: relative;
        }

        .logo-area {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .header-right {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1;
            padding-top: 8px;
        }

        .logo-image {
            height: 120px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 151, 218, 0.15));
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .logo-image {
                height: 100px;
            }
        }

        .logo-image:hover {
            filter: drop-shadow(0 4px 12px rgba(0, 151, 218, 0.3));
            transform: translateY(-2px);
        }

        /* Logo washing animation */
        .logo-area {
            position: relative;
        }

        .logo-image {
            animation: logoWashCycle 10s linear infinite;
            transform-origin: center center;
        }

        /* Washing cycle animation */
        @keyframes logoWashCycle {
            0% {
                transform: rotate(0deg) scale(1);
                filter: drop-shadow(0 2px 4px rgba(0, 151, 218, 0.15)) blur(0px);
            }

            2% {
                transform: rotate(0deg) scale(1.02);
                filter: drop-shadow(0 3px 6px rgba(0, 151, 218, 0.2)) blur(0px);
            }

            5% {
                transform: rotate(72deg) scale(1.05);
                filter: drop-shadow(0 4px 8px rgba(0, 151, 218, 0.3)) blur(1.5px);
            }

            15% {
                transform: rotate(360deg) scale(1.05);
                filter: drop-shadow(0 4px 8px rgba(0, 151, 218, 0.3)) blur(2.5px);
            }

            25% {
                transform: rotate(720deg) scale(1.05);
                filter: drop-shadow(0 4px 8px rgba(0, 151, 218, 0.3)) blur(2.5px);
            }

            28% {
                transform: rotate(720deg) scale(1.02);
                filter: drop-shadow(0 3px 6px rgba(0, 151, 218, 0.25)) blur(1px);
            }

            30% {
                transform: rotate(720deg) scale(1);
                filter: drop-shadow(0 2px 4px rgba(0, 151, 218, 0.15)) blur(0px);
            }

            50%,
            100% {
                transform: rotate(720deg) scale(1);
                filter: drop-shadow(0 2px 4px rgba(0, 151, 218, 0.15)) blur(0px);
            }
        }

        /* Sparkle effects */
        .logo-area::before,
        .logo-area::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            z-index: 10;
        }

        .logo-area::before {
            top: 20%;
            left: 15%;
            animation: sparkle1 10s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(0, 151, 218, 0.6);
        }

        .logo-area::after {
            top: 60%;
            right: 20%;
            animation: sparkle2 10s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(0, 151, 218, 0.6);
        }

        @keyframes sparkle1 {

            0%,
            30%,
            100% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }

            32% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }

            34% {
                opacity: 0;
                transform: scale(0.5) rotate(90deg);
            }
        }

        @keyframes sparkle2 {

            0%,
            34%,
            100% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }

            36% {
                opacity: 1;
                transform: scale(1.2) rotate(0deg);
            }

            38% {
                opacity: 0;
                transform: scale(0.5) rotate(-90deg);
            }
        }

        /* Additional sparkles using pseudo-elements on logo-text-wrapper */
        .logo-text-wrapper {
            position: relative;
        }

        .logo-text-wrapper::before,
        .logo-text-wrapper::after {
            content: '✨';
            position: absolute;
            font-size: 24px;
            opacity: 0;
            pointer-events: none;
            z-index: 10;
        }

        .logo-text-wrapper::before {
            top: -10px;
            left: 20%;
            animation: sparkleText1 10s ease-in-out infinite;
        }

        .logo-text-wrapper::after {
            bottom: -10px;
            right: 30%;
            animation: sparkleText2 10s ease-in-out infinite;
        }

        @keyframes sparkleText1 {

            0%,
            38%,
            100% {
                opacity: 0;
                transform: translateY(0) scale(0) rotate(0deg);
            }

            40% {
                opacity: 1;
                transform: translateY(-5px) scale(1) rotate(0deg);
            }

            42% {
                opacity: 0;
                transform: translateY(-10px) scale(0.5) rotate(180deg);
            }
        }

        @keyframes sparkleText2 {

            0%,
            42%,
            100% {
                opacity: 0;
                transform: translateY(0) scale(0) rotate(0deg);
            }

            44% {
                opacity: 1;
                transform: translateY(5px) scale(1.2) rotate(0deg);
            }

            46% {
                opacity: 0;
                transform: translateY(10px) scale(0.5) rotate(-180deg);
            }
        }

        .logo-text-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .logo-text {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 37px;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: white;
            line-height: 1.2;
            text-align: left;
            margin-left: -20px;
        }

        .logo-text-light {
            font-weight: 400;
        }

        .logo-badge {
            background: linear-gradient(135deg, var(--coral) 0%, var(--accent-bright) 100%);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 12px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            width: fit-content;
        }

        nav {
            display: flex;
            gap: 12px;
            align-items: center;
            justify-content: flex-start;
        }

        nav a {
            font-size: 17px;
            font-weight: 500;
            color: white;
            text-decoration: none;
            padding: 12px 22px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            background: var(--cream);
            color: var(--coral);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 16px;
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
        }

        .lang-btn {
            background: transparent;
            border: none;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 20px;
            font-weight: 500;
            color: #8B9DAF;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .lang-btn img {
            width: 25px;
            height: 25px;
            border-radius: 3px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .lang-btn:hover {
            color: var(--navy);
            background: var(--cream);
        }

        .lang-btn:hover img {
            opacity: 1;
        }

        .lang-btn.active {
            color: var(--coral);
            font-weight: 700;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 159, 28, 0.15));
            box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
        }

        .lang-btn.active img {
            opacity: 1;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 10000;
            position: absolute;
            right: 24px;
            bottom: 24px;
        }

        /* Menu Tab (язычок) - только для мобильной */
        .menu-tab {
            display: none;
            position: absolute;
            bottom: 0;
            right: 44px;
            transform: translateY(100%);
            width: 80px;
            height: 28px;
            background: linear-gradient(to bottom, #2C3E50, #D3D3D3);
            clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
            border-radius: 0 0 10px 10px;
            cursor: pointer;
            z-index: 10000;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            touch-action: pan-y;
        }

        .menu-tab:active {
            transform: translateY(calc(100% + 2px));
        }

        .menu-tab-lines {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 28px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            transition: gap 0.3s ease;
        }

        .menu-tab.active .menu-tab-lines {
            gap: 0;
        }

        .menu-tab-line {
            width: 100%;
            height: 2.5px;
            background: #0097DA;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .menu-tab.active .menu-tab-line:first-child {
            transform: rotate(45deg);
        }

        .menu-tab.active .menu-tab-line:last-child {
            transform: rotate(-45deg);
        }

        .hamburger {
            width: 28px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: var(--primary-navy);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translateY(9px);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translateY(-9px);
        }

        .mobile-menu {
            position: fixed;
            top: 110px;
            left: 0;
            right: 0;
            z-index: 9999;
            pointer-events: none;
            visibility: hidden;
            overflow: hidden;
            height: 0;
        }

        .mobile-menu.active {
            pointer-events: auto;
            visibility: visible;
            height: auto;
        }

        .mobile-menu-content {
            background: #ffffff;
            padding: 16px 24px 20px;
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            border-radius: 0 0 20px 20px;
        }

        .mobile-menu.active .mobile-menu-content {
            transform: translateY(0);
        }

        .mobile-menu nav {
            display: flex !important;
            flex-direction: column;
            gap: 0;
            margin-bottom: 16px;
            padding-top: 8px;
        }

        .mobile-menu nav a {
            padding: 14px 0;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        /* TOKEN PURCHASE GRID */
        .token-purchase-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            align-items: start;
            width: 100%;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .token-purchase-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
        }

        @media (min-width: 1024px) {
            .token-purchase-grid {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }

        /* Ensure payment cards don't overflow on mobile */
        .payment-method {
            box-sizing: border-box;
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }

        /* Reduce horizontal padding in Token Purchase tab */
        #tokens {
            padding-left: 10px;
            padding-right: 10px;
        }

        @media (min-width: 768px) {
            #tokens {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* HERO SECTION */
        .hero {
            min-height: auto;
            padding-top: 140px;
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px 40px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 20px;
            border-radius: 24px;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-eyebrow-dot {
            width: 8px;
            height: 8px;
            background: #22C55E;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }



        .hero-eyebrow-text {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 72px;
            font-weight: 900;
            line-height: 1.1;
            color: var(--navy);
            letter-spacing: -2px;
            margin-bottom: 12px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-title-highlight {
            color: var(--coral);
            position: relative;
            display: inline-block;
        }

        .hero-title-highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            right: 0;
            height: 12px;
            background: var(--mint);
            opacity: 0.4;
            z-index: -1;
            border-radius: 4px;
        }

        .hero-subtitle {
            font-size: 22px;
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 16px;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-benefits {
            position: relative;
            margin-bottom: 16px;
            min-height: 120px;
            animation: fadeInUp 1s ease-out 0.5s both;
            width: 100%;
            max-width: 900px;
        }

        .benefit-item {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 12px;
            padding: 10px 16px;
            background: linear-gradient(135deg, rgba(0, 151, 218, 0.03) 0%, rgba(255, 107, 90, 0.02) 100%);
            border-left: 4px solid var(--coral);
            border-radius: 8px;
            opacity: 0;
            animation: carouselFade 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 1;
        }

        /* Каждый вопрос появляется с задержкой */
        .benefit-item:nth-child(1) {
            animation-delay: 0s;
        }

        .benefit-item:nth-child(2) {
            animation-delay: 4s;
        }

        .benefit-item:nth-child(3) {
            animation-delay: 8s;
        }

        .benefit-item:nth-child(4) {
            animation-delay: 12s;
        }

        .benefit-item:nth-child(5) {
            animation-delay: 16s;
        }

        .benefit-icon {
            font-size: 32px;
            line-height: 1;
            flex-shrink: 0;
            margin-top: 4px;
            filter: grayscale(0.2);
        }

        .benefit-text {
            font-size: 18px;
            line-height: 1.4;
            color: var(--text-light);
            flex: 1;
            width: 100%;
        }

        .benefit-text strong {
            color: var(--navy);
            font-weight: 700;
            font-size: 20px;
            line-height: 1.3;
            display: block;
            margin-bottom: 3px;
            letter-spacing: -0.3px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 20px;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 18px 36px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--coral);
            color: white;
            box-shadow: 0 4px 16px rgba(255, 107, 90, 0.3);
        }

        .btn-primary:hover {
            background: var(--coral-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 107, 90, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-secondary:hover {
            background: var(--navy);
            color: white;
            transform: translateY(-2px);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .stat-value {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 42px;
            font-weight: 800;
            color: var(--coral);
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-footnote {
            margin-top: 8px;
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
            opacity: 0.8;
        }

        .hero-footnote sup {
            font-size: 10px;
            margin-right: 2px;
        }

        /* HERO VISUAL */
        .hero-visual {
            position: relative;
            animation: fadeIn 1.2s ease-out 0.4s both;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .hero-card {
            background: linear-gradient(135deg, rgba(0, 151, 218, 0.85) 0%, rgba(29, 81, 162, 0.75) 100%),
                url('../galjevica.png') center/cover no-repeat;
            border-radius: 24px;
            padding: 40px 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            position: relative;
            transform: rotate(2deg);
            transition: transform 0.4s ease;
            color: white;
        }

        .hero-card:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .hero-card-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin-bottom: 24px;
            box-shadow: 0 8px 24px rgba(255, 107, 90, 0.3);
        }

        .hero-card-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .hero-card-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            color: white;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.55);
            border: 2px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 12px;
            font-weight: 700;
            color: white;
            transition: all 0.4s ease;
        }

        /* Animation for steps */
        .feature-item {
            opacity: 0.5;
            transition: all 0.6s ease;
        }

        .feature-item.animate-active {
            opacity: 1;
            animation: featureHighlight 1.5s ease-in-out;
        }

        .feature-item.animate-active .feature-check {
            background: rgba(255, 255, 255, 0.95);
            color: var(--navy);
            border-color: white;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
                0 0 40px rgba(0, 151, 218, 0.4);
            animation: pulse 1s ease-in-out infinite;
        }

        .feature-item.animate-complete {
            opacity: 1;
        }

        .feature-item.animate-complete .feature-check {
            background: rgba(16, 185, 129, 0.3);
            border-color: #10B981;
        }

        .feature-item:last-child.animate-active {
            animation: featureFinal 1.5s ease-in-out;
        }

        .feature-item:last-child.animate-active .feature-check {
            animation: pulseFinal 1s ease-in-out infinite;
            background: linear-gradient(135deg, #10B981, #0097DA);
            color: white;
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.8),
                0 0 60px rgba(0, 151, 218, 0.6);
        }

        .price-tag {
            transition: all 0.6s ease;
        }

        .price-tag.animate-bounce {
            animation: celebrationBounce 0.8s ease-in-out;
        }

        @keyframes featureHighlight {

            0%,
            100% {
                transform: translateX(0);
            }

            20%,
            50% {
                transform: translateX(8px);
                filter: brightness(1.3);
            }
        }

        @keyframes featureFinal {

            0%,
            100% {
                transform: scale(1);
            }

            25%,
            75% {
                transform: scale(1.08);
            }

            50% {
                transform: scale(1.12);
                filter: brightness(1.4);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        @keyframes pulseFinal {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
            }

            25% {
                transform: scale(1.2) rotate(-5deg);
            }

            75% {
                transform: scale(1.2) rotate(5deg);
            }
        }

        @keyframes celebrationBounce {

            0%,
            100% {
                transform: rotate(8deg) scale(1);
            }

            25% {
                transform: rotate(8deg) scale(1.15) translateY(-10px);
            }

            50% {
                transform: rotate(8deg) scale(1.08);
            }

            75% {
                transform: rotate(8deg) scale(1.12) translateY(-5px);
            }
        }

        .price-tag {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--navy);
            color: white;
            padding: 16px 24px;
            border-radius: 16px;
            transform: rotate(8deg);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .price-tag-line {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.3;
        }

        .price-tag-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 4px;
        }

        .price-tag-value {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 900;
        }

        /* BACKGROUND DECORATIONS */
        .hero-bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            z-index: 0;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--coral);
            top: 10%;
            right: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--mint);
            bottom: 10%;
            left: -50px;
            animation: float 6s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--sage);
            top: 40%;
            left: 20%;
            animation: float 10s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-30px);
            }
        }

        /* Carousel animation for benefit items */
        @keyframes carouselFade {
            0% {
                opacity: 0;
                transform: translateY(20px);
                z-index: 1;
            }

            2% {
                opacity: 0;
                transform: translateY(20px);
                z-index: 10;
            }

            4% {
                opacity: 1;
                transform: translateY(0);
                z-index: 10;
            }

            18% {
                opacity: 1;
                transform: translateY(0);
                z-index: 10;
            }

            20% {
                opacity: 0;
                transform: translateY(-20px);
                z-index: 10;
            }

            22% {
                opacity: 0;
                transform: translateY(-20px);
                z-index: 1;
            }

            100% {
                opacity: 0;
                transform: translateY(-20px);
                z-index: 1;
            }
        }

        /* Benefit icon animations - 3 варианта */

        /* Вариант 1: Легкое покачивание */
        @keyframes gentleSwing {

            0%,
            100% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(-8deg);
            }

            75% {
                transform: rotate(8deg);
            }
        }

        /* Вариант 2: Мягкий пульс */
        @keyframes subtlePulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        /* Вариант 3: Легкое плавание */
        @keyframes gentleFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        /* Section background shapes */
        .section-bg-shape {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        /* Size variations with different opacity */
        .size-xs {
            width: 300px;
            height: 300px;
            opacity: 0.08;
        }

        .size-sm {
            width: 400px;
            height: 400px;
            opacity: 0.07;
        }

        .size-md {
            width: 500px;
            height: 500px;
            opacity: 0.06;
        }

        .size-lg {
            width: 600px;
            height: 600px;
            opacity: 0.05;
        }

        .size-xl {
            width: 700px;
            height: 700px;
            opacity: 0.04;
        }

        .size-xxl {
            width: 800px;
            height: 800px;
            opacity: 0.03;
        }

        /* Services Section - Blue & Coral theme */
        #services .shape-1 {
            background: var(--ocean);
            top: 5%;
            left: 3%;
            animation: float 14s ease-in-out infinite;
        }

        #services .shape-2 {
            background: var(--coral);
            top: 12%;
            right: 8%;
            animation: float 18s ease-in-out infinite 2s;
        }

        #services .shape-3 {
            background: var(--mint);
            top: 35%;
            left: 15%;
            animation: float 20s ease-in-out infinite 4s;
        }

        #services .shape-4 {
            background: var(--ocean);
            bottom: 25%;
            right: 12%;
            animation: float 16s ease-in-out infinite 6s;
        }

        #services .shape-5 {
            background: var(--coral);
            bottom: 8%;
            left: 20%;
            animation: float 22s ease-in-out infinite 3s;
        }

        #services .shape-6 {
            background: var(--sage);
            top: 45%;
            right: 25%;
            animation: float 15s ease-in-out infinite 7s;
        }

        #services .shape-7 {
            background: var(--mint);
            top: 60%;
            left: 35%;
            animation: float 19s ease-in-out infinite 5s;
        }

        #services .shape-8 {
            background: var(--ocean);
            bottom: 40%;
            right: 5%;
            animation: float 17s ease-in-out infinite 8s;
        }

        #services .shape-9 {
            background: var(--coral);
            top: 25%;
            left: 45%;
            animation: float 21s ease-in-out infinite 1s;
        }

        #services .shape-10 {
            background: var(--sage);
            bottom: 15%;
            right: 30%;
            animation: float 13s ease-in-out infinite 9s;
        }

        /* Locations Section - Mint & Ocean theme */
        #locations .shape-1 {
            background: var(--mint);
            top: 8%;
            left: 5%;
            animation: float 16s ease-in-out infinite;
        }

        #locations .shape-2 {
            background: var(--ocean);
            top: 18%;
            right: 10%;
            animation: float 19s ease-in-out infinite 3s;
        }

        #locations .shape-3 {
            background: var(--coral);
            top: 42%;
            left: 12%;
            animation: float 21s ease-in-out infinite 5s;
        }

        #locations .shape-4 {
            background: var(--mint);
            bottom: 30%;
            right: 15%;
            animation: float 17s ease-in-out infinite 7s;
        }

        #locations .shape-5 {
            background: var(--sage);
            bottom: 10%;
            left: 25%;
            animation: float 23s ease-in-out infinite 2s;
        }

        #locations .shape-6 {
            background: var(--ocean);
            top: 50%;
            right: 20%;
            animation: float 14s ease-in-out infinite 8s;
        }

        #locations .shape-7 {
            background: var(--mint);
            top: 70%;
            left: 40%;
            animation: float 20s ease-in-out infinite 4s;
        }

        #locations .shape-8 {
            background: var(--coral);
            bottom: 45%;
            right: 8%;
            animation: float 18s ease-in-out infinite 6s;
        }

        #locations .shape-9 {
            background: var(--sage);
            top: 28%;
            left: 50%;
            animation: float 22s ease-in-out infinite 1s;
        }

        #locations .shape-10 {
            background: var(--ocean);
            bottom: 20%;
            right: 35%;
            animation: float 15s ease-in-out infinite 10s;
        }

        /* Instructions Section - Sage & Mint theme */
        #instructions .shape-1 {
            background: var(--sage);
            top: 10%;
            left: 8%;
            animation: float 17s ease-in-out infinite;
        }

        #instructions .shape-2 {
            background: var(--mint);
            top: 15%;
            right: 12%;
            animation: float 20s ease-in-out infinite 4s;
        }

        #instructions .shape-3 {
            background: var(--ocean);
            top: 40%;
            left: 18%;
            animation: float 22s ease-in-out infinite 6s;
        }

        #instructions .shape-4 {
            background: var(--sage);
            bottom: 28%;
            right: 18%;
            animation: float 18s ease-in-out infinite 8s;
        }

        #instructions .shape-5 {
            background: var(--coral);
            bottom: 12%;
            left: 22%;
            animation: float 24s ease-in-out infinite 3s;
        }

        #instructions .shape-6 {
            background: var(--mint);
            top: 55%;
            right: 22%;
            animation: float 16s ease-in-out infinite 9s;
        }

        #instructions .shape-7 {
            background: var(--sage);
            top: 65%;
            left: 38%;
            animation: float 21s ease-in-out infinite 5s;
        }

        #instructions .shape-8 {
            background: var(--ocean);
            bottom: 42%;
            right: 6%;
            animation: float 19s ease-in-out infinite 7s;
        }

        #instructions .shape-9 {
            background: var(--mint);
            top: 32%;
            left: 48%;
            animation: float 23s ease-in-out infinite 2s;
        }

        #instructions .shape-10 {
            background: var(--coral);
            bottom: 18%;
            right: 32%;
            animation: float 14s ease-in-out infinite 11s;
        }

        /* Contact Section - Coral & Ocean theme */
        #contact .shape-1 {
            background: var(--coral);
            top: 12%;
            left: 6%;
            animation: float 18s ease-in-out infinite;
        }

        #contact .shape-2 {
            background: var(--ocean);
            top: 20%;
            right: 9%;
            animation: float 21s ease-in-out infinite 3s;
        }

        #contact .shape-3 {
            background: var(--mint);
            top: 38%;
            left: 16%;
            animation: float 23s ease-in-out infinite 5s;
        }

        #contact .shape-4 {
            background: var(--coral);
            bottom: 32%;
            right: 14%;
            animation: float 19s ease-in-out infinite 7s;
        }

        #contact .shape-5 {
            background: var(--sage);
            bottom: 14%;
            left: 28%;
            animation: float 25s ease-in-out infinite 2s;
        }

        #contact .shape-6 {
            background: var(--ocean);
            top: 52%;
            right: 24%;
            animation: float 15s ease-in-out infinite 9s;
        }

        #contact .shape-7 {
            background: var(--coral);
            top: 68%;
            left: 42%;
            animation: float 22s ease-in-out infinite 4s;
        }

        #contact .shape-8 {
            background: var(--mint);
            bottom: 48%;
            right: 7%;
            animation: float 20s ease-in-out infinite 6s;
        }

        #contact .shape-9 {
            background: var(--sage);
            top: 30%;
            left: 52%;
            animation: float 24s ease-in-out infinite 1s;
        }

        #contact .shape-10 {
            background: var(--ocean);
            bottom: 22%;
            right: 38%;
            animation: float 16s ease-in-out infinite 10s;
        }

        /* SECTION GENERAL */
        section {
            padding: 5px 0 60px 0;
            position: relative;
            overflow-x: clip;
            overflow-y: visible;
        }

        .section-header {
            max-width: 1400px;
            margin: 0 auto 80px;
            padding: 0 40px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        #services .section-header {
            margin-bottom: 20px;
        }

        .section-eyebrow {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--coral);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 900;
            color: var(--navy);
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Increase locations section header by 15% */
        #locations .section-title {
            font-size: 42px;
            margin-bottom: 15px;
            line-height: 1.25;
        }

        #locations .section-subtitle {
            font-size: 20px;
            line-height: 1.15;
        }

        /* SERVICES / PRICING */
        #services {
            background: var(--bg-light);
            padding-top: 5px;
        }

        .token-info-grid {
            max-width: 1400px;
            margin: 6px auto 30px;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .token-info-column {
            padding: 0;
        }

        .token-column-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .token-column-content {
            font-size: 22px;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .token-price-large {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--coral);
            margin: 6px 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .token-bonus-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 12px 16px;
            background: rgba(0, 151, 218, 0.08);
            border-radius: 12px;
        }

        .payment-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }

        .payment-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .token-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
        }

        .token-info-item:not(:last-child)::after {
            content: '|';
            position: absolute;
            right: -24px;
            font-size: 24px;
            color: rgba(0, 151, 218, 0.25);
            font-weight: 300;
        }

        .token-info-icon {
            font-size: 28px;
            flex-shrink: 0;
        }

        .token-info-text {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--navy);
            white-space: nowrap;
        }

        .token-info-text strong {
            font-weight: 700;
        }

        .token-bonus-badge {
            background: var(--coral);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            margin-left: 4px;
        }

        .payment-methods-note {
            text-align: center;
            font-size: 17px;
            color: var(--text-secondary);
            margin-top: 20px;
            padding: 14px 24px;
            background: rgba(0, 151, 218, 0.04);
            border-radius: 12px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .token-info-description {
                font-size: 18px;
                text-align: left;
            }

            .token-info-box {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .token-info-item {
                width: 100%;
            }

            .token-info-item:not(:last-child)::after {
                display: none;
            }

            .token-info-text {
                font-size: 18px;
            }

            .payment-methods-note {
                font-size: 13px;
                text-align: left;
                padding: 12px 16px;
            }
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 16px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--coral);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card.wash::before {
            background: var(--coral);
        }

        .service-card.dry::before {
            background: var(--orange);
        }

        .service-card.extra::before {
            background: #10B981;
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 8px;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            flex-shrink: 0;
        }

        .service-card.wash .service-icon {
            background: transparent;
        }

        .service-card.dry .service-icon {
            background: transparent;
        }

        .service-card.extra .service-icon {
            background: transparent;
        }

        .service-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--navy);
        }

        .service-description {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .service-features {
            margin-bottom: 10px;
        }

        .service-features-title {
            font-size: 22px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .service-features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }

        .service-feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-dark);
        }

        .service-feature-item::before {
            content: '✓';
            color: var(--mint-dark);
            font-weight: 700;
            font-size: 16px;
        }

        .temp-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }


        .temp-badge-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 12px 4px;
            background: #fff;
            border: 2px solid rgba(0, 151, 218, 0.2);
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .temp-badge-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .temp-badge-item.low {
            border-color: #4CC9F0;
            color: #4CC9F0;
        }

        .temp-badge-item.medium {
            border-color: #4361EE;
            color: #4361EE;
        }

        .temp-badge-item.high {
            border-color: #F72585;
            color: #F72585;
        }

        .temp-badge-item.low {
            background: linear-gradient(180deg, rgba(76, 201, 240, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .temp-badge-item.medium {
            background: linear-gradient(180deg, rgba(67, 97, 238, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .temp-badge-item.high {
            background: linear-gradient(180deg, rgba(247, 37, 133, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        }

        /* Упрощенные цвета для карточек */
        .temp-badge-item.wash-temp {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
            background: linear-gradient(180deg, rgba(0, 151, 218, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .temp-badge-item.dry-temp {
            border-color: var(--orange);
            color: var(--orange);
            background: linear-gradient(180deg, rgba(255, 155, 113, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
        }

        .temp-icon {
            width: 32px;
            height: 32px;
            margin-bottom: 4px;
            stroke-width: 2;
        }

        .temp-value {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-weight: 800;
            font-size: 20px;
            line-height: 1;
            margin-bottom: 2px;
            color: var(--navy);
        }

        .temp-desc {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.7;
            color: var(--text-secondary);
            line-height: 1.2;
        }

        .service-pricing {
            background: linear-gradient(135deg, rgba(0, 151, 218, 0.06) 0%, rgba(29, 81, 162, 0.04) 100%);
            border-radius: 16px;
            padding: 10px 12px;
            border: 2px solid rgba(0, 151, 218, 0.15);
            box-shadow: 0 2px 8px rgba(0, 151, 218, 0.08);
        }

        .price-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 6px;
            margin-bottom: 6px;
            border-bottom: 2px solid rgba(0, 151, 218, 0.2);
        }

        .price-header-label {
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--accent);
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
        }

        .price-row:not(:last-child) {
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .price-capacity {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .price-value {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--coral);
            text-align: left;
        }

        .price-value small {
            font-size: 18px;
            color: var(--text-light);
            font-weight: 500;
            margin-left: 4px;
        }

        .price-note {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            font-size: 18px;
            color: var(--text-light);
            font-style: italic;
        }

        .service-instruction-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
            padding: 12px;
            background: rgba(0, 151, 218, 0.05);
            border-radius: 12px;
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            width: 100%;
        }

        .service-instruction-link:hover {
            background: rgba(0, 151, 218, 0.1);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* LOCATIONS */
        #locations {
            background: white;
            padding-top: 5px;
        }

        .locations-grid {
            max-width: 450px;
            margin: 0 auto;
            padding: 0 40px 0px 40px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .location-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .location-card:hover {
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        .location-map {
            width: 100%;
            height: 300px;
            border: none;
            display: block;
        }

        .location-header {
            padding: 20px 20px 0 20px;
        }

        .location-content {
            padding: 0 20px 20px 20px;
        }

        .location-name {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 24px;
        }

        .location-info {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .location-info-item {
            display: flex;
            gap: 12px;
        }

        .location-info-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .location-info-content {
            flex: 1;
        }

        .location-info-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .location-info-value {
            font-size: 16px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .location-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 96px;
            height: 48px;
            background: var(--coral);
            color: white;
            padding: 0;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }

        .location-btn span {
            display: none;
        }

        .location-btn::after {
            content: '';
            width: 34px;
            height: 34px;
            background-image: url('../rout.png');
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            display: block;
            filter: brightness(0) invert(1);
        }

        .location-btn:hover {
            background: var(--coral-dark);
            transform: scale(1.05);
        }

        /* LOCATION AMENITIES */
        .location-amenities {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
        }

        .amenity-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px 8px;
            background: rgba(0, 151, 218, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(0, 151, 218, 0.15);
            transition: all 0.3s ease;
        }

        .amenity-item:hover {
            background: rgba(0, 151, 218, 0.1);
            border-color: rgba(0, 151, 218, 0.3);
            transform: translateY(-2px);
        }

        .amenity-icon {
            width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .amenity-icon img {
            width: 100%;
            height: auto;
            max-height: 55px;
            object-fit: contain;
        }

        .amenity-icon svg {
            width: 100%;
            height: auto;
            max-height: 50px;
        }

        .amenity-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-dark);
            text-align: center;
            line-height: 1.2;
        }

        /* NEW AMENITIES LAYOUT */
        .location-amenities-new {
            display: flex;
            justify-content: flex-start;
            align-items: flex-end;
            gap: 0px;
            padding: 16px 0 0 0;
            flex-wrap: wrap;
            position: relative;
            margin-left: auto;
            margin-right: auto;
            margin-top: -100px;
            width: fit-content;
        }

        /*.location-amenities-new::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #0097DA 20%, #0097DA 80%, transparent);
            opacity: 0.3;
        }*/

        .location-amenities-new::after {
            content: '';
            position: absolute;
            bottom: 23px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #0097DA 20%, #0097DA 80%, transparent);
            opacity: 0.3;
        }

        /* Galjevica (card 2): raise line above labels which sit at padding-bottom level */
        .location-card:nth-child(2) .location-amenities-new::after {
            bottom: 47px;
        }

        /* Align disinfection icon with machine groups (both have same padding-bottom) */
        .location-card:nth-child(2) .amenity-group:not([data-machine-id]) {
            padding-bottom: 25px;
        }

        .amenity-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            gap: 0px;
            margin: 0 0px 0 0;
            padding: 0;
            min-height: 240px;
        }

        .amenity-icon-animated {
            flex-shrink: 0;
            display: flex;
            align-items: flex-end;
            height: 189px;
        }

        .amenity-icon-large {
            transform: scale(1.2);
            transform-origin: bottom center;
            margin-bottom: -1px;
        }

        .amenity-label-new {
            font-size: 14px;
            font-weight: 700;
            color: #0097DA;
            text-align: center;
            margin-top: 4px;
            white-space: nowrap;
        }

        /* Individual icon sizing */
        .amenity-icon-animated svg {
            display: block;
        }

        .amenity-icon-large svg {
            width: 52px !important;
            height: 83px !important;
        }

        /* Scale first three 10kg washing machines by 10% */
        .amenity-icon-small-wash {
            transform: scale(1.1);
            transform-origin: bottom center;
        }

        /* Scale dryers uniformly to keep circles circular */
        .amenity-icon-dryer {
            transform: scale(1.05) translateY(-54px);
            transform-origin: bottom center;
            align-self: flex-end;
        }

        .amenity-section-heading {
            width: 100%;
            flex-basis: 100%;
            font-size: 12px;
            font-weight: 300;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
            color: #0097DA;
            text-align: left;
            margin-bottom: 12px;
            margin-top: 8px;
        }

        /* Background colors for location cards */
        .location-card:nth-child(1) {
            background-color: rgba(211, 211, 211, 0.2) !important;
            border-bottom: 1px solid #555 !important;
        }

        .location-card:nth-child(2) {
            background-color: rgba(173, 216, 230, 0.2) !important;
        }

        .location-card:nth-child(1) .location-header {
            background-color: rgba(211, 211, 211, 0.3) !important;
        }

        .location-card:nth-child(2) .location-header {
            background-color: rgba(173, 216, 230, 0.3) !important;
        }

        @keyframes drumRotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes tumbleTop {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Machine availability status on location card icons */
        .amenity-group[data-machine-id] {
            position: relative;
            padding-bottom: 25px;
        }

        .amenity-group[data-machine-id] .amenity-icon-animated {
            transition: filter 0.5s ease;
        }

        .amenity-group[data-machine-id].machine-free .amenity-icon-animated {
            filter: grayscale(80%) brightness(0.7) opacity(0.6);
        }

        .amenity-group[data-machine-id].machine-free .amenity-icon-animated g {
            animation-play-state: paused !important;
        }

        /* Status badge — absolute positioned so it never affects icon group width */
        .machine-timer-badge {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            display: block;
            font-size: 9px;
            font-weight: 700;
            color: white;
            border-radius: 50px;
            padding: 2px 7px;
            white-space: nowrap;
            text-align: center;
            letter-spacing: 0;
            text-transform: uppercase;
            transition: background 0.4s ease;
        }

        .amenity-group[data-machine-id].machine-free .machine-timer-badge {
            background: #22C55E;
        }

        .amenity-group[data-machine-id].machine-busy .machine-timer-badge {
            background: #EF4444;
        }

        @keyframes tumbleBottom {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        /* SCHEDULE VISUALIZATION */
        .schedule-visual {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .days-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4px;
            flex: 1;
        }

        .day-box {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 3px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: all 0.3s ease;
            min-width: 0;
        }

        .day-name {
            font-size: 9px;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .day-check {
            font-size: 20px;
            line-height: 1;
        }

        .day-box.open .day-check {
            color: #10B981;
        }

        .day-box.partial .day-check {
            color: #F59E0B;
        }

        .day-box.closed .day-check {
            color: #EF4444;
        }

        .schedule-hours {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        .digital-time {
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(0, 151, 218, 0.15));
            padding: 8px 12px;
            border-radius: 8px;
            border: 2px solid rgba(0, 151, 218, 0.4);
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }

        .time-display {
            font-family: 'Courier New', monospace;
            font-size: 16px;
            font-weight: 700;
            color: #0097DA;
            letter-spacing: 1px;
            text-shadow: 0 0 8px rgba(0, 151, 218, 0.3);
        }

        .time-separator {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 700;
        }

        /* INSTRUCTIONS */
        #instructions {
            background: var(--navy);
            color: white;
            padding-top: 5px;
        }

        #instructions .section-header {
            margin-bottom: 32px;
        }

        #instructions .section-eyebrow {
            color: var(--mint);
            margin-bottom: 12px;
        }

        #instructions .section-title {
            color: white;
            margin-bottom: 16px;
        }

        #instructions .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .instructions-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .instructions-steps {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .instruction-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .instruction-step:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(4px);
        }

        .instruction-number {
            width: 48px;
            height: 48px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .instruction-number.done {
            background: var(--mint);
            color: var(--navy);
        }

        .instruction-content {
            flex: 1;
        }

        .instruction-title {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary-navy);
        }

        .instruction-description {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .video-placeholder {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            aspect-ratio: 16 / 9;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 40px;
            text-align: center;
        }

        .video-placeholder-icon {
            font-size: 64px;
            opacity: 0.5;
        }

        .video-placeholder-text {
            font-size: 18px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        .video-placeholder-subtext {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            background: #000;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* TABS */
        .instruction-tabs {
            display: flex;
            gap: 4px;
            background: transparent;
            padding: 0 12px;
            padding-top: 8px;
            padding-bottom: 0;
            align-items: flex-end;
            position: relative;
            margin-bottom: 0;
        }

        .tab-button {
            position: relative;
            flex: 1;
            background: rgba(255, 255, 255, 0.6);
            border: none;
            color: var(--primary-navy);
            padding: 12px 24px;
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
            margin-bottom: 0;
            border-bottom: 1px solid transparent;
        }

        .tab-button img,
        .tab-button svg,
        .tab-button span {
            display: inline-block;
            vertical-align: middle;
            line-height: 1;
        }

        .tab-button::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: rgba(255, 255, 255, 0.55);
        }

        .tab-button:hover:not(.active) {
            color: rgba(29, 81, 162, 1);
            background: rgba(0, 151, 218, 0.2);
            transform: translateY(-1px);
        }

        .tab-button.active {
            color: var(--primary-navy);
            background: white;
            font-weight: 700;
            padding: 14px 28px;
            z-index: 9;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
            margin-bottom: -1px;
            border-bottom: none;
        }

        .tab-button.active::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: white;
            z-index: 11;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            background: white;
            padding: 40px;
            padding-top: 45px;
            border-radius: 0 0 12px 12px;
            box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1),
                -2px 4px 12px rgba(0, 0, 0, 0.1);
            border: none;
            margin-top: -8px;
            position: relative;
            z-index: 8;
        }

        /* TOKENS TAB: override .tab-content.active grid */
        #tokens.active {
            display: block;
        }

        /* CONTACT */
        #contact {
            background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
            padding: 40px 0 80px;
        }

        #contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(0, 151, 218, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(29, 81, 162, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        #contact .section-header {
            margin-bottom: 32px;
        }

        .contact-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .contact-methods {
            display: inline-flex;
            flex-direction: row;
            gap: 20px;
            margin-top: 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .contact-method {
            background: white;
            padding: 8px 12px;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 16px;
        }

        .contact-method:hover {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform: translateX(8px);
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-bright));
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 16px rgba(0, 151, 218, 0.25);
            transition: all 0.3s ease;
        }

        .contact-method:hover .contact-icon {
            transform: scale(1.05);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex: 1;
            text-align: left;
        }

        .contact-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            font-weight: 600;
        }

        .contact-value {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
        }

        .contact-value a {
            color: var(--navy);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-value a:hover {
            color: var(--primary-blue);
        }

        /* FOOTER */
        footer {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #0F3166 100%);
            color: white;
            padding: 32px 40px;
            text-align: center;
            border-top: 3px solid var(--primary-blue);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 6px;
            text-align: left;
        }

        .footer-logo {
            font-family: 'Cabinet Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(90deg, white, var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-tagline {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-locations {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-locations::before {
            content: '📍';
            font-size: 16px;
        }

        .footer-copyright {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 8px;
            font-size: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-light);
        }

        /* Cookie Notice */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(29, 81, 162, 0.98), rgba(15, 49, 102, 0.98));
            backdrop-filter: blur(12px);
            padding: 20px;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
            border-top: 3px solid var(--primary-blue);
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .cookie-notice.show {
            transform: translateY(0);
        }

        .cookie-notice-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cookie-notice-text {
            flex: 1;
            color: white;
            font-size: 14px;
            line-height: 1.6;
            min-width: 280px;
        }

        .cookie-notice-text a {
            color: var(--accent-light);
            text-decoration: underline;
            font-weight: 600;
        }

        .cookie-notice-text a:hover {
            color: white;
        }

        .cookie-notice-actions {
            display: flex;
            gap: 12px;
        }

        .cookie-notice-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-notice-btn.accept {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-bright));
            color: white;
            box-shadow: 0 4px 12px rgba(0, 151, 218, 0.3);
        }

        .cookie-notice-btn.accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 151, 218, 0.4);
        }

        .cookie-notice-btn.decline {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .cookie-notice-btn.decline:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* DESKTOP ONLY - Locations Grid 2 columns */
        @media (min-width: 1025px) {
            .locations-grid {
                max-width: 1400px !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 60px !important;
                display: grid !important;
                padding: 0px;
                align-items: start !important;
                margin-top: -70px !important;
            }

            .location-card:nth-child(1) {
                min-height: 800px !important;
            }

            .location-card:nth-child(2) {
                min-height: 800px !important;
                border-bottom: 1px solid #555 !important;
            }

            .location-content {
                margin-bottom: 20px !important;
            }

            .location-info {
                margin-bottom: 20px !important;
            }

            .location-amenities-new {
                margin-top: -20px !important;
                gap: 30px !important;
            }

            .location-amenities-new::after {
                bottom: 28px !important;
                width: 150%;
            }

            .location-card:nth-child(2) .location-amenities-new::after {
                bottom: 52px !important;
            }

            /* Увеличение иконок на 20% */
            .amenity-icon-large {
                transform: scale(1.44) !important;
                padding-bottom: 0px;
            }

            .amenity-icon-small-wash {
                transform: scale(1.32) !important;
            }

            .amenity-icon-dryer {
                transform: scale(1.26) translateY(-43px) !important;
                padding-bottom: 2px;
            }

            .amenity-group {
                gap: 12px !important;
            }

            .amenity-icon-animated {
                height: 189px !important;
                margin: 0 12px 0 0;
            }

            .day-check {
                display: none !important;
            }

            .day-name {
                display: none !important;
            }

            /* Выравнивание расписания по левому краю */
            .schedule-visual {
                justify-content: flex-start !important;
                display: flex !important;
                /*align-self: center !important;*/
                margin-left: -300px !important;
            }

            .schedule-text {
                text-align: left !important;
            }

            /* Часы как в мобильной версии */
            .schedule-hours-large {
                font-size: 32px !important;
                font-weight: 700 !important;
                color: #0097da !important;
                letter-spacing: 1px !important;
                text-align: left !important;
            }

            .schedule-days-small {
                font-size: 13px !important;
                font-weight: 500 !important;
                color: #666 !important;
                text-align: right !important;
            }

            /* Заголовок остается слева */
            .location-info-label {
                text-align: left !important;
                justify-content: flex-start !important;
                align-self: flex-start !important;
                width: 100% !important;
            }

            .location-info-content {
                display: flex !important;
                align-items: center !important;
                flex-direction: column !important;
            }

            .day-box {
                display: none !important;
            }
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 15px 32px;
                display: flex;
                flex-direction: column;
            }

            .hero-content {
                display: contents;
            }

            .hero-title,
            .hero-subtitle,
            .hero-benefits,
            .hero-footnote {
                order: 1;
            }

            .hero-visual {
                order: 2;
            }

            .hero-cta {
                order: 3;
            }

            .hero-title {
                font-size: 56px;
            }

            .section-title {
                font-size: 42px;
            }

            .services-grid,
            .token-info-grid {
                grid-template-columns: 1fr;
            }

            .token-info-grid {
                gap: 12px;
                padding: 0 16px;
            }
        }

        /* Chat Widget */
        .chat-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-bright));
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0, 151, 218, 0.4);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: chatPulse 2s ease-in-out infinite;
        }

        .chat-button::before {
            content: 'AI';
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--coral);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 6px;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(255, 107, 90, 0.4);
        }

        @keyframes chatPulse {

            0%,
            100% {
                box-shadow: 0 4px 16px rgba(0, 151, 218, 0.4);
            }

            50% {
                box-shadow: 0 4px 20px rgba(0, 151, 218, 0.7), 0 0 0 8px rgba(0, 151, 218, 0.1);
            }
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 151, 218, 0.6);
            animation: none;
        }

        /* Bounce animation for new message notification */
        .chat-button.bounce {
            animation: chatBounce 0.5s ease-in-out 3;
        }

        @keyframes chatBounce {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            25% {
                transform: translateY(-15px) scale(1.1);
            }

            50% {
                transform: translateY(0) scale(1);
            }

            75% {
                transform: translateY(-8px) scale(1.05);
            }
        }

        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 380px;
            height: 550px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
        }

        .chat-widget.active {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }

        .chat-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-bright));
            color: white;
            padding: 20px;
            border-radius: 16px 16px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            min-height: 70px;
        }

        .chat-header-info h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .chat-status::before {
            content: '';
            width: 11px;
            height: 11px;
            background: #4ade80;
            border-radius: 50%;
            margin-right: 6px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }



        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .close-chat:hover {
            transform: rotate(90deg);
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f8f9fa;
        }

        .chat-message {
            margin-bottom: 16px;
            display: flex;
        }

        .chat-message.user {
            justify-content: flex-end;
        }

        .chat-message.bot {
            justify-content: flex-start;
        }

        .message-bubble {
            max-width: 75%;
            padding: 12px 16px;
            border-radius: 12px;
            position: relative;
        }

        .chat-message.user .message-bubble {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-bright));
            color: white;
            border-bottom-right-radius: 4px;
        }

        .chat-message.bot .message-bubble {
            background: white;
            color: #333;
            border-bottom-left-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .message-bubble p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.4;
            white-space: pre-line;
        }

        .message-bubble a {
            color: var(--primary-blue);
            text-decoration: underline;
            word-break: break-all;
            transition: opacity 0.2s;
        }

        .message-bubble a:hover {
            opacity: 0.8;
        }

        .chat-message.user .message-bubble a {
            color: white;
            text-decoration: underline;
        }

        .message-time {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 4px;
            display: block;
        }

        .operator-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-right: 6px;
            display: inline-block;
            box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
        }

        .chat-input-container {
            display: flex;
            padding: 16px;
            background: white;
            border-top: 1px solid #e0e0e0;
            border-radius: 0 0 16px 16px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e0e0e0;
            border-radius: 24px;
            padding: 12px 16px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .chat-input:focus {
            border-color: var(--primary-blue);
        }

        .send-button {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-bright));
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            margin-left: 8px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .send-button:hover {
            transform: scale(1.1);
        }

        .photo-button {
            background: #f1f3f4;
            border: none;
            color: #8e8e93;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .photo-button:hover {
            background: #e4e6e8;
        }

        .photo-button svg {
            width: 22px;
            height: 22px;
        }

        .chat-message.photo-message {
            max-width: 80%;
        }

        .chat-message img {
            max-width: 100%;
            border-radius: 8px;
            margin-top: 8px;
        }

        /* Typing indicator */
        .typing-indicator .message-bubble {
            padding: 16px 20px;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
        }

        .typing-dots span {
            width: 8px;
            height: 8px;
            background: #999;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {

            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: 0.7;
            }

            30% {
                transform: translateY(-10px);
                opacity: 1;
            }
        }

        @media (max-width: 480px) {
            .chat-widget {
                width: calc(100vw - 20px);
                height: calc(100vh - 100px);
                right: 10px;
                bottom: 10px;
            }

            .chat-button {
                right: 20px;
                bottom: 20px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 5px 0 15px 0;
            }

            .section-header {
                margin: 0 auto 20px;
                padding: 0 24px;
            }

            .header-container {
                padding: 16px 24px;
            }

            .logo-image {
                height: 60px;
            }

            .logo-text {
                font-size: 24px;
                line-height: 1.3;
                margin-top: -10px;
            }

            nav {
                display: none;
            }

            .nav-right {
                display: none;
            }

            header .lang-switcher {
                display: none;
            }

            .mobile-menu .lang-switcher {
                display: flex;
                position: static;
                transform: none;
                justify-content: center;
                margin: 20px auto 0;
                padding: 16px 0 0;
                border-top: 1px solid rgba(0, 0, 0, 0.06);
            }

            .mobile-menu .lang-btn {
                color: #A0AEC0;
            }

            .mobile-menu-btn {
                display: none;
            }

            .menu-tab {
                display: block;
            }

            .hero {
                padding-top: 140px;
            }

            .hero-title {
                font-size: 38px;
                margin-bottom: 6px;
            }

            .hero-subtitle {
                font-size: 18px;
                margin-bottom: 8px;
            }

            .hero-benefits {
                margin-bottom: 3px;
                min-height: 100px;
            }

            .benefit-item {
                gap: 10px;
                padding: 8px 12px;
                border-left-width: 3px;
            }

            .benefit-icon {
                font-size: 26px;
            }

            .benefit-text {
                font-size: 15px;
                line-height: 1.35;
            }

            .benefit-text strong {
                font-size: 17px;
                line-height: 1.25;
                margin-bottom: 2px;
            }

            .benefit-text {
                font-size: 18px;
            }

            /* Token Purchase Responsive Grid */
            .token-purchase-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 24px;
                align-items: start;
            }

            @media (min-width: 768px) {
                .token-purchase-grid {
                    grid-template-columns: 1fr 1fr;
                }
            }

            @media (min-width: 1024px) {
                .token-purchase-grid {
                    grid-template-columns: 1fr 1fr 1fr;
                }
            }

            .hero-card {
                padding: 8px;
            }

            .hero-card-title {
                margin-bottom: 8px;
            }

            .hero-card-features {
                gap: 8px;
            }

            .hero-footnote {
                margin-top: 4px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 6px;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .section-title {
                font-size: 32px;
            }

            .token-info-grid {
                padding: 0 12px;
                gap: 10px;
                margin: 6px auto 5px;
            }

            .token-column-title {
                font-size: 18px;
            }

            .token-column-content {
                font-size: 18px;
            }

            .token-price-large {
                font-size: 36px;
            }

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

            .services-grid {
                padding: 0 24px;
            }

            .temp-badges {
                flex-wrap: wrap;
                gap: 6px;
            }

            .temp-badge {
                padding: 6px 4px;
                min-width: 0;
            }

            .temp-badge svg {
                width: 40px;
                height: 40px;
            }

            .temp-badge {
                font-size: 18px;
            }

            .temp-badge span {
                font-size: 24px !important;
                margin-left: 4px !important;
            }

            .price-header-label {
                font-size: 22px;
            }

            .price-capacity {
                font-size: 26px;
            }

            .price-value {
                font-size: 39px;
            }

            .price-value small {
                font-size: 21px;
            }

            .price-note {
                font-size: 21px;
            }

            .tab-content.active {
                grid-template-columns: 1fr;
                gap: 8px;
                padding: 24px;
                margin: 0 12px;
            }

            #contact {
                padding: 10px 0 15px;
            }

            #contact .section-header {
                margin-bottom: 6px;
            }

            .contact-methods {
                flex-direction: column;
                gap: 12px;
                margin-top: 0;
            }

            .contact-method {
                padding: 7px 10px;
            }

            .contact-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 20px;
            }

            .contact-value {
                font-size: 16px;
            }

            footer {
                padding: 24px 24px;
            }

            .footer-main {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 4px;
            }

            .footer-brand {
                align-items: center;
                text-align: center;
            }

            .footer-logo {
                font-size: 20px;
            }

            .footer-tagline {
                font-size: 12px;
            }

            .footer-locations {
                font-size: 13px;
            }

            .cookie-notice {
                padding: 16px;
            }

            .cookie-notice-content {
                flex-direction: column;
                gap: 16px;
            }

            .cookie-notice-text {
                font-size: 13px;
                text-align: center;
            }

            .cookie-notice-actions {
                width: 100%;
                flex-direction: column;
            }

            .cookie-notice-btn {
                width: 100%;
                padding: 14px 24px;
            }

            .location-amenities {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                margin-top: 16px;
            }

            .amenity-item {
                padding: 16px 8px;
                gap: 10px;
                min-height: 90px;
            }

            .amenity-icon img {
                max-height: 52px;
            }

            .amenity-icon svg {
                max-height: 50px;
            }

            .amenity-label {
                font-size: 13px;
                font-weight: 700;
            }

            /* Скрыть визуальные дни недели на мобильных */
            .days-row {
                display: none;
            }

            /* Показать только время работы */
            .schedule-visual {
                display: block;
            }

            .schedule-hours {
                margin-top: 0;
            }


            /* Center schedule content across full card width */
            .location-info-item:has(.schedule-visual) .location-info-content {
                flex: 1;
                width: 100%;
            }

            /* Reduce padding by half on schedule items */
            .location-info-item:has(.schedule-visual) {
                padding-top: 4px;
                padding-bottom: 4px;
            }

            .schedule-text {
                padding: 4px 0 6px 0;
                text-align: center;
            }

            .schedule-header {
                font-size: 12px;
                font-weight: 600;
                color: #666;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
            }

            .schedule-header::before {
                content: '🕐';
                font-size: 14px;
            }

            .schedule-hours-large {
                font-size: 32px;
                font-weight: 700;
                color: #0097da;
                margin-bottom: 8px;
                letter-spacing: 1px;
            }

            .schedule-days-small {
                font-size: 13px;
                font-weight: 500;
                color: #666;
                line-height: 1.5;
            }

            .time-display {
                font-size: 18px;
                font-weight: 700;
                letter-spacing: 0.5px;
            }

            .time-separator {
                font-size: 14px;
            }

            /* Mobile: Location Cards */
            .locations-grid {
                grid-template-columns: 1fr;
                padding: 5px 5px 20px 5px;
                gap: 32px !important;
            }

            .location-card {
                border-radius: 16px;
                max-height: 1000px !important;
            }

            .location-card:nth-child(2) {
                border-top: 3px solid #222 !important;
                padding-top: 20px !important;
            }

            .location-header {
                padding: 15px 5px 0px 5px;
                margin-bottom: 5px !important;
            }

            .location-content {
                padding: 0 0px 0px 0px !important;
            }

            .location-name {
                font-size: 24px;
                margin-bottom: 3px;
                line-height: 1.3;
            }

            .location-info {
                gap: 20px;
                margin-bottom: 0px;
            }

            .location-amenities-new {
                margin-left: auto !important;
                margin-right: auto !important;
                margin-top: -15px !important;
                margin-bottom: auto !important;
                flex-wrap: nowrap !important;
                padding: 0 !important;
                gap: 0 !important;
                justify-content: center !important;
                width: 100% !important;
                align-items: flex-end !important;
            }

            .amenity-group {
                height: 215x !important;
            }

            .location-amenities-new>div {
                align-items: flex-end !important;
                margin: 0 !important;
            }

            .location-amenities-new>div:nth-child(2) {
                margin-left: 2px !important;
            }

            /* Galjevica card: minimize gaps between icons — dryers wrapper gap */
            .location-card:nth-child(2) .location-amenities-new > div:first-child > div:last-child {
                gap: 2px !important;
            }

            .location-info-item {
                padding: 10px 0;
                border-bottom: 1px solid rgba(0, 151, 218, 0.1);
            }

            .location-info-item:last-child {
                border-bottom: none;
            }

            .location-info-label {
                font-size: 12px;
                margin-bottom: 0px;
            }

            .location-info-value {
                font-size: 16px;
                line-height: 1.5;
            }

            .location-btn {
                width: 96px;
                height: 48px;
                padding: 0;
                font-size: 20px;
            }

            .location-btn::after {
                font-size: 24px;
            }

            .location-map {
                height: 250px;
            }

            /* Mobile: Token Purchase Instructions */
            .tokens-methods-grid {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }

            /* Mobile: Reviews */
            .reviews-grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 6px;
            }

            .review-card {
                padding: 10px;
            }

            .reviews-rating-summary {
                flex-direction: column;
                gap: 8px;
            }

            .reviews-stars {
                font-size: 20px;
            }

            .reviews-rating-text {
                font-size: 18px;
            }

            /* Mobile: Tabs optimization */
            .instruction-tabs {
                padding: 8px 8px 0 8px;
                gap: 6px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding-right: 40px;
            }

            .instruction-tabs::-webkit-scrollbar {
                display: none;
            }

            .tab-button {
                padding: 18px 28px 18px 28px;
                font-size: 14px;
                min-width: max-content;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .tab-button.active {
                z-index: 9;
                border-bottom: none !important;
                margin-bottom: -1px;
                background: white;
                border-radius: 12px 12px 0 0;
                box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
            }

            .tab-button span[style*="font-size: 52px"] {
                font-size: 42px !important;
                margin-right: 8px !important;
            }

            .tab-button img,
            .tab-button svg {
                width: 42px !important;
                height: 42px !important;
                margin-right: 8px !important;
            }

            /* Mobile: Section headers */
            #instructions .section-header {
                margin-bottom: 6px;
                padding: 0 24px;
            }

            #instructions .section-eyebrow {
                font-size: 12px;
                margin-bottom: 2px;
            }

            #instructions .section-title {
                font-size: 28px;
                margin-bottom: 3px;
            }

            #instructions .section-subtitle {
                font-size: 16px;
            }

            /* Mobile: Video container */
            .video-container {
                border-radius: 12px;
            }

            /* Mobile: Instructions container */
            .instructions-container {
                padding: 0;
            }

            .instructions-container .instruction-tabs {
                margin: 0 12px;
                border-radius: 12px 12px 0 0;
            }

            /* Mobile: Instruction steps */
            .instruction-number {
                font-size: 28px;
                min-width: 48px;
                min-height: 48px;
            }

            .instruction-title {
                font-size: 18px;
            }

            .instruction-description {
                font-size: 14px;
            }
        }

        /* Extra small screens */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 32px;
            }

            .section-title {
                font-size: 28px;
            }

            #instructions .section-title {
                font-size: 24px;
            }

            .tab-button {
                padding: 18px 28px 18px 28px;
                font-size: 13px;
            }

            .tab-button span[style*="font-size: 52px"],
            .tab-button span[style*="font-size: 42px"] {
                font-size: 36px !important;
                margin-right: 6px !important;
            }

            .tab-button img,
            .tab-button svg {
                width: 36px !important;
                height: 36px !important;
            }

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

            .btn {
                padding: 14px 24px;
                font-size: 15px;
            }
        }

        /* Chat Widget */
        .chat-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0, 152, 217, 0.4);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 152, 217, 0.6);
        }

        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 380px;
            height: 550px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
        }

        .chat-widget.active {
            opacity: 1;
            transform: scale(1);
            pointer-events: all;
        }

        .chat-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
            color: white;
            padding: 15px;
            padding-bottom: 20px;
            border-radius: 16px 16px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            min-height: 70px;
        }

        .chat-header-info h3 {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .chat-status {
            position: absolute;
            bottom: 4px;
            right: 10px;
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .chat-help-text {
            display: block;
            font-size: 0.72rem;
            opacity: 1;
            line-height: 1.3;
            font-weight: 300;
            margin-top: 1px;
        }

        .chat-help-text strong {
            font-weight: 600;
            opacity: 1;
        }

        .chat-status::before {
            content: '';
            width: 11px;
            height: 11px;
            background: #4ade80;
            border-radius: 50%;
            margin-right: 6px;
            animation: chatPulse 2s infinite;
        }

        @keyframes chatPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .close-chat:hover {
            transform: rotate(90deg);
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            background: #f8f9fa;
        }

        .chat-message {
            margin-bottom: 16px;
            display: flex;
        }

        .chat-message.user {
            justify-content: flex-end;
        }

        .chat-message.bot {
            justify-content: flex-start;
        }

        .message-bubble {
            max-width: 75%;
            padding: 12px 16px;
            border-radius: 12px;
            position: relative;
        }

        .chat-message.user .message-bubble {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
            color: white;
            border-bottom-right-radius: 4px;
        }

        .chat-message.bot .message-bubble {
            background: white;
            color: #333;
            border-bottom-left-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .message-bubble p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.4;
            white-space: pre-line;
        }

        .message-bubble a {
            color: var(--primary-blue);
            text-decoration: underline;
            word-break: break-all;
            transition: opacity 0.2s;
        }

        .message-bubble a:hover {
            opacity: 0.8;
        }

        .chat-message.user .message-bubble a {
            color: white;
            text-decoration: underline;
        }

        .message-time {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 4px;
            display: block;
        }

        .operator-badge {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-right: 6px;
            display: inline-block;
            box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
        }

        .chat-input-container {
            display: flex;
            padding: 16px;
            background: white;
            border-top: 1px solid #e0e0e0;
            border-radius: 0 0 16px 16px;
        }

        .chat-input {
            flex: 1;
            border: 1px solid #e0e0e0;
            border-radius: 24px;
            padding: 12px 16px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .chat-input:focus {
            border-color: var(--primary-navy);
        }

        .send-button {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-navy));
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            margin-left: 8px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
            flex-shrink: 0;
        }

        .send-button:hover {
            transform: scale(1.1);
        }

        .photo-button {
            background: #f1f3f4;
            border: none;
            color: #8e8e93;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            flex-shrink: 0;
        }

        .photo-button:hover {
            background: #e4e6e8;
        }

        .photo-button svg {
            width: 22px;
            height: 22px;
        }

        .chat-message.photo-message {
            max-width: 80%;
        }

        .chat-message img {
            max-width: 100%;
            border-radius: 8px;
            margin-top: 8px;
        }

        /* Typing indicator */
        .typing-indicator .message-bubble {
            padding: 16px 20px;
        }

        .typing-dots {
            display: flex;
            gap: 4px;
        }

        .typing-dots span {
            width: 8px;
            height: 8px;
            background: #999;
            border-radius: 50%;
            animation: chatTyping 1.4s infinite;
        }

        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes chatTyping {

            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: 0.7;
            }

            30% {
                transform: translateY(-10px);
                opacity: 1;
            }
        }

        @media (max-width: 480px) {
            .chat-widget {
                width: calc(100vw - 20px);
                height: calc(100vh - 100px);
                right: 10px;
                bottom: 10px;
            }

            .chat-button {
                right: 20px;
                bottom: 20px;
            }
        }