/* ===== КОМПОНЕНТИ DERMASAFE ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    background: var(--primary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

/* Картки */
.card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-dark);
}

.card p {
    font-size: 14px;
    color: #6a6a6a;
}

/* Сітка карток */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Секції */
.section {
    padding: 70px 60px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}

.section h2 span {
    color: var(--accent);
    font-weight: 700;
}

/* Кроки (steps) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.step {
    border: 2px solid var(--accent);
    padding: 35px;
    border-radius: 16px;
    transition: 0.3s;
    background: var(--white);
}

.step:hover {
    background: #f1f7f6;
}

.step h3 {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 10px;
}

.step p {
    font-size: 18px;
    font-weight: 500;
}

/* Адаптивність */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step {
        padding: 25px;
    }
    
    .step h3 {
        font-size: 28px;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .section h2 {
        font-size: 22px;
    }
} 