/* ================================================================
   KIT: DARK PREMIUM
   Тёмная тема с неоновыми акцентами
   Вдохновлён: Linear.app, Spotify, Vercel
   ================================================================ */

/* ----------------------------------------------------------------
   CSS VARIABLES
   AI: Замени --u146i и --u158z на цвета из color_palette
---------------------------------------------------------------- */
:root {
    --bg-primary: #0c0c1c;
    --bg-secondary: #13132b;
    --bg-card: #1a1a3e;
    --bg-card-hover: #222255;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --footer-dark-bg: #0c0c1c;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);

    --u146i: #6c5ce7;
    --u158z: #00cec9;
    --u122: linear-gradient(135deg, var(--u146i), var(--u158z));
    --accent-glow: 0 0 20px rgba(108, 92, 231, 0.3);

    --u3ne: 'Inter', system-ui, sans-serif;
    --u5w0: 'Inter', system-ui, sans-serif;

    --u19rg: 56px;
    --u20w3: 42px;
    --u21dw: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --u173p: 16px;
    --fs-small: 14px;

    --u1873: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --u66l: 8px;
    --u7sc: 12px;
    --u8qg: 16px;
    --u930: 24px;
    --u4af: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --u10w4: 0 2px 8px rgba(0, 0, 0, 0.3);
    --u11aa: 0 4px 16px rgba(0, 0, 0, 0.35);
    --u1240: 0 8px 32px rgba(0, 0, 0, 0.4);
    --u13cr: 0 16px 48px rgba(0, 0, 0, 0.5);

    --css_s3a5t: 100px 0;
    --container-width: 1200px;
}

/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--u5w0);
    font-size: var(--u173p);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--u146i);
    transition: var(--transition);
}

a:hover {
    color: var(--u158z);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--u3ne);
    font-weight: var(--u1873);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: var(--u19rg); }
h2 { font-size: var(--u20w3); }
h3 { font-size: var(--u21dw); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--u122);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--u146i); }
.text-accent-2 { color: var(--u158z); }
.text-white { color: var(--text-primary); }
.css_el79q { color: var(--text-muted); }

/* ----------------------------------------------------------------
   UTILITIES
---------------------------------------------------------------- */
.css_s3a5t { padding: var(--css_s3a5t); position: relative; }
.css_s3a5t-sm { padding: 60px 0; }
.css_s3a5t-lg { padding: 140px 0; }
.css_s3a5t > .container { position: relative; z-index: 1; }

.css_2yq8d { background-color: var(--bg-primary); }
.css_r8b10 { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom {
    background: var(--u122);
    color: #fff;
}
.bg-gradient-custom h1, .bg-gradient-custom h2, .bg-gradient-custom h3,
.bg-gradient-custom h4, .bg-gradient-custom h5, .bg-gradient-custom h6 { color: #fff; }
.bg-gradient-custom p, .bg-gradient-custom li, .bg-gradient-custom span,
.bg-gradient-custom .css_lp7hp { color: rgba(255,255,255,0.8); }
.bg-gradient-custom a:not(.css_lp4wq) { color: #fff; }
.bg-gradient-custom .css_rr814 { color: #fff; }

.css_47yzr {
    background-color: #1a1a30;
    color: rgba(255,255,255,0.7);
}
.css_47yzr h1, .css_47yzr h2, .css_47yzr h3,
.css_47yzr h4, .css_47yzr h5, .css_47yzr h6 { color: #fff; }
.css_47yzr p, .css_47yzr li { color: rgba(255,255,255,0.7); }
.css_47yzr a:not(.css_lp4wq) { color: rgba(255,255,255,0.8); }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-60 { padding-top: 60px; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-60 { padding-bottom: 60px; }

.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
.css_kj3h3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: css_kj3h3AutoHide 0s 0.2s forwards;
}

.css_kj3h3.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes css_kj3h3AutoHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.css_s7b00 {
    display: flex;
    gap: 8px;
}

.css_o2dk0 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--u146i);
    animation: css_kj3h3Bounce 1.4s ease-in-out infinite both;
}

.css_o2dk0:nth-child(1) { animation-delay: -0.32s; }
.css_o2dk0:nth-child(2) { animation-delay: -0.16s; }
.css_o2dk0:nth-child(3) { animation-delay: 0; }

@keyframes css_kj3h3Bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.css_lp4wq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: var(--u173p);
    font-weight: var(--fw-semibold);
    border-radius: var(--u4af);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.3px;
}

.css_q5x0m {
    background: var(--u122);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.css_q5x0m:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
    color: #fff;
}

.css_0i9d5 {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.css_0i9d5:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--u146i);
    color: var(--u146i);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--u146i);
    padding: 0;
    font-weight: var(--fw-medium);
}

.btn-link-custom:hover {
    color: var(--u158z);
}

.btn-link-custom i {
    transition: transform 0.3s ease;
}

.btn-link-custom:hover i {
    transform: translateX(5px);
}

/* ----------------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------------- */
.css_dde56 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.css_dde56.scrolled {
    background: rgba(12, 12, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.css_55ly9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.css_mwycn {
    font-size: 24px;
    font-weight: var(--u1873);
    color: var(--text-primary);
}

.css_mwycn:hover {
    color: var(--text-primary);
}

.css_fgad9 {
    display: flex;
    align-items: center;
    gap: 32px;
}

.css_fgad9 .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.css_fgad9 .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--u122);
    transition: width 0.3s ease;
}

.css_fgad9 .nav-link:hover,
.css_fgad9 .nav-link.active {
    color: var(--text-primary);
}

.css_fgad9 .nav-link:hover::after,
.css_fgad9 .nav-link.active::after {
    width: 100%;
}

.css_q6rtr {
    margin-left: 16px;
}

/* Centered logo variant: split nav groups */
.css_ap97b, .css_mdxsn {
    display: flex;
    align-items: center;
    gap: 32px;
}
.css_ap97b .nav-link, .css_mdxsn .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}
.css_ap97b .nav-link:hover, .css_mdxsn .nav-link:hover { color: var(--u146i); }
.css_ap97b ~ .css_fgad9 { display: none; }

.css_vh941 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

.css_vh941 .css_jqypx {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.css_vh941.active .css_jqypx:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.css_vh941.active .css_jqypx:nth-child(2) { opacity: 0; }
.css_vh941.active .css_jqypx:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------------------------------------------------
   HERO SECTION
---------------------------------------------------------------- */
.css_zvpay {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.css_zvpay .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.css_zvpay .css_w8iv9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 30%, transparent 70%, var(--bg-primary) 100%);
}

.css_hvwad {
    position: relative;
    z-index: 2;
}

.css_695fs {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--u146i);
    margin-bottom: 24px;
    padding: 8px 20px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: var(--u4af);
}

.css_op70r {
    font-size: var(--u19rg);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.css_gyche {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.css_g741y {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.css_5heja {
    position: relative;
    z-index: 2;
}

.css_5heja img {
    border-radius: var(--u8qg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--u146i);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--u158z);
    bottom: -50px;
    left: -50px;
}

/* ----------------------------------------------------------------
   SECTION TITLE (reusable)
---------------------------------------------------------------- */
.css_wu5ps {
    margin-bottom: 60px;
}

.css_htxsk {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--u146i);
    margin-bottom: 16px;
}

.css_7unf8 {
    font-size: var(--u20w3);
    font-weight: var(--u1873);
    margin-bottom: 16px;
}

.css_pkhck {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.css_wu5ps.text-center .css_pkhck {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------------------
   ICON BOX / FEATURE CARD
---------------------------------------------------------------- */
.css_esod9 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u7sc);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
}

.css_esod9:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.css_esod9 .css_h2z2f {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--u7sc);
    background: rgba(108, 92, 231, 0.1);
    color: var(--u146i);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.css_esod9:hover .css_h2z2f {
    background: var(--u122);
    color: #fff;
}

.css_esod9 .css_ptwh1 {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
}

.css_esod9 .css_3xq8a {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

/* style 2: horizontal icon box */
.css_esod9-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u7sc);
    padding: 30px;
    transition: var(--transition);
}

.css_esod9-horizontal:hover {
    border-color: var(--u146i);
    transform: translateY(-3px);
}

.css_esod9-horizontal .css_h2z2f {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--u66l);
    background: rgba(108, 92, 231, 0.1);
    color: var(--u146i);
    font-size: 24px;
}

/* ----------------------------------------------------------------
   ABOUT SECTION
---------------------------------------------------------------- */
.about-section .about-image {
    position: relative;
    border-radius: var(--u8qg);
    overflow: hidden;
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--u8qg);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--u122);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--u7sc);
    text-align: center;
}

.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--u1873);
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: var(--fs-small);
    opacity: 0.9;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.about-list li i {
    color: var(--u158z);
    font-size: 16px;
}

/* ----------------------------------------------------------------
   COUNTER / STATS SECTION
---------------------------------------------------------------- */
.css_feqmh {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.css_rr814 {
    font-size: 48px;
    font-weight: var(--u1873);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.css_rr814 .counter-suffix {
    color: var(--u146i);
}

.css_lp7hp {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ----------------------------------------------------------------
   SERVICES / COURSE CARDS
---------------------------------------------------------------- */
.css_ud5ud {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u7sc);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.css_ud5ud:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--u146i);
}

.css_ud5ud .css_chfbl {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.css_ud5ud .css_chfbl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.css_ud5ud:hover .css_chfbl img {
    transform: scale(1.05);
}

.css_ud5ud .css_chfbl .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--u122);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--u4af);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}

.css_ud5ud .card-body {
    padding: 28px;
}

.css_ud5ud .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
}

.css_ud5ud .card-title a {
    color: var(--text-primary);
}

.css_ud5ud .card-title a:hover {
    color: var(--u146i);
}

.css_ud5ud .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.css_ud5ud .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.css_ud5ud .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--u1873);
    color: var(--u146i);
}

/* ----------------------------------------------------------------
   TEAM SECTION
---------------------------------------------------------------- */
.css_dqyxf {
    text-align: center;
    transition: var(--transition);
}

.css_dqyxf:hover {
    transform: translateY(-5px);
}

.css_dqyxf .css_76xz5 {
    position: relative;
    overflow: hidden;
    border-radius: var(--u8qg);
    margin-bottom: 20px;
}

.css_dqyxf .css_76xz5 img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.css_dqyxf:hover .css_76xz5 img {
    transform: scale(1.05);
}

.css_dqyxf .team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}

.css_dqyxf:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--u146i);
}

.css_dqyxf .css_a9bxv {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
}

.css_dqyxf .css_aul3i {
    font-size: var(--fs-small);
    color: var(--u146i);
}

/* ----------------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------------- */
.css_s1cyl {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u7sc);
    padding: 40px;
    transition: var(--transition);
}

.css_s1cyl:hover {
    border-color: var(--border-light);
}

.css_s1cyl .quote-icon {
    font-size: 32px;
    color: var(--u146i);
    margin-bottom: 20px;
    opacity: 0.5;
}

.css_s1cyl .css_fctg2 {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.css_s1cyl .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.css_s1cyl .css_ea5q1 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.css_s1cyl .css_ta0w7 {
    font-size: var(--u173p);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.css_s1cyl .css_to0ey {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.css_s1cyl .stars {
    color: #ffc107;
    margin-bottom: 16px;
}

/* ----------------------------------------------------------------
   PORTFOLIO / GALLERY
---------------------------------------------------------------- */
.portfolio-item {
    position: relative;
    border-radius: var(--u7sc);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(12, 12, 28, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--u146i);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    color: #fff;
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   FAQ / ACCORDION
---------------------------------------------------------------- */
.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u7sc) !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    padding: 20px 28px;
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--u146i);
}

.faq-section .accordion-button::after {
    filter: invert(1);
}

.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ----------------------------------------------------------------
   PRICING
---------------------------------------------------------------- */
.css_wlpwc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u8qg);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.css_wlpwc.featured {
    border-color: var(--u146i);
    box-shadow: var(--accent-glow);
}

.css_wlpwc.featured::before {
    content: 'Популярный';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--u122);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    border-radius: 0 0 var(--u66l) var(--u66l);
}

.css_wlpwc:hover {
    transform: translateY(-5px);
}

.css_wlpwc .css_cvf0d {
    font-size: var(--fs-h5);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.css_wlpwc .css_212m7 {
    font-size: 56px;
    font-weight: var(--u1873);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.css_wlpwc .css_212m7 .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--u146i);
}

.css_wlpwc .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.css_wlpwc .css_bp8ef {
    text-align: left;
    margin-bottom: 30px;
}

.css_wlpwc .css_bp8ef li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

.css_wlpwc .css_bp8ef li:last-child {
    border-bottom: none;
}

.css_wlpwc .css_bp8ef li i {
    color: var(--u158z);
}

.css_wlpwc .css_bp8ef li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* ----------------------------------------------------------------
   BLOG CARDS
---------------------------------------------------------------- */
.css_1ifvc {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u7sc);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.css_1ifvc:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.css_1ifvc .css_chfbl {
    height: 200px;
    overflow: hidden;
}

.css_1ifvc .css_chfbl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.css_1ifvc:hover .css_chfbl img {
    transform: scale(1.05);
}

.css_1ifvc .card-body {
    padding: 24px;
}

.css_1ifvc .css_3qg9n {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.css_1ifvc .css_3qg9n i {
    margin-right: 4px;
    color: var(--u146i);
}

.css_1ifvc .card-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
}

.css_1ifvc .card-title a {
    color: var(--text-primary);
}

.css_1ifvc .card-title a:hover {
    color: var(--u146i);
}

/* ----------------------------------------------------------------
   CTA SECTION
---------------------------------------------------------------- */
.css_fz8bz {
    background: var(--u122);
    position: relative;
    overflow: hidden;
}

.css_fz8bz .cta-content {
    position: relative;
    z-index: 2;
}

.css_fz8bz .css_m4m90 {
    font-size: var(--u20w3);
    color: #fff;
}

.css_fz8bz .css_m3u1t {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
}

.css_fz8bz p, .css_fz8bz li { color: rgba(255,255,255,0.8); }

.css_fz8bz .css_lp4wq {
    background: #fff;
    color: var(--u146i);
}

.css_fz8bz .css_lp4wq:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.css_fz8bz .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

/* ----------------------------------------------------------------
   NEWSLETTER
---------------------------------------------------------------- */
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u4af);
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: var(--u173p);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--u146i);
}

/* ----------------------------------------------------------------
   PROCESS / STEPS
---------------------------------------------------------------- */
.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item .css_ygc0t {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.1);
    color: var(--u146i);
    font-size: 24px;
    font-weight: var(--u1873);
    margin: 0 auto 20px;
    border: 2px solid var(--u146i);
}

.process-item .css_mbofp {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
}

.process-item .step-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}

/* connector line between steps */
.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--border-light);
}

/* ----------------------------------------------------------------
   MARQUEE / TEXT SLIDER
---------------------------------------------------------------- */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-size: 64px;
    font-weight: var(--u1873);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    color: var(--text-primary);
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px var(--text-primary);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.css_viube {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.css_xjkxj .css_dm3cl {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.css_xjkxj .css_dm3cl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--u122);
}

.css_xjkxj p {
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

.css_cda0b li {
    margin-bottom: 10px;
}

.css_cda0b a {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    transition: var(--transition);
}

.css_cda0b a:hover {
    color: var(--u146i);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: var(--fs-small);
}

.footer-contact li i {
    color: var(--u146i);
    margin-top: 4px;
}

.css_jusie {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.css_jusie a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.css_jusie a:hover {
    background: var(--u146i);
    border-color: var(--u146i);
    color: #fff;
}

.css_tlnlm {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    margin-top: 60px;
}

.css_tlnlm p {
    margin: 0;
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.footer-policy {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.footer-policy a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-policy a:hover {
    opacity: 1;
    color: var(--u146i);
}

/* ----------------------------------------------------------------
   POLICY PAGES — стили контента политик
---------------------------------------------------------------- */
.policy-content h1 {
    font-size: var(--u20w3);
    font-weight: var(--u1873);
    margin-bottom: 24px;
    color: var(--text-primary);
}

.policy-content h2 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
    color: var(--text-secondary);
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.policy-content a {
    color: var(--u146i);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-primary);
}

/* ----------------------------------------------------------------
   SCROLL TO TOP
---------------------------------------------------------------- */
.css_3jpa0 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--u122);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--accent-glow);
}

.css_3jpa0.visible {
    opacity: 1;
    visibility: visible;
}

.css_3jpa0:hover {
    transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
.css_6k20h .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--u66l);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--u173p);
}

.css_6k20h .form-control:focus {
    border-color: var(--u146i);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    background: var(--bg-card);
    color: var(--text-primary);
}

.css_6k20h .form-control::placeholder {
    color: var(--text-muted);
}

.css_6k20h textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ----------------------------------------------------------------
   SWIPER OVERRIDES
---------------------------------------------------------------- */
.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--u146i);
    width: 24px;
    border-radius: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--u146i);
    border-color: var(--u146i);
}

/* ----------------------------------------------------------------
   WOW.JS / ANIMATION HELPERS
---------------------------------------------------------------- */
.wow {
    visibility: visible;
}

html.wow-ready .wow {
    visibility: hidden;
}

html.wow-ready .animated {
    visibility: visible;
}

/* Custom animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Float animations for decorative shapes */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatLeftRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.float-anim { animation: floatUpDown 3s ease-in-out infinite; }
.float-anim-2 { animation: floatLeftRight 4s ease-in-out infinite; }

/* ----------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1200px) {
    :root {
        --u19rg: 48px;
        --u20w3: 36px;
    }
}

/* ----------------------------------------------------------------
   MOBILE MENU — slide-in panel
---------------------------------------------------------------- */
@media (max-width: 992px) {
    .css_fgad9 {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-body);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        box-shadow: -4px 0 30px rgba(0,0,0,0.4);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
    }

    .css_fgad9.active {
        right: 0;
    }

    .css_fgad9 .nav-link {
        display: block !important;
        font-size: 18px !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-primary) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .css_fgad9 .nav-link:hover,
    .css_fgad9 .nav-link.active {
        color: var(--u146i) !important;
    }

    .css_fgad9 .nav-link::after {
        display: none;
    }

    .css_q6rtr {
        display: none !important;
    }

    .css_vh941 {
        display: flex !important;
        z-index: 10001;
        position: relative;
        pointer-events: auto !important;
        opacity: 1 !important;
        background: none !important;
        border: none !important;
    }

    /* Overlay */
    .css_75m0z {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .css_75m0z.active {
        opacity: 1;
        visibility: visible;
    }

    .css_op70r {
        font-size: var(--u19rg);
    }

    .process-item:not(:last-child)::after {
        display: none;
    }

    .css_rr814 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --u19rg: 34px;
        --u20w3: 28px;
        --u21dw: 22px;
        --fs-h4: 20px;
        --css_s3a5t: 60px 0;
    }

    .css_wu5ps {
        margin-bottom: 40px;
    }

    .css_zvpay {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .css_g741y {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .css_wlpwc .css_212m7 {
        font-size: 40px;
    }

    .css_tlnlm {
        text-align: center;
    }
}

@media (max-width: 576px) {
    :root {
        --u19rg: 28px;
        --u20w3: 24px;
        --u21dw: 20px;
        --css_s3a5t: 50px 0;
    }

    .css_s1cyl {
        padding: 24px;
    }

    .css_wlpwc {
        padding: 28px;
    }

    .css_esod9 {
        padding: 28px 20px;
    }
}

/* [PATCH] css_47yzr gaps */
.css_47yzr .css_695fs { color: #fff; }
.css_47yzr .css_htxsk { color: var(--u146i); }
.css_47yzr .css_el79q { color: rgba(255,255,255,0.55); }
.css_47yzr .css_cda0b a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.css_47yzr .css_cda0b a:hover { color: #fff; }

/* [PATCH] text-force-light utilities */
/* Utility classes replacing inline color:#fff / color:rgba(255,255,255,...) */
.text-force-light { color: #fff !important; }
.text-force-light-muted { color: rgba(255,255,255,0.7) !important; }
.text-force-light-soft { color: rgba(255,255,255,0.55) !important; }
.text-force-accent { color: var(--u146i) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
