/* ====================================================
   NICHE LANDING PAGES — общие стили для /for-*.html
   Используется: for-auto, for-dental, for-beauty, for-manicure,
                 for-tutors, for-vet, for-fitness
   ==================================================== */

.niche-hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    padding: 120px 24px 80px;
    text-align: center;
}
.niche-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #a855f7, #6C5CE7, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.niche-hero .lead {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.75);
    max-width: 720px;
    margin: 16px auto 32px;
    line-height: 1.5;
}
.niche-hero .bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto 32px;
}
.niche-hero .bullets span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}
.niche-hero .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.niche-hero .btn-primary {
    background: linear-gradient(135deg, #a855f7, #6C5CE7);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s;
    border: none;
}
.niche-hero .btn-primary:hover { transform: translateY(-2px); }
.niche-hero .btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.niche-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 40px auto 0;
}
.niche-stat {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 24px;
}
.niche-stat .num {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.niche-stat .lbl {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 4px;
}

.niche-section {
    padding: 80px 24px;
}
.niche-section h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 900;
    text-align: center;
    max-width: 840px;
    margin: 0 auto 16px;
    line-height: 1.2;
}
.niche-section .sub {
    text-align: center;
    color: #666;
    max-width: 720px;
    margin: 0 auto 48px;
    font-size: 17px;
}

.niche-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.niche-feature {
    background: #fff;
    border: 1px solid #e6e3f0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .2s;
}
.niche-feature:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(108,92,231,0.12); }
.niche-feature .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(108,92,231,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #6C5CE7;
    font-size: 20px;
}
.niche-feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.niche-feature p { color: #666; font-size: 15px; line-height: 1.55; }

.niche-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    counter-reset: step;
}
.niche-step {
    position: relative;
    padding: 32px 24px 24px;
    background: linear-gradient(135deg, #f8f7ff 0%, #fff 100%);
    border: 1px solid #ebe8f5;
    border-radius: 16px;
}
.niche-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #6C5CE7);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.niche-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; margin-top: 8px; }
.niche-step p { color: #666; font-size: 15px; line-height: 1.55; }

.niche-services {
    background: #0f0c29;
    color: #fff;
}
.niche-services h2 { color: #fff; }
.niche-services .sub { color: rgba(255,255,255,0.65); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px 18px;
    border-radius: 12px;
    text-align: center;
}
.service-card i {
    font-size: 28px;
    color: #a29bfe;
    margin-bottom: 10px;
    display: block;
}
.service-card span { color: #fff; font-weight: 600; }

.niche-faq {
    max-width: 800px;
    margin: 0 auto;
}
.niche-faq .faq-item {
    border-bottom: 1px solid #e6e3f0;
    padding: 20px 0;
}
.niche-faq .faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}
.niche-faq .faq-item p {
    color: #555;
    line-height: 1.6;
}

.niche-final-cta {
    background: linear-gradient(135deg, #6C5CE7, #a855f7);
    color: #fff;
    padding: 80px 24px;
    text-align: center;
}
.niche-final-cta h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; margin-bottom: 16px; }
.niche-final-cta p { font-size: 17px; opacity: 0.9; max-width: 600px; margin: 0 auto 32px; }
.niche-final-cta .btn-white {
    background: #fff;
    color: #6C5CE7;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
