/* Hero секции */
.hero {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero p {
    /* font-size: 1.1rem;
    color: #475467;
    max-width: 40rem;
    margin-inline: auto; */
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem;
    margin-inline: auto;
    line-height: 1.7;
}

/* Карточки */
.service-card,
.master-card,
.dashboard-card,
.pain-card {
    border: none;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.08);
}

.dashboard-card {
    margin-bottom: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-card-content {
    flex-grow: 1;
}

.service-card img,
.master-card img {
    border-radius: 1.2rem;
    margin-bottom: 1.25rem;
}

.master-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.master-avatar {
    width: 96px;
    height: 96px;
    border-radius: 1.2rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.badge-soft {
    background: rgba(51, 0, 255, 0.12);
    color: #3300ff;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.service-meta {
    font-size: 0.95rem;
    color: #98a2b3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--brand-muted);
    border-radius: 999px;
    padding: .45rem 1.2rem;
    font-weight: 600;
    color: #475467;
}

/* Кнопки CTA */
.cta-button {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    font-size: 1rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.cta-button:hover {
    background: #ff7b1c;
    border-color: #ff7b1c;
}

/* Badges */
.badge-status {
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Изображения */
.service-card img,
.master-avatar {
    border-radius: 1.2rem;
}

/* Таблицы */
.table-responsive {
    border-radius: 1rem;
    overflow: hidden;
}

/* Формы */
.form-control {
    border-radius: 16px;
    padding: 0.9rem 1.1rem;
}

.form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 0.2rem rgba(51, 0, 255, 0.25);
}

/* Модальные окна */
.modal-content {
    border-radius: 2rem; /* 32px согласно STYLE_GUIDE */
}

/* Статистика */
.stat-card {
    background: linear-gradient(135deg, var(--brand-accent) 0%, #6826dc 100%);
    color: #fff;
    border-radius: 1.2rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-card.stat-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-card.stat-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-card.stat-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Booking items */
.booking-item {
    border-left: 4px solid var(--brand-accent);
    padding-left: 1rem;
}

