* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 5rem;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(123, 166, 204, 0.6));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
    position: relative;
}

nav a:hover,
nav a.active {
    opacity: 0.8;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}

.hero {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 150px 2rem 80px;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-feature i {
    color: #fff;
    font-size: 1.3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #7BA6CC;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7BA6CC;
}

.service-icon i {
    font-size: 3rem;
}

.service-card h3 {
    color: #7BA6CC;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(123, 166, 204, 0.3);
}

.badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #7BA6CC;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: bold;
}

.pricing-header {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
}

.currency {
    font-size: 1.2rem;
}

.period {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    padding: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: #7BA6CC;
}

.btn-pricing {
    display: block;
    margin: 0 2rem 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(123, 166, 204, 0.4);
}

.pricing-calculator {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.calc-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calc-section label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #7BA6CC 0%, #5a8ab8 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #7BA6CC;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(123, 166, 204, 0.3);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid #7BA6CC;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(123, 166, 204, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #999;
}

.slider-info {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.radio-label:hover,
.checkbox-label:hover {
    background: #f0f7fc;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #7BA6CC;
}

.radio-label span,
.checkbox-label span {
    font-size: 0.95rem;
    color: #333;
}

.calc-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    opacity: 0.9;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.5rem 0;
}

.summary-note {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.calc-summary .btn {
    display: block;
    text-align: center;
    padding: 1rem;
    background: white;
    color: #7BA6CC;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s;
}

.calc-summary .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-us {
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.2);
}

.why-card i {
    font-size: 3rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: #7BA6CC;
    margin-bottom: 0.5rem;
}

.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(123, 166, 204, 0.2);
}

.info-icon {
    font-size: 1.5rem;
    color: #7BA6CC;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7fc;
    border-radius: 50%;
}

.info-item h4 {
    color: #7BA6CC;
    margin-bottom: 0.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7BA6CC;
    box-shadow: 0 0 0 3px rgba(123, 166, 204, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123, 166, 204, 0.3);
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #7BA6CC;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 5rem;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 12px rgba(123, 166, 204, 0.6));
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.page-header {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 150px 2rem 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-company {
    background: white;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-intro h2 {
    color: #7BA6CC;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.2);
}

.stat-card i {
    font-size: 3rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #7BA6CC;
    margin-bottom: 0.5rem;
}

.team {
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.3);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.team-member h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #7BA6CC;
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-cert {
    background: #f0f7fc;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #7BA6CC;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.certifications {
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.2);
}

.cert-card i {
    font-size: 3rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: #7BA6CC;
    margin-bottom: 0.5rem;
}

.values {
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.2);
}

.value-card i {
    font-size: 3rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #7BA6CC;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: white;
    color: #7BA6CC;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .service-grid,
    .pricing-grid,
    .why-grid,
    .team-grid,
    .cert-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease;
}

.modal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #7BA6CC;
    font-size: 1.8rem;
}

.modal-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    box-sizing: border-box;
    border: 5px solid #7BA6CC;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}

.check-icon i {
    font-size: 50px;
    color: #7BA6CC;
    animation: fadeInCheck 0.6s ease-out 0.3s both;
}

.icon-line {
    display: none;
}

.line-tip {
    display: none;
}

.line-long {
    display: none;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInCheck {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes drawLineTip {
    0% {
        width: 0;
        left: 30px;
        opacity: 0;
    }
    100% {
        width: 20px;
        left: 30px;
        opacity: 1;
    }
}

@keyframes drawLineLong {
    0% {
        width: 0;
        right: 25px;
        opacity: 0;
    }
    100% {
        width: 42px;
        right: 25px;
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOutUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-30px);
        opacity: 0;
    }
}

.modal.hide {
    animation: fadeOutUp 0.4s ease-out;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    opacity: 0;
    transform: translateX(450px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
}

.notification-close:hover {
    opacity: 1;
}

.notification-message {
    font-size: 13px;
    line-height: 1.5;
    margin-left: 32px;
    white-space: pre-line;
}

.notification-error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.notification-error .notification-icon {
    color: #fff;
}

.notification-info {
    background: linear-gradient(135deg, #4ecdc4 0%, #3db5a6 100%);
    color: white;
}

.notification-info .notification-icon {
    color: #fff;
}

input.error,
textarea.error {
    border-color: #ff6b6b !important;
    background-color: #fff5f5 !important;
    transition: border-color 0.2s, background-color 0.2s;
}

input.error::placeholder,
textarea.error::placeholder {
    color: #ff6b6b;
}

.bonuses-main {
    background: #f8f9fa;
    padding: 4rem 0;
}

.bonus-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.bonus-intro h2 {
    color: #7BA6CC;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.bonuses-steps-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bonus-step-large {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(123, 166, 204, 0.25), 0 0 0 1px rgba(123, 166, 204, 0.1);
    transition: all 0.3s;
    border: 2px solid rgba(123, 166, 204, 0.08);
}

.bonus-step-large:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(123, 166, 204, 0.3), 0 0 0 2px rgba(123, 166, 204, 0.15);
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 100%);
}

.step-number-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(123, 166, 204, 0.3);
}

.step-icon-large {
    font-size: 3.5rem;
    color: #7BA6CC;
    margin-bottom: 1.5rem;
}

.bonus-step-large h3 {
    color: #5a8ab8;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.bonus-step-large p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.bonus-benefits {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bonus-benefits h2 {
    color: #7BA6CC;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.benefit-card:hover i {
    color: white;
}

.benefit-card h3 {
    color: #7BA6CC;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-card:hover h3 {
    color: white;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}



.bonus-faq {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.bonus-faq h2 {
    color: #7BA6CC;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    border-left: 4px solid #7BA6CC;
    border-radius: 5px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(123, 166, 204, 0.1) 0%, rgba(90, 138, 184, 0.1) 100%);
    border-left-color: #5a8ab8;
    box-shadow: 0 3px 15px rgba(123, 166, 204, 0.2);
}

.faq-item h4 {
    color: #7BA6CC;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bonus-cta-large {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.bonus-cta-large h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.bonus-cta-large p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.bonus-cta-large .btn {
    background: white;
    color: #7BA6CC;
    font-weight: bold;
}

.promotions-main {
    background: #f8f9fa;
    padding: 4rem 0;
}

.promo-hero {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(123, 166, 204, 0.2);
}

.promo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.promo-highlight {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.promo-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.promo-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-cta .btn {
    background: white;
    color: #7BA6CC;
    font-weight: bold;
    width: fit-content;
}

.promo-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.promo-icon {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-includes {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.promo-includes h2 {
    color: #7BA6CC;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.promo-includes-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.include-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.include-card:hover {
    border-top-color: #7BA6CC;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 166, 204, 0.15);
}

.include-icon {
    font-size: 2.5rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.include-card h3 {
    color: #7BA6CC;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.include-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.promo-who {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.promo-who h2 {
    color: #7BA6CC;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.who-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.who-card:hover {
    border-color: #7BA6CC;
    box-shadow: 0 8px 25px rgba(123, 166, 204, 0.15);
    transform: translateY(-5px);
}

.who-icon {
    font-size: 2.5rem;
    color: #7BA6CC;
    margin-bottom: 1rem;
}

.who-card h3 {
    color: #7BA6CC;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.who-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.promo-faq {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.promo-faq h2 {
    color: #7BA6CC;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.promo-terms {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.promo-terms h2 {
    color: #7BA6CC;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-left: 4px solid #7BA6CC;
    border-radius: 5px;
    color: #333;
    line-height: 1.6;
    transition: all 0.3s;
}

.terms-list li:hover {
    background: linear-gradient(135deg, rgba(123, 166, 204, 0.1) 0%, rgba(90, 138, 184, 0.1) 100%);
    padding-left: 1.5rem;
}

.terms-list li::before {
    content: "✓ ";
    color: #7BA6CC;
    font-weight: bold;
    margin-right: 0.5rem;
}

.promo-cta-large {
    background: linear-gradient(135deg, #7BA6CC 0%, #5a8ab8 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.promo-cta-large h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.promo-cta-large p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.promo-cta-large .btn {
    background: white;
    color: #7BA6CC;
    font-weight: bold;
}

@media (max-width: 768px) {
    .promo-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .promo-hero .promo-icon {
        font-size: 4rem;
    }
}

