:root {
    --primary-color: #ff7b4d;
    --accent-color: #ffb84d;
    --gradient-start: #ff5e7d;
    --gradient-end: #ff9a5a;
    --text-color: #ffffff;
    --dark-text: #333333;
    --timer-bg: rgba(0, 0, 0, 0.2);
}

.hero-section {
    background: linear-gradient(135deg, #2A2A4E 0%, #432C4A 50%, #4A2063 100%);
    padding: 80px 0;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    max-width: 100vw;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 40px;
    flex-direction: row;
    gap: 40px;
    box-sizing: border-box;
}

.hero-content {
    width: 55%;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-image {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-features {
    margin-bottom: 35px;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features-item {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hero-features-item:before {
    content: "✓";
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.hero-price {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.price-old {
    font-size: 24px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 15px;
}

.price-new {
    font-size: 36px;
    font-weight: 700;
}

.price-discount {
    background-color: var(--accent-color);
    color: var(--dark-text);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    margin-left: 15px;
    font-size: 18px;
}

.hero-timer {
    margin-bottom: 35px;
}

.timer-title {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.timer-display {
    display: flex;
    gap: 10px;
}

.timer-box {
    background-color: var(--timer-bg);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 65px;
}

.timer-value {
    font-size: 28px;
    font-weight: 700;
}

.timer-label {
    font-size: 12px;
    opacity: 0.7;
}

.hero-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 51, 0.6);
    cursor: pointer;
}

@media (max-width: 1200px) {
    .hero-container {
        max-width: 960px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .price-old {
        font-size: 22px;
    }

    .price-new {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content, .hero-image {
        width: 100%;
        padding: 30px;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-content {
        order: 2;
    }

    .hero-title {
        font-size: 36px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 18px;
        text-align: center;
    }

    .hero-features-list {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-price {
        justify-content: center;
    }

    .hero-timer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }

    .hero-container {
        padding: 0 15px;
        gap: 20px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-features-item {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .price-old {
        font-size: 20px;
    }

    .price-new {
        font-size: 28px;
    }

    .price-discount {
        font-size: 16px;
    }

    .timer-box {
        min-width: 55px;
        padding: 8px 12px;
    }

    .timer-value {
        font-size: 24px;
    }

    .timer-label {
        font-size: 11px;
    }

    .hero-button {
        font-size: 16px;
        padding: 12px 30px;
    }

    /* Advantages section responsive */
    .advantages-section {
        padding: 60px 0;
    }

    .advantages-container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .advantage-item {
        padding: 15px;
    }

    .advantage-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .advantage-icon {
        width: 20px;
        height: 20px;
    }

    .advantage-title {
        font-size: 16px;
    }

    .advantage-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 15px 0;
        min-height: 100vh;
        /* display: flex; */
        align-items: center;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 20px 15px;
        width: calc(100% - 30px);
        margin: 0 15px;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: center;
    }

    .hero-features {
        margin-bottom: 20px;
    }

    .hero-features-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .hero-features-item {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-features-item:last-child {
        margin-bottom: 0;
    }

    .hero-features-item:before {
        margin-right: 8px;
        font-size: 16px;
    }

    .hero-price {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
    }

    .price-old {
        font-size: 16px;
        margin: 0;
        opacity: 0.7;
    }

    .price-new {
        font-size: 28px;
        margin: 0;
    }

    .price-discount {
        font-size: 14px;
        padding: 3px 8px;
        margin: 0;
    }

    .hero-timer {
        margin-bottom: 20px;
    }

    .timer-title {
        font-size: 14px;
        margin-bottom: 8px;
        text-align: center;
    }

    .timer-display {
        gap: 6px;
        justify-content: center;
    }

    .timer-box {
        min-width: 45px;
        padding: 6px 8px;
    }

    .timer-value {
        font-size: 20px;
    }

    .timer-label {
        font-size: 10px;
    }

    .hero-button {
        width: 100%;
        max-width: none;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 25px;
    }

    /* Advantages section styling */
    .advantages-section {
        padding: 40px 0;
    }

    .advantages-container {
        padding: 20px 15px;
        margin: 0 15px;
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .advantages-container::before {
        display: none !important;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .advantage-item {
        padding: 16px 0;
        gap: 16px;
    }

    .advantage-content {
        flex: 1;
    }

    .advantage-title {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #ffffff;
    }

    .advantage-description {
        font-size: 14px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 600;
    }
}

@media (max-width: 360px) {
    .hero-section {
        padding: 10px 0;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-content {
        padding: 15px 12px;
        width: calc(100% - 20px);
        margin: 0 10px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-features-item {
        font-size: 13px;
    }

    .price-old {
        font-size: 14px;
    }

    .price-new {
        font-size: 24px;
    }

    .price-discount {
        font-size: 12px;
    }

    .timer-box {
        min-width: 40px;
        padding: 5px 6px;
    }

    .timer-value {
        font-size: 18px;
    }

    .timer-label {
        font-size: 9px;
    }

    .hero-button {
        padding: 10px 15px;
        font-size: 15px;
    }

    /* Advantages section styling */
    .advantages-container {
        padding: 15px 12px;
        margin: 0 10px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .advantages-grid {
        gap: 12px;
    }

    .advantage-item {
        padding: 10px 0;
        gap: 10px;
    }

    .advantage-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .advantage-icon {
        width: 18px;
        height: 18px;
    }

    .advantage-title {
        font-size: 16px;
    }

    .advantage-description {
        font-size: 13px;
        line-height: 1.35;
    }
}

.hero-section::after {
    display: none;
}

.dark-section {
    background: #191928;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.advantages-section {
    padding: 40px 0 0 0;
    position: relative;
    width: 100%;
}

.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(74, 32, 99, 0.4) 0%,
        rgba(45, 27, 77, 0.4) 50%,
        rgba(31, 31, 58, 0.4) 100%
    );
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.advantages-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 123, 77, 0.05) 0%,
        rgba(255, 184, 77, 0.05) 50%,
        rgba(255, 123, 77, 0.05) 100%
    );
    border-radius: 30px;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.advantages-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.advantage-icon-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.advantage-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.advantage-content {
    flex: 1;
}

.advantage-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 6px;
    padding: 4px 8px;
    background: rgba(255, 123, 77, 0.1);
    border-radius: 20px;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.advantage-description {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.advantage-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.advantage-item:hover .advantage-icon-wrapper {
    transform: scale(1.1);
    background: rgba(255, 123, 77, 0.1);
    cursor: pointer;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

.testimonials-section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.testimonials-section::before,
.testimonials-section::after {
    display: none;
}

.testimonials-title {
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    margin: 10px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.testimonial-card:hover::before {
    left: 100%;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.testimonial-name {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    overflow-y: auto;
    padding-right: 10px;
}

.testimonial-content::-webkit-scrollbar {
    width: 4px;
}

.testimonial-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.testimonial-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
}

.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.owl-carousel .owl-nav {
    display: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active span {
    background: #fff;
    transform: scale(1.2);
}

/* Стили для навигации карусели */
.owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    cursor: pointer;
}

.owl-dots button.owl-dot span {
    background: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.owl-dots button.owl-dot.active span {
    background: #fff !important;
    transform: scale(1.2);
    cursor: pointer;
}

@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .testimonials-section {
        padding: 0 0;
    }
    
    .testimonial-card {
        min-height: 280px;
        padding: 25px;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonial-name {
        font-size: 20px;
    }
    
    .testimonial-stars {
        font-size: 20px;
    }
    
    .testimonial-content {
        font-size: 15px;
    }
}

/* Footer Styles */
.footer {
    background: #191928;
    padding: 40px 0;
    color: #fff;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 500px;
}

.footer-schedule,
.footer-company,
.footer-area {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.footer-contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    line-height: 1.4;
}

.footer-contact-link:hover {
    color: var(--accent-color);
    cursor: pointer;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 500px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.footer-link:hover {
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
} 