/* Pricing Variables */
:root {
    --pricing-primary: #1d18af;
    --pricing-accent: #00A3E0;
    --pricing-light-bg: #F5F7FA;
    --pricing-white: #FFFFFF;
    --pricing-text: #333333;
    --pricing-light-text: #666666;
    --pricing-border: #E5E8ED;
    --pricing-shadow: 0 10px 40px rgba(10, 42, 94, 0.1);
    --pricing-shadow-hover: 0 20px 60px rgba(10, 42, 94, 0.15);
}


/* Pricing Section */
.pricing-section {
    background: var(--pricing-light-bg);
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.pricing-wizard {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Step Progress */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pricing-border);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: var(--pricing-white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px;
    border: 2px solid var(--pricing-border);
    transition: all 0.3s ease;
}

.step.active {
    border-color: var(--pricing-primary);
    background: var(--pricing-primary);
    color: white;
}

.step.completed {
    border-color: var(--pricing-accent);
    background: var(--pricing-accent);
    color: white;
}

.step-number {
    font-weight: 600;
    font-size: 18px;
}

.step-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    white-space: nowrap;
    font-size: 16px;
    color: var(--pricing-text);
    font-weight: 500;
}

/* Form Steps */
.pricing-form {
    background: var(--pricing-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--pricing-shadow);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-form {
        padding: 20px;
    }
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.solution-item {
    position: relative;
    height: 100%;
}

.solution-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.solution-label {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    background: var(--pricing-white);
    border: 2px solid var(--pricing-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.solution-label::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--pricing-border);
    border-radius: 50%;
    background: var(--pricing-white);
    transition: all 0.2s ease;
}

.solution-checkbox:checked + .solution-label::after {
    border-width: 8px;
    border-color: var(--pricing-primary);
}

.solution-checkbox:checked + .solution-label {
    border-color: var(--pricing-primary);
    box-shadow: 0 4px 12px rgba(10, 42, 94, 0.15);
}

.solution-label:hover {
    border-color: var(--pricing-accent);
    box-shadow: 0 2px 8px rgba(0, 163, 224, 0.1);
}

.solution-header {
    margin-bottom: 20px;
    padding-right: 35px;
}

.solution-header h3 {
    margin: 0;
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background: var(--pricing-primary);
    color: white;
}

.badge-secondary {
    background: var(--pricing-accent);
    color: white;
}

.badge-info {
    background: #17a2b8;
    color: white;
}

.solution-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.solution-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-features li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
}

.solution-features li:last-child {
    margin-bottom: 0;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pricing-accent);
}

/* Form Navigation */
.form-navigation {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--pricing-border);
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

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

.btn-primary:hover {
    background: #083a8c;
    box-shadow: 0 2px 8px rgba(10, 42, 94, 0.2);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--pricing-border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pricing-primary);
    box-shadow: 0 0 0 3px rgba(10, 42, 94, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

/* Form Message */
.form-message {
    margin-top: 0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Pricing Info Section */
.pricing-info {
    padding-bottom: 60px;
    background-color: #F5F7FA;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-approach {
    padding: 30px;
    background: var(--pricing-white);
    border-radius: 15px;
    box-shadow: var(--pricing-shadow);
    transition: all 0.2s ease;
}

.pricing-approach:hover {
    box-shadow: 0 4px 12px rgba(10, 42, 94, 0.15);
}

.pricing-approach h2 {
    color: var(--pricing-primary);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-approach p {
    color: var(--pricing-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pricing-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--pricing-text);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.pricing-points li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--pricing-primary);
}

.why-combine {
    padding: 30px;
    background: linear-gradient(135deg, var(--pricing-primary), #1a4b9c);
    border-radius: 15px;
    color: var(--pricing-white);
    transition: all 0.2s ease;
}

.why-combine:hover {
    box-shadow: 0 4px 12px rgba(10, 42, 94, 0.2);
}

.why-combine h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--pricing-white);
}

.why-combine p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--pricing-white);
}

.important-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.important-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pricing-accent);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .pricing-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {

    .breadcrumb__title {
        font-size: 32px;
    }

    .pricing-section {
        padding: 40px 0;
    }

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

    .pricing-wizard {
        padding: 0 15px;
    }

    .step {
        margin: 0 20px;
    }

    .step-label {
        font-size: 12px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .form-message {
        bottom: 10px;
        width: calc(100% - 20px);
        margin: 0 10px;
    }
    
    .solution-label {
        padding: 20px;
    }
    
    .solution-features li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .pricing-info {
        padding: 40px 0;
    }

    .pricing-approach,
    .why-combine {
        padding: 20px;
    }

    .pricing-approach h2 {
        font-size: 24px;
    }

    .why-combine h2 {
        font-size: 20px;
    }

    .pricing-points li {
        font-size: 14px;
    }
} 