/* Главная страница */
.hero-gradient {
    background: linear-gradient(135deg, #CF15D9 0%, #1A27F3 50%, #4F1726 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.pain-points {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.pain-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(16, 24, 40, 0.12);
}

.pain-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #6826dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.solution-card {
    border-left: 4px solid var(--brand-accent);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #ff7b1c 100%);
    color: #fff;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Страница входа мастера */
body.login-page {
    background: linear-gradient(135deg, #CF15D9 0%, #1A27F3 50%, #4F1726 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 2rem; /* 32px согласно STYLE_GUIDE для модальных окон */
    padding: clamp(1.5rem, 5vw, 3.5rem); /* согласно STYLE_GUIDE */
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.login-card .form-control {
    border-radius: 16px;
    border-color: transparent;
    padding: 0.9rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

.login-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-card label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Страница бронирования */
.booking-panel {
    border-radius: 1.5rem;
    background: #fff;
    padding: clamp(1.5rem, 5vw, 3rem);
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.08);
}

/* Расписание мастера */
.glass-panel {
    background: #fff;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.08);
}

.schedule-card {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.08);
}

.schedule-card table {
    margin-bottom: 0;
}

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

.badge-rounded {
    border-radius: 999px;
    padding: .45rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Страница успешной заявки */
.success-card {
    border-radius: 1.5rem;
    background: #fff;
    padding: clamp(1.5rem, 6vw, 3rem);
    box-shadow: 0 25px 60px rgba(16, 24, 40, 0.08);
}

.icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.success-card dl {
    margin: 0;
}

.success-card dt {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: #98a2b3;
}

.success-card dd {
    font-weight: 600;
    color: var(--brand-dark);
}

/* Форма бронирования */
.booking-panel label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: #475467;
}

.btn-pill {
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
}

