/* Pricing section */
.pricing-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.pricing-section h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    text-align: center;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.student-discount {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e6f9f0, #f0fdf4);
    border: 1px solid #10B981;
    border-radius: 20px;
    color: #059669;
    font-size: 1rem;
    font-weight: 500;
}

/* Cenová informace */
.price-note {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    text-align: center;
}

.price-note .material-icons {
    font-size: 2rem;
    color: #059669;
    display: block;
    margin-bottom: 0.8rem;
}

.price-note-text {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.countdown-item {
    background: white;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    min-width: 70px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Proces poradenství */
.pricing-process {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-process h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 30px);
    right: calc(37.5% + 30px);
    height: 3px;
    background: #0F3F63;
    z-index: 1;
    border-radius: 2px;
}

.process-steps::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(62.5% + 30px);
    right: calc(12.5% + 30px);
    height: 3px;
    background: #25A9EA;
    z-index: 1;
    border-radius: 2px;
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(203, 213, 224, 0.3);
    border: 3px solid white;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    border: 3px solid white;
}

.step-title {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
    min-height: 1.8em;
    line-height: 1.4;

    display: flex;
    justify-content: center; 
    text-align: center;
}

.step-price {
    color: #0F3F63;
    font-weight: 700;
    font-size: 1rem;
    background: #E6F5FC;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Služby grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-category {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.category-header {
    background: #0F3F63;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.category-header h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.category-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
}

.services-list {
    padding: 1.5rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--dark-gray);
    flex: 1;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.service-price {
    color: #0F3F63;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: right;
    background: #E6F5FC;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* Highlight box */
.highlight-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0 0 0;
    text-align: center;
}

.highlight-box .material-icons {
    font-size: 3rem;
    color: var(--light-blue);
    margin-bottom: 1rem;
}

.highlight-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Původní pricing grid - zachováváme pro kompatibilitu */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--light-blue);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price .currency {
    font-size: 1.1rem;
    color: #666;
    margin-left: 0.3rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #444;
    font-size: 1.1rem;
}

.pricing-features .material-icons {
    color: var(--light-blue);
    font-size: 1.2rem;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .pricing-grid {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }

    .process-steps::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .countdown-wrapper {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .price-note {
        padding: 1.25rem;
    }
    
    .price-note-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .countdown-wrapper {
        gap: 0.4rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 0.5rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
}