/* ===== ОСНОВНЫЕ СТИЛИ ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #f8104e;
    text-decoration: none;
    transition: all 0.15s linear;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* ===== ШАПКА ===== */
#site-header {
    background: #000;
    border-bottom: 1px solid #303030;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
}

.header-toggles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #6adb56;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(106, 219, 86, 0.4);
    text-decoration: none;
}

.btn-telegram {
    background: #37bcff;
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-telegram:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(55, 188, 255, 0.4);
    text-decoration: none;
}

/* ===== ГЛАВНЫЙ БАННЕР ===== */
.stk-block-hero {
    background: #000;
    padding: 60px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.stk-block-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.stk-block-hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.stk-block-hero__content h1 {
    font-size: clamp(36px, 8vw, 64px);
    color: #ffffff;
    text-shadow: 4px 4px 0 #000;
    margin-bottom: 20px;
}

.stk-block-hero__content p {
    font-size: clamp(18px, 2vw, 24px);
    color: #ffffff;
    text-shadow: 2px 2px 2px #000;
    max-width: 750px;
    margin: 0 auto 30px;
}

/* ===== КНОПКИ ===== */
.stk-button-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.stk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: none;
}

.stk-button:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.stk-button--whatsapp {
    background: #6adb56;
    color: #000;
}

.stk-button--whatsapp:hover {
    box-shadow: 0 4px 15px rgba(106, 219, 86, 0.4);
}

.stk-button--telegram {
    background: #37bcff;
    color: #000;
}

.stk-button--telegram:hover {
    box-shadow: 0 4px 15px rgba(55, 188, 255, 0.4);
}

/* ===== СЕКЦИИ ===== */
.section-dark {
    background: #000;
    padding: 60px 20px;
}

.section-darker {
    background: #0a0a0a;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* ===== ЗАГОЛОВКИ ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

h1 { font-size: clamp(36px, 8vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 1.5vw, 24px); }

.text-center {
    text-align: center;
}

.text-accent {
    color: #f8104e;
}

.text-muted {
    color: #d6d6d6;
}

/* ===== СЕТКА УСЛУГ ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 16, 78, 0.1);
}

.service-card h3 {
    color: #f8104e;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-card p {
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit {
    background: #1a1a1a;
    padding: 25px;
    border-left: 3px solid #f8104e;
    border-radius: 4px;
}

.benefit h4 {
    color: #f8104e;
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit p {
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ===== АККОРДЕОН ===== */
.stk-block-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.stk-block-accordion summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s;
}

.stk-block-accordion summary:hover {
    color: #f8104e;
}

.stk-block-accordion summary::-webkit-details-marker {
    display: none;
}

.stk-block-accordion summary .arrow {
    font-size: 24px;
    transition: transform 0.3s;
}

.stk-block-accordion[open] summary .arrow {
    transform: rotate(180deg);
}

.stk-block-accordion__content {
    padding: 20px 0 10px;
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.6;
}

/* ===== АНКЕТЫ ===== */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.profile-card {
    position: relative;
    overflow: hidden;
    background: #161616;
    cursor: pointer;
}

.profile-card:hover .anket-image,
.profile-card:hover .anket-watermark-canvas {
    transform: scale(1.08);
}

/* Контейнер для изображения и водяного знака */
.anket-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4.25;
    overflow: hidden;
    background: #222;
}

.anket-image,
.anket-watermark-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.anket-watermark-canvas {
    position: absolute;
    inset: 0;
    display: none;
}

.profile-card .info {
    position: relative;
    background: #000;
    padding: 20px 16px 22px;
    text-align: center;
}

.profile-card .info h4 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.profile-card .info .count {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    opacity: .78;
}

.profile-card .info .anket-link {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-size: 14px;
}

.no-data {
    grid-column: 1 / -1;
    padding: 28px;
    text-align: center;
    background: #130000;
    border: 1px solid rgba(255,255,255,.12);
}

/* ===== ПОДВАЛ ===== */
#site-footer {
    background: #0a0a0a;
    padding: 40px 20px;
    border-top: 1px solid #303030;
    text-align: center;
}

#site-footer p {
    color: #d6d6d6;
    font-size: 14px;
    margin: 5px 0;
}

#site-footer a {
    color: #6d6d6d;
    text-decoration: none;
}

#site-footer a:hover {
    color: #f8104e;
}

/* ===== ФИЛЬТРЫ АНКЕТ ===== */
.profile-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 10px;
}

.profile-tabs button {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 8px 18px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.profile-tabs button:hover {
    border-color: #f8104e;
    color: #fff;
}

.profile-tabs button.active {
    background: #f8104e;
    border-color: #f8104e;
    color: #fff;
}

.filter-tabs {
    margin-bottom: 20px;
}

.filter-tabs button {
    padding: 6px 22px;
    border-radius: 30px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 500;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .header-toggles {
        justify-content: center;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 17px;
    }

    .container,
    .container-narrow {
        width: min(100% - 28px, 1200px);
    }

    .profiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .profile-card .info {
        padding: 15px 12px 18px;
    }

    .profile-card .info h4 {
        font-size: 15px;
    }

    .primary-menu {
        gap: 12px;
    }

    .primary-menu a {
        font-size: 13px;
    }

    .btn-whatsapp,
    .btn-telegram {
        font-size: 12px;
        padding: 8px 16px;
    }

    .stk-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}