/* ===== HERO CTA COMPONENT ===== */
.hero-cta__features {
gap: 5px !important;
}

.hero-cta {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3.75rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    opacity: 0.95;
    z-index: 1;
}

.hero-cta > * {
    position: relative;
    z-index: 2;
}

/* ===== ЦВЕТОВЫЕ СХЕМЫ ===== */
.hero-cta--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    --primary-color: #ffffff;
    --secondary-color: #e0e7ff;
    --accent-color: #fbbf24;
    --text-color: #ffffff;
    --button-bg: #fbbf24;
    --button-hover-bg: #f59e0b;
}

.hero-cta--success {
    background: linear-gradient(135deg, #18bb44 0%, #16a838 100%);
    color: white;
    --primary-color: #ffffff;
    --secondary-color: #d1fae5;
    --accent-color: #fbbf24;
    --text-color: #ffffff;
    --button-bg: #ffffff;
    --button-hover-bg: #f3f4f6;
}

.hero-cta--dark {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    --primary-color: #ffffff;
    --secondary-color: #e5e7eb;
    --accent-color: #18bb44;
    --text-color: #ffffff;
    --button-bg: #18bb44;
    --button-hover-bg: #16a838;
}

.hero-cta--gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    --primary-color: #ffffff;
    --secondary-color: #fae8ff;
    --accent-color: #fbbf24;
    --text-color: #ffffff;
    --button-bg: #ffffff;
    --button-hover-bg: #f3f4f6;
}

.hero-cta--brand {
    background: linear-gradient(145deg, rgba(24, 187, 68, 1) 0%, rgba(0, 0, 0, 0.85) 100%);
    color: white;
    --primary-color: #ffffff;
    --secondary-color: #d1fae5;
    --accent-color: #22c55e;
    --text-color: #ffffff;
    --button-bg: #ffffff;
    --button-hover-bg: #e5e7eb;
}

.hero-cta--light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1f2937;
    --primary-color: #1f2937;
    --secondary-color: #6b7280;
    --accent-color: #18bb44;
    --text-color: #1f2937;
    --button-bg: #18bb44;
    --button-hover-bg: #16a838;
}

/* Текстура для brand темы */
.hero-cta--brand::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-size: 182px;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

/* ===== КОНТЕНТ ===== */
.hero-cta__content {
    position: relative;
    z-index: 2;
}

.hero-cta__content--centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-cta__urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 59, 48, 0.15);
    color: #ff3b30;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 59, 48, 0.3);
    animation: urgency-pulse 2s ease-in-out infinite;
}

.hero-cta--light .hero-cta__urgency {
    background: rgba(255, 59, 48, 0.1);
}

@keyframes urgency-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 15px rgba(255, 59, 48, 0.2);
    }
    50% { 
        transform: scale(1.03); 
        box-shadow: 0 6px 20px rgba(255, 59, 48, 0.3);
    }
}

.hero-cta__urgency-icon {
    font-size: 1.125rem;
    animation: lightning 1s ease-in-out infinite alternate;
}

@keyframes lightning {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.1); }
}

.hero-cta__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.hero-cta--light .hero-cta__title {
    background: linear-gradient(135deg, #1f2937, #18bb44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta__subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-cta__description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-color);
    max-width: 800px;
}

.hero-cta__content--centered .hero-cta__description {
    margin-left: auto;
    margin-right: auto;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.hero-cta__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-cta__features--centered {
    justify-content: center;
}

.hero-cta__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.hero-cta--light .hero-cta__feature {
    background: rgba(24, 187, 68, 0.08);
    border-color: rgba(24, 187, 68, 0.2);
}

.hero-cta__feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta--light .hero-cta__feature:hover {
    background: rgba(24, 187, 68, 0.12);
}

.hero-cta__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--accent-color);
    color: #1f2937;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

.hero-cta__feature-text {
    white-space: nowrap;
}

/* ===== КНОПКИ CTA ===== */
.hero-cta__actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.hero-cta__actions--centered {
    justify-content: center;
}

.hero-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta__button--primary {
    background: var(--button-bg);
    color: #1f2937;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta--light .hero-cta__button--primary {
    color: white;
}

.hero-cta__button--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta__button--primary:hover::before {
    left: 100%;
}

.hero-cta__button--primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.hero-cta__button--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta--light .hero-cta__button--secondary {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-cta__button--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta--light .hero-cta__button--secondary:hover {
    background: var(--accent-color);
    color: white;
}

.hero-cta__button-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

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

/* ===== ГАРАНТИЯ ===== */
.hero-cta__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-cta__guarantee-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
}

/* ===== ИЗОБРАЖЕНИЕ ===== */
.hero-cta__image-container {
    position: relative;
    text-align: center;
}

.hero-cta__image {
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.hero-cta__image:hover {
    transform: scale(1.03) translateY(-5px);
}

.hero-cta__image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-cta__decoration-circle {
    position: absolute;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.4;
}

.hero-cta__decoration-circle--1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
    animation: rotate-decoration 12s linear infinite;
}

.hero-cta__decoration-circle--2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
    animation: rotate-decoration 10s linear infinite reverse;
}

@keyframes rotate-decoration {
    from { 
        transform: rotate(0deg); 
        opacity: 0.4;
    }
    50% {
        opacity: 0.2;
    }
    to { 
        transform: rotate(360deg); 
        opacity: 0.4;
    }
}

/* ===== ИКОНКИ КОНТАКТОВ ===== */
.hero-cta__contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero-cta--light .hero-cta__contact-icon {
    background: rgba(24, 187, 68, 0.1);
    border-color: rgba(24, 187, 68, 0.2);
    color: var(--accent-color);
}

.hero-cta__contact-item:hover .hero-cta__contact-icon {
    transform: scale(1.1);
    background: var(--accent-color);
    color: white;
}

/* ===== НИЖНИЙ КОНТЕНТ ===== */
.hero-cta__bottom {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.hero-cta--light .hero-cta__bottom {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.hero-cta__social-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-color);
}

.hero-cta__social-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-cta__testimonial {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-cta--light .hero-cta__testimonial {
    background: rgba(24, 187, 68, 0.05);
    border-color: rgba(24, 187, 68, 0.15);
}

.hero-cta__testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-cta__testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    opacity: 0.95;
    color: var(--text-color);
}

.hero-cta__testimonial-author {
    font-weight: 600;
    opacity: 0.9;
    font-size: 1.05rem;
    color: var(--text-color);
}

.hero-cta__testimonial-company {
    font-weight: 400;
    opacity: 0.75;
    font-size: 0.95rem;
    color: var(--text-color);
}

.hero-cta__contacts {
    opacity: 0.9;
}

.hero-cta__contacts-title {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-weight: 500;
    color: var(--text-color);
}

.hero-cta__contacts-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-cta__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-cta__contact-item:hover {
    color: var(--accent-color);
    text-decoration: none;
    transform: translateY(-3px);
}

/* ===== АНИМАЦИИ ===== */
.hero-cta--animated .hero-cta__content {
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-cta--animated .hero-cta__image {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: slideInScale 1s ease-out 0.5s both;
}

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

@keyframes slideInScale {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-cta--animated .hero-cta__feature {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInFeature 0.6s ease-out forwards;
}

.hero-cta--animated .hero-cta__feature:nth-child(1) { animation-delay: 0.8s; }
.hero-cta--animated .hero-cta__feature:nth-child(2) { animation-delay: 0.9s; }
.hero-cta--animated .hero-cta__feature:nth-child(3) { animation-delay: 1.0s; }
.hero-cta--animated .hero-cta__feature:nth-child(4) { animation-delay: 1.1s; }
.hero-cta--animated .hero-cta__feature:nth-child(5) { animation-delay: 1.2s; }

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

/* ===== КОМПАКТНЫЙ МАКЕТ ===== */
.hero-cta--compact {
    padding: 3rem 2rem;
    min-height: 50vh;
}

.hero-cta--compact .hero-cta__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-cta--compact .hero-cta__description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.hero-cta--compact .hero-cta__features {
    margin-bottom: 2rem;
}

.hero-cta--compact .hero-cta__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

/* ===== ПОЛНАЯ ШИРИНА ===== */
.hero-cta--fullwidth {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-cta--fullwidth .hero-cta__title {
    font-size: 4.5rem;
}

.hero-cta--fullwidth .hero-cta__description {
    font-size: 1.5rem;
}

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

/* Планшеты */
@media (max-width: 992px) {
    .hero-cta {
        padding: 3.5rem 1.5rem;
        min-height: 60vh;
    }

    .hero-cta .order-1 {
        order: 1 !important;
    }
    
    .hero-cta .order-2 {
        order: 2 !important;
    }

    .hero-cta__title {
        font-size: 2.75rem;
    }

    .hero-cta__subtitle {
        font-size: 1.5rem;
    }

    .hero-cta__description {
        font-size: 1.125rem;
    }
    
    .hero-cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-cta__button {
        justify-content: center;
    }
    
    .hero-cta__features {
        justify-content: center;
    }

    .hero-cta__contacts-list {
        gap: 1.5rem;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .hero-cta {
        padding: 3rem 1.25rem;
        min-height: 55vh;
        background-attachment: scroll;
        border-radius: 1rem;
    }
    
    .hero-cta__title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-cta__subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta__description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta__urgency {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .hero-cta__button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta__features {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .hero-cta__feature {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1.25rem;
    }

    .hero-cta__image {
        border-radius: 1.5rem;
    }

    .hero-cta__decoration-circle--1 {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }

    .hero-cta__decoration-circle--2 {
        width: 60px;
        height: 60px;
        bottom: -10px;
        left: -10px;
    }

    .hero-cta__bottom {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .hero-cta__testimonial {
        padding: 2rem 1.5rem;
    }

    .hero-cta__testimonial-quote {
        font-size: 1.05rem;
    }
    
    .hero-cta__contacts-list {
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-cta__contact-item {
        justify-content: center;
    }

    .hero-cta__contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    /* Компактный макет на мобильных */
    .hero-cta--compact {
        padding: 2.5rem 1.25rem;
    }

    .hero-cta--compact .hero-cta__title {
        font-size: 2rem;
    }

    /* Полная ширина на мобильных */
    .hero-cta--fullwidth {
        min-height: 100vh;
    }

    .hero-cta--fullwidth .hero-cta__title {
        font-size: 2.5rem;
    }

    .hero-cta--fullwidth .hero-cta__description {
        font-size: 1.125rem;
    }
}

/* Маленькие мобильные */
@media (max-width: 480px) {
    .hero-cta {
        padding: 2.5rem 1rem;
        min-height: 50vh;
    }

    .hero-cta__title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-cta__subtitle {
        font-size: 1.125rem;
    }

    .hero-cta__description {
        font-size: 0.95rem;
    }

    .hero-cta__urgency {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .hero-cta__button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-cta__feature {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    .hero-cta__feature-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .hero-cta__testimonial {
        padding: 1.75rem 1.25rem;
    }

    .hero-cta__testimonial-quote {
        font-size: 1rem;
    }

    .hero-cta__contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-cta__contact-item {
        font-size: 0.95rem;
    }

    .hero-cta--compact .hero-cta__title {
        font-size: 1.75rem;
    }

    .hero-cta--fullwidth .hero-cta__title {
        font-size: 2.25rem;
    }

    .hero-cta--fullwidth .hero-cta__description {
        font-size: 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-cta {
        box-shadow: none;
        page-break-inside: avoid;
        background: white !important;
        color: black !important;
    }

    .hero-cta::before {
        display: none;
    }

    .hero-cta__button:hover,
    .hero-cta__feature:hover {
        transform: none;
    }

    .hero-cta__decoration-circle {
        display: none;
    }
}