* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
        }
        
        :root {
            --primary-red: #D81E06;
            --deep-black: #1A1A1A;
            --clean-white: #FFFFFF;
            --light-gray: #E5E5E5;
            --shadow-red: rgba(216, 30, 6, 0.3);
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--deep-black);
            overflow-x: hidden;
            background: var(--clean-white);
        }
        
        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-link {
            color: var(--clean-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
        }
        .btn-link1 {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
        }

        .header .logo img{
            width: 200px;
            height: 50px;
            object-fit: contain;
        }

        .header .logo,
        .header .nav a,
        .header .contacts {
            color: var(--deep-black);
        }
        
        .header .phone {
            color: var(--deep-black);
        }
        
        .header .social-icon {
            background: rgba(26, 26, 26, 0.1);
            color: var(--deep-black);
        }
        
        .header .social-icon:hover {
            background: var(--primary-red);
            color: var(--clean-white);
        }
        
        .header .lang-switcher span {
            color: var(--deep-black);
        }
        
        .header .lang-switcher span.active,
        .header .lang-switcher span:hover {
            color: var(--primary-red);
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 24px;
            color: var(--deep-black);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: color 0.3s ease;
        }
        
        .logo:hover {
            color: var(--primary-red);
        }
        
        .logo-icon {
            font-size: 32px;
        }
        
        .nav {
            display: flex;
            gap: 40px;
        }
        
        .nav a {
            color: var(--deep-black);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav a:hover {
            color: var(--primary-red);
        }
        
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        
        .nav a:hover::after {
            width: 100%;
        }
        
        .contacts {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--deep-black);
            transition: color 0.3s ease;
        }
        
        .phone {
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            color: var(--deep-black);
            transition: color 0.3s ease;
        }
        
        .phone:hover {
            color: var(--primary-red);
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26, 26, 26, 0.1);
            border-radius: 50%;
            text-decoration: none;
            font-size: 16px;
            color: var(--deep-black);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary-red);
            color: var(--clean-white);
            transform: scale(1.1);
        }
        
        .lang-switcher {
            display: flex;
            gap: 5px;
            font-size: 14px;
        }
        
        .lang-switcher span {
            cursor: pointer;
            opacity: 0.7;
            color: var(--deep-black);
            transition: all 0.3s ease;
        }
        
        .lang-switcher span.active,
        .lang-switcher span:hover {
            opacity: 1;
            color: var(--primary-red);
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            position: relative;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--deep-black);
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        /* Mobile Menu Animation */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }
        
        /* Mobile Menu Panel */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: 100%;
            background: var(--clean-white);
            z-index: 1000;
            padding: 80px 30px 30px;
            overflow-y: auto;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        }
        
        .mobile-menu.active {
            display: block;
            right: 0;
        }
        
        .mobile-menu-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light-gray);
        }
        
        .mobile-menu-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 900;
            color: var(--primary-red);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-bottom: 30px;
        }
        
        .mobile-nav a {
            color: var(--deep-black);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            padding: 15px 0;
            border-bottom: 1px solid var(--light-gray);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .mobile-nav a:hover {
            color: var(--primary-red);
            padding-left: 10px;
        }
        
        .mobile-nav a::after {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .mobile-nav a:hover::after {
            opacity: 1;
        }
        
        .mobile-contacts {
            margin-top: auto;
            padding-top: 30px;
            border-top: 2px solid var(--light-gray);
        }
        
        .mobile-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 700;
            color: var(--deep-black);
            text-decoration: none;
            margin-bottom: 20px;
        }
        
        .mobile-social {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .mobile-social a {
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: var(--clean-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .mobile-social a:hover {
            background: #FF2910;
            transform: scale(1.1);
        }
        
        .mobile-lang {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .mobile-lang span {
            padding: 8px 16px;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-lang span.active,
        .mobile-lang span:hover {
            border-color: var(--primary-red);
            color: var(--primary-red);
            background: rgba(216, 30, 6, 0.05);
        }
        
        .mobile-cta {
            margin-top: 30px;
        }
        
        .mobile-cta .btn {
            width: 100%;
            justify-content: center;
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--clean-white);
            overflow: hidden;
            padding-top: 80px; /* Space for fixed header */
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        /* Video Background */
        .hero-video {
            /* filter: brightness(50%); */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        @keyframes gradientShift {
            0%, 100% { filter: hue-rotate(0deg) brightness(0.7); }
            50% { filter: hue-rotate(10deg) brightness(0.9); }
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
            z-index: 1;
        }
        
        .sound-toggle {
            position: absolute;
            top: 100px;
            right: 30px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid var(--clean-white);
            color: var(--clean-white);
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        /* removed incorrect background:url for video file */

        .sound-toggle:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
        }
        
        .founder-photo img{
            width: 300px;
            height: 450px;
            border-radius: 18px;
        }

        .hero-content {
            /* position: relative; */
            /* z-index: 2; */
            max-width: 1200px;
            padding: 0 5%;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 56px;
            line-height: 1.2;
            margin-bottom: 24px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 0.5s both;
        }
        
        /* SEO: Hero subtitle is <p>, not <h2> */
        .hero-subtitle {
            font-size: 22px;
            line-height: 1.5;
            color: var(--light-gray);
            font-weight: 400;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            animation: fadeInUp 1s ease-out 0.7s both;
        }
        
        .hero-triggers {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease-out 0.9s both;
        }
        
        .trigger {
            color: var(--light-gray);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
            animation: scaleIn 0.8s ease-out 1.2s both;
        }
        
        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .btn {
            padding: 18px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            border: none;
        }
        
        .btn-primary {
            background: var(--primary-red);
            color: var(--clean-white);
            box-shadow: 0 4px 12px var(--shadow-red);
        }
        
        .btn-primary:hover {
            background: #FF2910;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--shadow-red);
            animation: pulse 1.5s ease infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: translateY(-2px) scale(1); }
            50% { transform: translateY(-2px) scale(1.02); }
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--clean-white);
            border: 2px solid var(--clean-white);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-red);
            color: var(--primary-red);
            transform: translateY(-2px);
        }
        
        .social-proof {
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 20px 40px;
            border-radius: 12px;
            display: inline-block;
            animation: fadeInUp 1s ease-out 1.5s both;
        }
        
        .flags {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 12px;
            font-size: 32px;
        }
        
        .social-proof p {
            font-size: 14px;
            margin: 5px 0;
            color: var(--clean-white);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
            50% {
                transform: translateX(-50%) translateY(10px);
                opacity: 0.5;
            }
        }
        
        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            fill: var(--clean-white);
        }
        
        /* ===== SECTIONS ===== */
        section {
            padding: 100px 5%;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 42px;
            text-align: center;
            margin-bottom: 20px;
            color: var(--deep-black);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Scale Section */
        .scale {
            background: var(--clean-white);
            text-align: center;
        }
        
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .stat-card {
            padding: 40px 20px;
            background: #F8F8F8;
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 56px;
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            color: #666;
        }
        
        /* Product Section */
        .product {
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            color: var(--clean-white);
        }
        
        .product .section-title {
            color: var(--clean-white);
        }
        
        .product .section-subtitle {
            color: var(--light-gray);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-red);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .feature-text {
            color: var(--light-gray);
            line-height: 1.6;
        }
        
        /* Founder Section */
        .founder {
            background: #F8F8F8;
        }
        
        .founder-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .founder-photo {
            width: 100%;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--primary-red), #FF4500);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            box-shadow: 0 20px 50px rgba(216, 30, 6, 0.3);
        }
        
        .founder-info h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .founder-info .title {
            font-size: 18px;
            color: var(--primary-red);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .founder-info blockquote {
            font-size: 18px;
            line-height: 1.7;
            color: #444;
            font-style: italic;
            border-left: 4px solid var(--primary-red);
            padding-left: 20px;
            margin: 30px 0;
        }
        
        .founder-achievements {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }
        
        .achievement {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }
        
        .achievement span {
            font-size: 24px;
        }
        
        /* Investment Section */
        .investment {
            background: var(--clean-white);
        }
        
        .investment-table {
            max-width: 900px;
            margin: 0 auto 40px;
            background: var(--clean-white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .investment-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            padding: 25px 40px;
            border-bottom: 1px solid #F0F0F0;
            transition: all 0.3s ease;
        }
        
        .investment-row:hover {
            background: #F8F8F8;
        }
        
        .investment-row.total {
            background: var(--primary-red);
            color: var(--clean-white);
            font-weight: 700;
            font-size: 24px;
            border: none;
        }
        
        .investment-label {
            font-weight: 600;
        }
        
        .investment-value {
            text-align: right;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .roi-highlight {
            text-align: center;
            margin: 40px auto;
            padding: 30px;
            background: linear-gradient(135deg, var(--primary-red), #FF4500);
            color: var(--clean-white);
            border-radius: 16px;
            font-size: 28px;
            font-weight: 700;
            max-width: 900px;
        }
        
        .note-box {
            max-width: 900px;
            margin: 40px auto;
            padding: 30px;
            background: #FFF9E6;
            border-left: 4px solid #FFB800;
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.8;
            color: #666;
        }
        
        /* Roadmap Section */
        .roadmap {
            background: #F8F8F8;
        }
        
        .timeline {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        
        .timeline-item {
            position: relative;
            padding: 25px 20px;
            background: var(--clean-white);
            border-radius: 12px;
            border-top: 4px solid #E5E5E5;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .timeline-item:hover {
            border-top-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .timeline-number {
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: var(--clean-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            margin: 0 auto 15px;
            box-shadow: 0 4px 12px var(--shadow-red);
        }
        
        .timeline-content h4 {
            margin-bottom: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--deep-black);
        }
        
        .timeline-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background: var(--clean-white);
            padding: 50px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: slideIn 0.4s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            cursor: pointer;
            color: #999;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--primary-red);
        }
        
        .modal h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .modal p {
            color: #666;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--deep-black);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #E5E5E5;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-red);
        }
        
        .form-checkbox {
            display: flex;
            align-items: start;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .form-checkbox input {
            margin-top: 4px;
        }
        
        .form-checkbox label {
            font-size: 14px;
            color: #666;
        }
        
        .form-checkbox a {
            color: var(--primary-red);
        }
        
        /* CTA Final Section */
        .cta-final {
            background: linear-gradient(135deg, var(--primary-red), #FF4500);
            color: var(--clean-white);
            text-align: center;
            padding: 80px 5%;
        }
        
        .cta-final h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .cta-final p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background: var(--deep-black);
            color: var(--clean-white);
            padding: 60px 5% 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            /* gap: 40px; */
            max-width: 1200px;
            margin: 0 auto 40px;
        }
        
        .footer-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--clean-white);
        }
        
        .footer-col p {
            color: var(--light-gray);
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .footer-col a {
            display: block;
            color: var(--light-gray);
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-col a:hover {
            color: var(--primary-red);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .footer-social a img {
            width: 20px;
            height: 20px;
        }
        
        .footer-social a:hover {
            background: var(--primary-red);
            transform: scale(1.1);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 60px;
            /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
            color: #999;
            font-size: 14px;
        }
        
        .footer-bottom p {
            margin: 5px 0;
        }
        
        /* Opening Gallery Section */
        .opening-gallery {
            background: var(--clean-white);
        }
        
        .gallery-grid-opening {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* gap: 20px; */
            max-width: 1200px;
            margin: 0 auto;
            align-items: stretch;
        }

        .article1,
        .article2 {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        /* Left column stays at the top; right column centers its items vertically
           and centers them horizontally so two cards appear in the middle */
        .article1 {
            justify-content: flex-start;
        }

        .article2 {
            justify-content: center; /* vertical centering within the row height */
            align-items: center;    /* center cards horizontally inside the column */
        }

        /* Make the two cards in the right column narrower so they appear centered */
        .article2 .opening-photo {
            width: 85%;
            max-width: 520px;
            margin: 0 auto;
        }

        .opening-photo {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .opening-photo:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }
        
        .opening-photo img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .opening-photo-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #D81E06, #FF6B00);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--clean-white);
            font-size: 64px;
        }
        
        .opening-photo-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--clean-white);
            padding: 30px 20px 20px;
        }
        
        .opening-photo-caption h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .opening-photo-caption p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* Locations Section */
        .locations {
            background: #F8F8F8;
        }
        
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .location-card {
            background: var(--clean-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        .location-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #1A1A1A, #4A4A4A);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            position: relative;
            overflow: hidden;
        }
        
        /* Carousel: stack images and fade them in/out in sequence */
        .location-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            animation: carouselFade 6s linear infinite;
            will-change: opacity;
        }

        /* Staggered delays for up to 6 images — adjust or add more selectors if needed */
        .location-image img:nth-of-type(1) { animation-delay: 0s; }
        .location-image img:nth-of-type(2) { animation-delay: 2s; }
        .location-image img:nth-of-type(3) { animation-delay: 4s; }

        @keyframes carouselFade {
            0%, 100% { opacity: 0; }
            5%, 30% { opacity: 1; } /* Картинка плавно появляется и держится */
            35% { opacity: 0; }      /* Уходит в прозрачность */
        }

        /* Pause animation on hover to let user inspect image */
        /* .location-image:hover img {
            animation-play-state: paused;
        } */
        
        .location-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-red);
            color: var(--clean-white);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .location-info {
            padding: 30px;
        }
        
        .location-info h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--deep-black);
        }
        
        .location-address {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        /* Certificates Section */
        .certificates {
            background: var(--deep-black);
            color: var(--clean-white);
        }
        
        .certificates .section-title {
            color: var(--clean-white);
        }
        
        .certificates .section-subtitle {
            color: var(--light-gray);
        }
        
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .certificate-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .certificate-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(216, 30, 6, 0.3);
        }
        
        .certificate-icon {
            width: 120px;
            height: 150px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 64px;
        }
        
        .certificate-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .certificate-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--clean-white);
        }
        
        .certificate-card p {
            color: var(--light-gray);
            font-size: 14px;
            line-height: 1.6;
        }
        
        .certificate-verify {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            padding: 10px 20px;
            background: var(--primary-red);
            color: var(--clean-white);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .certificate-verify:hover {
            background: #FF2910;
            transform: scale(1.05);
        }
        
        /* Sticky Mobile Button */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            z-index: 999;
            background: #25D366;
            color: var(--clean-white);
            padding: 16px 24px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.5s ease;
            cursor: pointer;
            text-decoration: none;
        }
        
        .sticky-cta.show {
            display: block;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .founder-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .founder-photo {
                max-width: 300px;
                margin: 0 auto;
            }
            
            .timeline {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav,
            .contacts {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 16px;
            }
            
            .hero-cta {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .stats,
            .features {
                grid-template-columns: 1fr;
            }
            
            .investment-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .investment-value {
                text-align: left;
            }
            
            .modal-content {
                padding: 30px 20px;
            }
            
            .timeline {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            /* Mobile Menu Specific */
            .gallery-grid-opening {
                grid-template-columns: 1fr;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
            }
            
            .certificates-grid {
                grid-template-columns: 1fr;
            }
            
            .opening-photo img,
            .opening-photo-placeholder {
                height: 300px;
            }
        }