:root {
    --bs-primary: #5C9EAD;
    --bs-secondary: #E6B89C;
    --bs-light: #F8F5F2;
    --bs-border-color: #E8E8E8;
    --bs-success: #88A096;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #4A4A4A;
    background-color: var(--bs-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: #3C3C3C;
}

.btn-primary {
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: #4a8b9c;
    --bs-btn-hover-border-color: #4a8b9c;
    --bs-btn-active-bg: #3c7a8a;
    --bs-btn-active-border-color: #3c7a8a;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warm {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #3C3C3C;
}

.btn-warm:hover {
    background-color: #d4a574;
    border-color: #d4a574;
    color: #3C3C3C;
}

.section-padding {
    padding: 80px 0;
}

.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 245, 242, 0.9) 0%, rgba(232, 232, 232, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
    height: 100%;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.pricing-card {
    border-radius: 15px;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.popular {
    border-color: var(--bs-primary);
    box-shadow: 0 10px 30px rgba(92, 158, 173, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    padding: 30px 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bs-primary);
}

.testimonial-card {
    border-left: 4px solid var(--bs-secondary);
    border-radius: 10px;
    background-color: white;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #3C3C3C;
    font-size: 1.2rem;
}

.form-control:focus {
    border-color: var(--bs-success);
    box-shadow: 0 0 0 0.25rem rgba(136, 160, 150, 0.25);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(92, 158, 173, 0.1);
    color: var(--bs-primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(92, 158, 173, 0.25);
    border-color: var(--bs-primary);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(92, 158, 173, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(92, 158, 173, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(92, 158, 173, 0);
    }
}

.guarantee-badge {
    background-color: rgba(136, 160, 150, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

footer {
    background-color: white;
    border-top: 1px solid var(--bs-border-color);
}

.nav-link {
    color: #4A4A4A;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--bs-primary);
}

.navbar-brand {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bs-primary) !important;
}

/* Стили для модального окна оплаты */
.payment-modal .modal-content {
    border-radius: 15px;
    border: none;
}

.payment-modal .modal-header {
    border-bottom: none;
    padding: 30px 30px 10px;
}

.payment-modal .modal-body {
    padding: 10px 30px 30px;
}

.qr-code-container {
    text-align: center;
    padding: 20px;
    background-color: rgba(248, 245, 242, 0.5);
    border-radius: 12px;
    margin: 20px 0;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bs-primary);
    font-weight: 700;
}

.payment-steps {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.payment-steps li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    margin-bottom: 10px;
}

.payment-steps li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-steps li:nth-child(1):before {
    content: "1";
}

.payment-steps li:nth-child(2):before {
    content: "2";
}

.payment-steps li:nth-child(3):before {
    content: "3";
}

.payment-info {
    background-color: rgba(92, 158, 173, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.timer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bs-primary);
    text-align: center;
    margin: 15px 0;
    font-family: 'Nunito', sans-serif;
}

.whatsapp-badge {
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-top: 10px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-method {
    width: 50px;
    height: 30px;
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bs-border-color);
    font-size: 1.2rem;
}

.modal-success {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bs-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2.5rem;
}