/*
Theme Name: Resource
Author: Alfataks
Author URI: https://t.me/alfataks
Version: 1
Description: Required plugins: Yoast SEO, ACF
*/

/* styles.css */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #142328;
    --primary-light: #0c1027;
    --primary-dark: #000000;
    --accent: #730f18;
    --accent-light: #c81423;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #9e9e9e;
    --gray-dark: #424242;
    --text: #212121;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

article {
    margin: 20px 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
}

h3 {
    font-size: clamp(18px, 3vw, 24px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header {
    top: var(--wp-admin--admin-bar--height);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    height: 60px;
    width: 82px;
}

footer .logo {
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--accent);
}

.header-phone {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 999;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.mobile-phone {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
}

.hero-form-wrapper {
    position: relative;
}

.hero-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.hero-form h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form input[type="text"],
.hero-form input[type="tel"] {
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    color: var(--text);
}

.hero-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: block;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
    color: var(--text);
}

.radio-label:hover {
    background: var(--gray-light);
}

.radio-label input {
    accent-color: var(--accent);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-dark);
}

/* Directions Section */
.directions {
    padding: 80px 0;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.direction-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.direction-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.direction-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.direction-card h3 {
    font-size: 16px;
    color: var(--primary);
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.advantages .section-title {
    color: var(--white);
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: var(--gray-light);
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.calc-step {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.calc-step h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.select-wrapper select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
}

#otherCity, #otherProfession {
    margin-top: 15px;
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
}

.profession-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.prof-tab {
    padding: 10px 20px;
    background: var(--gray-light);
    border: none;
    border-radius: 25px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.prof-tab:hover {
    background: var(--primary-light);
    color: var(--white);
}

.prof-tab.active {
    background: var(--primary);
    color: var(--white);
}

.prof-list {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.prof-list.active {
    display: flex;
}

.checkbox-label {
    display: flex;
    flex-flow: column nowrap;
    gap: 12px;
}

.checkbox-label span {
    padding: 12px 15px;
    background: var(--gray-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
}

.checkbox-label span:hover {
    background: #e0e0e0;
}

.checkbox-label input {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

.checkbox-label span {
    color: var(--text);
}

.checkbox-label span label {
    display: flex;
    align-items: center;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-option {
    cursor: pointer;
}

.service-option input,
.service-option .wpcf7-list-item-label
{
    display: none;
}


.service-card {
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-option:has(input:checked) .service-card {
    background: var(--primary);
    color: var(--white);
    border-color: var(--accent);
}

.service-card h4 {
    margin-bottom: 5px;
}

.service-card p {
    font-size: 13px;
    opacity: 0.8;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.qty-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

#quantity {
    width: 100px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    padding: 10px;
    font-family: inherit;
}

#quantity:focus {
    outline: none;
    border-color: var(--primary);
}

.calc-contact h3 {
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
}

.calc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.calc-form-grid input {
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
}

.calc-form-grid input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Partners Section */

.partners-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
    position: relative;
}
.partners {
    padding: 20px 0;
}

.partners-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 2rem 0;
    animation: marquee linear infinite;
    will-change: transform;
}

.partners-marquee:hover .partners-logos {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Градиентные края для эффекта затухания */
.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.partner-logo {
    background: var(--gray-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    color: var(--gray);
    font-weight: 500;
    border: 1px solid var(--gray-light);
}

.partner-logo img {
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(175 66 66 / 25%);
    border: 1px solid var(--accent);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    margin-bottom: 10px;
}

.cta-contacts {
    display: flex;
    gap: 20px;
}

.cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-link.telegram {
    background: #0088cc;
    color: var(--white);
}

.cta-icon {
    font-size: 20px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info p {
    margin-top: 15px;
}

.footer-nav-title {
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.footer-contacts a,
.footer-nav a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-contacts a:hover,
.footer-nav a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--gray-light);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--white);
}

.modal-content h3 {
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content input[type="text"],
.modal-content input[type="tel"] {
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.modal-content input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #8bc34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 20px;
}

.success-content p {
    color: var(--gray-dark);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-form-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

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



    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-features {
        text-align: left;
    }

    .directions-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .profession-tabs {
        justify-content: center;
    }

    .calc-form-grid {
        grid-template-columns: 1fr;
    }


    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-contacts {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .calculator-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

}

/* ===================================
   HERO SECTION - СОВРЕМЕННЫЙ ДИЗАЙН
   =================================== */

.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Фоновые элементы */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bg-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image: 
        linear-gradient(90deg, rgba(196, 30, 58, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(196, 30, 58, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ===================================
   ЛЕВАЯ ЧАСТЬ - КОНТЕНТ
   =================================== */

.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Бейдж "Персонал за 2 часа" */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-icon {
    font-size: 16px;
    animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Заголовок */
.hero-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: #c41e3a;
    position: relative;
    display: inline-block;
}

/* Описание */
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 35px 0;
    max-width: 550px;
}

/* Метрики */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
    color: #c41e3a;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

/* Кнопки действий */
.hero-actions {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.5);
}

.btn-secondary.btn-hero {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e0e0e0;
}

.btn-secondary.btn-hero:hover {
    border-color: #c41e3a;
    color: #c41e3a;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: translateX(5px);
}

/* Контакты */
.hero-contacts {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.hero-phone:hover {
    color: #c41e3a;
}

.phone-icon {
    font-size: 22px;
}

.hero-messenger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.hero-messenger:hover {
    transform: translateY(-2px);
}

.messenger-icon {
    display: flex;
    align-items: center;
}

/* ===================================
   ПРАВАЯ ЧАСТЬ - ВИЗУАЛЬНЫЙ БЛОК
   =================================== */

.hero-visual {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.visual-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Статистика сверху */
.visual-stats {
    margin-bottom: 25px;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f0f9ff;
    border: 2px solid #0088cc;
    border-radius: 50px;
    font-size: 14px;
    color: #1a1a1a;
}

.stat-badge strong {
    color: #0088cc;
    font-weight: 700;
}

.stat-indicator {
    width: 10px;
    height: 10px;
    background: #00cc66;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Изображение */
.visual-image {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
}

.visual-image img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: flex;
    flex: 1;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.placeholder-icon {
    margin-bottom: 15px;
    opacity: 0.8;
}

.placeholder-text {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

/* Карточки преимуществ */
.visual-features {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #c41e3a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 13px;
    color: #666;
}

/* Формы сотрудничества */
.cooperation-types {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.coop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    text-align: center;
}

.coop-icon {
    font-size: 28px;
}

.coop-text {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

/* Декоративные элементы */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -80px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.05) 100%);
}

.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, #c41e3a 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
}

.dots-1 {
    top: 50px;
    left: -50px;
}

.dots-2 {
    bottom: 50px;
    right: -50px;
}

/* ===================================
   АДАПТИВНОСТЬ
   =================================== */

@media (max-width: 1200px) {
    .hero-wrapper {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 968px) {
	
	.container {
		width: 100%;
	}
	
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-visual {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .metric-divider {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-metrics {
        padding: 20px;
    }
    
    .metric-value {
        font-size: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .visual-card {
        padding: 25px;
    }
    .hero-contacts {
        justify-content: center;
    }
}

.hidden {
    display: none;
}