
        /* Reset and base styles */
        :root {
            --primary-color: #003366;
            --secondary-color: #2c7ad6;
            --accent-color: #e74c3c;
            --accent-hover: #c0392b;
            --dark-color: #222;
            --light-color: #f5f5f5;
            --white: #fff;
            --gray: #eee;
            --text-color: #333;
            --text-light: #666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--primary-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        /* Header */
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--white);
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 3px;
        }
        
        .tagline {
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 300;
            max-width: 600px;
        }
        
        /* Navigation */
        nav {
            width: 100%;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .nav-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
        }
        
        .nav-list li {
            margin: 0 5px;
        }
        
        .nav-list a {
            display: block;
            padding: 15px 20px;
            color: var(--white);
            font-weight: 500;
            border-radius: 4px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-list a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        .nav-list a:hover::after {
            width: 80%;
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 10px;
        }
        
        /* Hero section */
        .hero {
            background: transparent;
            background-size: cover;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5));
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin: 0 auto 40px;
            max-width: 800px;
            font-weight: 300;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--accent-color);
            color: var(--white);
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 1rem;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-hover);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            color: var(--white);
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        /* News section */
        .section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-color);
            border-radius: 3px;
        }
        
        .news-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .news-item {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .news-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .news-item:hover::before {
            height: 100%;
        }
        
        .news-date {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: inline-block;
            padding: 3px 10px;
            background-color: var(--gray);
            border-radius: 4px;
        }
        
        .news-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            line-height: 1.3;
        }
        
        /* Features section */
        .features {
            background-color: var(--white);
            position: relative;
        }
        
        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            background-size: contain;
            opacity: 0.05;
            z-index: 0;
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .feature-box {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            height: 100%;
        }
        
        .feature-box::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, rgba(44, 122, 214, 0.05), transparent);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-box:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--accent-color);
            display: inline-block;
            position: relative;
        }
        
        .feature-icon::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Pricing section */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            justify-content: center;
        }
        
        .pricing-box {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .pricing-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }
        
        .pricing-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .pricing-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .pricing-price {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--accent-color);
            font-weight: 700;
            display: inline-block;
            padding: 10px 0;
            position: relative;
        }
        
        .pricing-price::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray);
            position: relative;
            padding-left: 25px;
        }
        
        .pricing-features li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        
        /* Contact section */
        .contact {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: transparent;
            background-size: contain;
            opacity: 0.1;
        }
        
        .contact .section-title {
            color: var(--white);
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-box {
            padding: 30px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .contact-box:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .contact-box h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-box h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .contact-box p {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .contact-box a {
            color: var(--white);
            border-bottom: 1px dashed rgba(255,255,255,0.5);
        }
        
        .contact-box a:hover {
            border-bottom-color: var(--white);
        }
        
        /* Related links section */
        .related-links {
            background-color: var(--light-color);
            position: relative;
        }
        
        .related-content {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .related-content h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }
        
        .related-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .related-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .related-content ul {
            margin-bottom: 30px;
        }
        
        .related-content ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .related-content ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            opacity: 0.05;
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .testimonial-box {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-box::before {
            content: '"';
            position: absolute;
            top: 0;
            left: 10px;
            font-size: 5rem;
            font-family: Georgia, serif;
            color: var(--accent-color);
            opacity: 0.1;
            line-height: 1;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gray);
            margin-right: 15px;
            overflow: hidden;
        }
        
        .testimonial-name {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .testimonial-role {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        /* Call to action */
        .cta {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: #ccc;
            padding: 60px 0 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a::before {
            content: '›';
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
            padding-left: 20px;
        }
        
        .footer-links a:hover::before {
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            list-style: none;
            margin-top: 20px;
        }
        
        .social-links li {
            margin-right: 15px;
        }
        
        .social-links a {
            display: block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright {
            font-size: 0.9rem;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .news-list, .features-container, .pricing-container, .testimonials-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            
            .nav-list {
                display: none;
                flex-direction: column;
                align-items: center;
                padding: 15px 0;
            }
            
            .nav-list.active {
                display: flex;
            }
            
            .nav-list li {
                margin: 5px 0;
                width: 100%;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .feature-box, .pricing-box, .testimonial-box {
                padding: 25px 20px;
            }
            
            .contact-info, .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                font-size: 2rem;
            }
            
            .tagline {
                font-size: 1rem;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.6rem;
                margin-bottom: 40px;
            }
            
            .news-list, .features-container, .pricing-container, .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .related-content {
                padding: 25px 20px;
            }
        }
    
/* --- добавлено при причёсывании 26.07.2026 --- */
/* у hero не было ни фона, ни картинки - просто серая заливка. Ставим фото клуба
   с затемнением, чтобы белый текст читался на любом кадре */
.hero {
    background-image: linear-gradient(rgba(0,26,51,.72), rgba(0,26,51,.72)), url('/img/hero-club.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.feature-icon i { line-height: 1; }
.hero-note { margin-top: 14px; font-size: .95rem; opacity: .9; }
figure.ph { margin: 0 0 24px; }
figure.ph img { width: 100%; height: auto; border-radius: 10px; display: block; }
figure.ph figcaption { font-size: .9rem; color: var(--text-light); margin-top: 8px; }
.cards3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 30px; }
.lcard { display: block; background: var(--white); border: 1px solid var(--gray); border-radius: 10px;
         padding: 22px; color: var(--text-color); transition: transform .25s, box-shadow .25s; }
.lcard:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.10); }
.lcard-ico { display: block; font-size: 1.9rem; color: var(--secondary-color); margin-bottom: 12px; }
.lcard strong { display: block; color: var(--primary-color); font-size: 1.1rem; margin-bottom: 8px; }
.lcard span { color: var(--text-light); font-size: .95rem; }
.linklist { list-style: none; margin: 0 0 22px; }
.linklist li { padding: 12px 0; border-top: 1px solid var(--gray); }
.linklist li:first-child { border-top: 0; }
.linklist i { color: var(--secondary-color); width: 22px; }
.linklist b { color: var(--primary-color); }
.linklist span { display: block; color: var(--text-light); font-size: .94rem; margin-top: 3px; }
.crumbs { padding: 14px 0; font-size: .9rem; color: var(--text-light); }
.crumbs a { color: var(--text-light); }
.page-head { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
             color: var(--white); padding: 46px 0; }
.page-head h1 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); }
.page-head p { margin-top: 10px; opacity: .92; max-width: 720px; }
.social-links i { font-size: 1.05rem; }
/* меню: страховка от разъезжания. На узких экранах между планшетом и десктопом сжимаем
   отступы, а не переносим строку; nowrap не даёт пункту разорваться пополам */
.nav-list li a { white-space: nowrap; }
@media (max-width: 1100px) { .nav-list a { padding: 13px 13px; } }
@media (max-width: 900px)  { .nav-list a { padding: 12px 9px; font-size: .95rem; } }
/* логотип во внутренних страницах - ссылка, а не заголовок: второй h1 на странице
   размывает главный заголовок для поисковика */
.logo-link { display: inline-block; color: var(--white); }
.logo-text { font-size: 1.6rem; font-weight: 700; color: var(--white); }
@media (max-width: 600px) { .page-head { padding: 32px 0; } }
