:root {
            --primary-color: #0d7377;
            --primary-dark: #0a5d61;
            --secondary-color: #14a085;
            --accent-color: #32e0c4;
            --text-dark: #1a1a1a;
            --text-light: #6b7280;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255,255,255,0.98);
            box-shadow: var(--shadow);
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('https://images.unsplash.com/photo-1601869959642-58e1ff8d81a3?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NTY2Njl8MHwxfHNlYXJjaHwxfHxoeWRyb2ZvaWx8ZW58MHx8fHwxNzU2ODM3ODQ5fDA&ixlib=rb-4.1.0&q=85');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: -0.02em;
        }
        
        .hero-content .subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 2.5rem;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--primary-color);
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            background: var(--accent-color);
            color: var(--white);
        }
        
        /* Stats Bar */
        .stats-bar {
            background: var(--primary-color);
            color: white;
            padding: 20px 0;
            text-align: center;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .stat-item p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        /* Update Section */
        .update-section {
            background: var(--primary-dark);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .update-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
            pointer-events: none;
        }
        
        .update-content {
            position: relative;
            z-index: 1;
        }
        
        .update-section h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 2rem;
            font-weight: 800;
        }
        
        .update-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }
        
        .update-badge {
            display: inline-block;
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        /* Story Section */
        .story-section {
            padding: 120px 0;
            background: var(--white);
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .story-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            color: var(--text-dark);
            font-weight: 800;
        }
        
        .story-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        .story-content .highlight {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .story-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        
        .story-image:hover {
            transform: scale(1.02);
        }
        
        .story-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        
        /* Features Section */
        .features-section {
            padding: 120px 0;
            background: var(--bg-light);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 800;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }
        
        .feature:nth-child(even) .feature-content {
            order: 2;
        }
        
        .feature:nth-child(even) .feature-image {
            order: 1;
        }
        
        .feature-content h3 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-weight: 700;
        }
        
        .feature-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: var(--text-light);
        }
        
        .feature-list li::before {
            content: '✓';
            background: var(--primary-color);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .feature-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .feature-image:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        /* Specifications Table */
        .specs-section {
            padding: 120px 0;
            background: var(--white);
        }
        
        .specs-table {
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-top: 3rem;
        }
        
        .specs-header {
            background: var(--primary-color);
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .specs-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .specs-content {
            padding: 40px;
        }
        
        .specs-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        
        .specs-row:last-child {
            border-bottom: none;
        }
        
        .specs-row .label {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .specs-row .value {
            color: var(--text-light);
            text-align: right;
            max-width: 60%;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 120px 0;
            background: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .testimonial {
            background: rgba(255,255,255,0.1);
            padding: 40px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 120px 0;
            background: var(--bg-light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 30px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--bg-light);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 0 30px 30px;
            max-height: 200px;
        }
        
        .faq-answer p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 120px 0;
            background: var(--primary-dark);
            color: white;
            text-align: center;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 60px;
            text-align: left;
        }
        
        .newsletter-signup h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 2rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            background: var(--accent-color);
            color: var(--text-dark);
            border: none;
            padding: 15px 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--secondary-color);
        }
        
        .contact-form {
            max-width: 500px;
        }
        
        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            background: var(--secondary-color);
        }
        
        /* Footer */
        .footer {
            background: #0a1a1a;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            line-height: 1.6;
        }
        
        .footer-section a:hover {
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .story-grid,
            .feature,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .feature:nth-child(even) .feature-content,
            .feature:nth-child(even) .feature-image {
                order: unset;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                border-radius: 10px;
                margin-bottom: 10px;
            }
            /* Full-bleed видео на всю ширину экрана */
            /* --- FULL-BLEED VIDEO --- */
            .video-section{ padding:0; background: var(--white); }

            /* Выводим блок из любых контейнеров на ширину окна */
            .video-fullbleed{
              position:relative;
              width:100vw;
              left:50%;
              transform:translateX(-50%);
            }
            
            /* Делаем адаптивное соотношение сторон */
            .video-fullbleed .video-wrapper{
              position:relative;
              width:100%;
              aspect-ratio:16/9;
              overflow:hidden;
            }
            
            /* Fallback для старых браузеров без aspect-ratio */
            @supports not (aspect-ratio: 16/9){
              .video-fullbleed .video-wrapper{ height:0; padding-bottom:56.25%; }
            }
            
            /* iframe занимает весь блок */
            .video-fullbleed .video-wrapper iframe{
              position:absolute;
              inset:0;
              width:100% !important;
              height:100% !important;
              display:block;
              border:0;
            }
            
            /* На случай, если видео всё-таки оставили внутри .container */
            .video-section .container { padding:0; }
            .video-section .container .video-wrapper{
              position:relative;
              width:100vw;
              left:50%;
              transform:translateX(-50%);
              aspect-ratio:16/9;
            }
            /* --- Блок под видео (The story) --- */
          /* --- ТОЛЬКО блок под видео --- */
            section.highlight-after-video .feature{
              align-items: center; /* картинка и текст по центру по высоте */
            }
            
            /* вертикально центрируем левую колонку и задаём ей высоту как у фото */
            section.highlight-after-video .feature-content{
              display: flex;
              flex-direction: column;
              justify-content: center;            /* центр по вертикали */
              min-height: clamp(520px, 72vh, 900px);
              text-align: center;
            }
            
            /* опускаем заголовок чуть ниже от верха колонки */
            section.highlight-after-video .feature-content h2{
              margin-top: 24px;                   /* можно 32–40px, если хочешь ещё ниже */
              margin-bottom: 24px;
            }
            
            /* текст по центру и читаемее */
            section.highlight-after-video .feature-content p{
              line-height: 1.9;
              margin: 0;                          /* убираем лишний отступ сверху/снизу */
            }
            
            /* мобильная адаптация: колонки в столбик, поменьше высота */
            @media (max-width: 768px){
              section.highlight-after-video .feature-content{
                min-height: auto;
                padding-top: 24px;
              }
            }
            
            /* --- Promo: The best pumpfoil --- */
            .promo-section{
              background: var(--bg-light);
              padding: 120px 0;
            }
            
            .promo-section .feature-content h3{
              font-size: clamp(1.8rem, 3.2vw, 2.6rem);
              font-weight: 800;
              margin: 0 0 16px;
              color: var(--text-dark);
            }
            
            .promo-section .feature-content p{
              color: var(--text-light);
              line-height: 1.8;
              margin-bottom: 24px;
            }
            
            .promo-badge{
              display: inline-block;
              background: var(--accent-color);
              color: var(--text-dark);
              padding: 6px 14px;
              border-radius: 999px;
              font-weight: 700;
              font-size: .85rem;
              margin-bottom: 12px;
            }
            
            .promo-section .feature-image{
              border-radius: 20px;
              overflow: hidden;
              box-shadow: var(--shadow);
            }
            
            .promo-section .feature-image img{
              width: 100%;
              height: 480px;          /* можно поднять до 70vh, если хочешь выше */
              object-fit: cover;
              display: block;
            }
            
            @media (max-width: 768px){
              .promo-section .feature-image img{ height: 320px; }
            }
            
            /* Квадратные изображения только для новой секции */
            .feature-image.square{
              aspect-ratio: 1 / 1;
              border-radius: 20px;
              overflow: hidden;
              box-shadow: var(--shadow);
            }
            .feature-image.square img{
              width: 100%;
              height: 100%;
              object-fit: cover;
              display: block;
            }
            /* Адаптивный логотип в шапке */
            .logo img{
              display:block;
              height:clamp(28px, 5vw, 44px);
              width:auto;
              max-width: 220px; /* чтобы не расползался при длинных картинках */
              object-fit:contain;
            }
            
            /* При прилипающем меню можно чуть уменьшать */
            .navbar.scrolled .logo img{
              height:clamp(24px, 4.2vw, 40px);
              transition:height .25s ease;
            }
            /* ===== Mobile navbar (hamburger) ===== */
            .nav-toggle{
              display:none;
              background:transparent;
              border:0;
              padding:8px;
              cursor:pointer;
            }
            .nav-toggle span{
              display:block;
              width:26px;
              height:3px;
              border-radius:2px;
              background: var(--text-dark);
              + span { margin-top:5px; }
              transition: transform .25s ease, opacity .25s ease, background .25s ease;
            }
            
            /* Состояние «открыто» — превращаем в крестик */
            .nav-toggle.active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
            .nav-toggle.active span:nth-child(2){ opacity:0; }
            .nav-toggle.active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
            
            /* Когда меню открыто, блокируем прокрутку фона */
            body.menu-open{ overflow:hidden; }
            
            /* Мобильная верстка меню */
            @media (max-width: 768px){
              .nav-content{ position: relative; } /* для абсолютного позиционирования меню */
            
              .nav-toggle{ display:block; }
            
              /* По умолчанию скрываем список ссылок на мобилках */
              .nav-links{
                display:none;
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                margin-top: 10px;
                background: #fff;
                border-radius: 12px;
                box-shadow: 0 16px 32px rgba(0,0,0,.12);
                padding: 12px 12px 6px;
                flex-direction: column;
                gap: 6px;
                z-index: 1100;
              }
              /* Когда открыт */
              .nav-links.open{ display:flex; }
            
              .nav-links li{ list-style:none; }
              .nav-links a{
                display:block;
                padding: 12px 10px;
                border-radius: 10px;
              }
              .nav-links a:hover{
                background: var(--bg-light);
                color: var(--primary-color);
              }
            }
            .logo img, .logo-img { height: 28px; display: block; }
            @media (min-width: 768px) { .logo img, .logo-img { height: 32px; } }
            @media (max-width: 768px) {
              /* Когда картинку перенесли внутрь текста — немного отступов и скругление */
              .story-image-inline {
                margin: 16px 0 24px;
              }
              .story-image-inline img {
                width: 100%;
                height: auto;
                display: block;
                border-radius: 14px;
              }
            }
        }