

:root {
    --bg-primary: #0c0f14;
    --bg-secondary: #121722;
    --bg-card: #161c28;
    --bg-card-hover: #1c2438;
    --text-primary: #f3f4f6;
    --text-secondary: #b0bdd0;
    --text-muted: #6b7a90;
    --footer-dark-bg: #080b10;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.04);

    --x14cp: #7c3aed;
    --x15c7: #22d3ee;
    --x1sh: linear-gradient(135deg, var(--x14cp), var(--x15c7));
    --accent-glow: 0 0 24px rgba(124, 58, 237, 0.30);

    --x3zr: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --x5uj: 'Inter', system-ui, sans-serif;

    --x19ew: 60px;
    --x20je: 44px;
    --x21mx: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --x17ue: 16px;
    --fs-small: 14px;

    --x18ze: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --x6jb: 10px;
    --x7ma: 14px;
    --x8ol: 20px;
    --x9f0: 28px;
    --x4mi: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --x10hh: 0 2px 10px rgba(0, 0, 0, 0.25);
    --x11h8: 0 8px 30px rgba(0, 0, 0, 0.35);
    --x12qr: 0 16px 50px rgba(0, 0, 0, 0.45);
    --x13zd: 0 24px 70px rgba(0, 0, 0, 0.55);

    --sc_po4z62: 110px 0;
    --container-width: 1200px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--x5uj);
    font-size: var(--x17ue);
    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(--x14cp);
    transition: var(--transition);
}
a:hover { color: var(--x15c7); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--x14cp); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--x3zr);
    font-weight: var(--x18ze);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

h1 { font-size: var(--x19ew); }
h2 { font-size: var(--x20je); }
h3 { font-size: var(--x21mx); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--x1sh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--x14cp); }
.text-accent-2 { color: var(--x15c7); }
.text-dark { color: var(--text-primary); }
.sc_k04ngh { color: var(--text-muted); }

.sc_po4z62 { padding: var(--sc_po4z62); position: relative; }
.sc_po4z62-sm { padding: 60px 0; }
.sc_po4z62-lg { padding: 140px 0; }
.sc_po4z62 > .container { position: relative; z-index: 1; }

.sc_khtk0p { background-color: var(--bg-primary); }
.sc_f092yx { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--x1sh); 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 { color: rgba(255,255,255,0.85); }
.bg-gradient-custom a:not(.sc_e12ghk) { color: #fff; }
.bg-gradient-custom .sc_n2toz9 { color: #fff; }
.bg-gradient-custom .sc_g2z1wp { color: rgba(255,255,255,0.7); }

.sc_e52rkx {
    background-color: #080b10;
    color: rgba(255,255,255,0.7);
}
.sc_e52rkx h1, .sc_e52rkx h2, .sc_e52rkx h3,
.sc_e52rkx h4, .sc_e52rkx h5, .sc_e52rkx h6 { color: #fff; }
.sc_e52rkx p, .sc_e52rkx li, .sc_e52rkx span:not(.badge) { color: rgba(255,255,255,0.7); }
.sc_e52rkx a:not(.sc_e12ghk) { color: rgba(255,255,255,0.8); }
.sc_e52rkx a:not(.sc_e12ghk):hover { color: #fff; }

.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; }

.sc_vno9pd {
    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;
}
.sc_vno9pd.loaded { opacity: 0; visibility: hidden; }
.sc_c2hygl { display: flex; gap: 10px; }
.sc_tygxg1 {
    width: 12px; height: 12px;
    border-radius: 50%;
    animation: sc_vno9pdBounce 1.4s ease-in-out infinite both;
}
.sc_tygxg1:nth-child(1) { background: var(--x14cp); animation-delay: -0.32s; }
.sc_tygxg1:nth-child(2) { background: var(--x15c7); animation-delay: -0.16s; }
.sc_tygxg1:nth-child(3) { background: var(--x14cp); animation-delay: 0; }

@keyframes sc_vno9pdBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.sc_e12ghk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: var(--x17ue);
    font-weight: var(--fw-semibold);
    border-radius: var(--x7ma);
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
}

.sc_u72t6y {
    background: var(--x1sh);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--accent-glow);
}
.sc_u72t6y:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(124, 58, 237, 0.45), 0 0 80px rgba(34, 211, 238, 0.15);
    color: #fff;
}

.sc_upuzgu {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.sc_upuzgu:hover {
    border-color: var(--x14cp);
    color: var(--x14cp);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--x15c7);
    padding: 0;
    font-weight: var(--fw-medium);
}
.btn-link-custom:hover { color: var(--x14cp); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.sc_gymhtv {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.sc_gymhtv.scrolled {
    background: rgba(12, 15, 20, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.sc_qskiow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_f4zm3k {
    font-family: var(--x3zr);
    font-size: 26px;
    font-weight: var(--x18ze);
    color: var(--text-primary);
}
.sc_f4zm3k:hover { color: var(--text-primary); }

.sc_p4s8c0 { display: flex; align-items: center; gap: 32px; }

.sc_p4s8c0 .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}

.sc_p4s8c0 .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--x1sh);
    transition: width 0.3s ease;
}

.sc_p4s8c0 .nav-link:hover,
.sc_p4s8c0 .nav-link.active { color: var(--text-primary); }
.sc_p4s8c0 .nav-link:hover::after,
.sc_p4s8c0 .nav-link.active::after { width: 100%; }

.sc_zhnd33 { margin-left: 16px; }

.sc_bribpg, .sc_m34caz { display: flex; align-items: center; gap: 28px; }
.sc_bribpg .nav-link, .sc_m34caz .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0;
}
.sc_bribpg .nav-link:hover, .sc_m34caz .nav-link:hover { color: var(--text-primary); }
.sc_bribpg ~ .sc_p4s8c0 { display: none; }

.sc_ml9cn3 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--x6jb);
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.sc_ml9cn3 .sc_gu9ssa {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sc_ml9cn3.active .sc_gu9ssa:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sc_ml9cn3.active .sc_gu9ssa:nth-child(2) { opacity: 0; }
.sc_ml9cn3.active .sc_gu9ssa:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sc_skrn0c {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-primary);
}

.sc_skrn0c .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.10;
}

.sc_skrn0c .sc_pj6yl0 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(34,211,238,0.08) 0%, transparent 50%);
}

.sc_x3v2hn { position: relative; z-index: 2; }

.sc_tzgiuu {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    background: var(--x1sh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc_g6eqxs {
    font-size: var(--x19ew);
    font-weight: var(--x18ze);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.sc_dmmejk {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.sc_qlc49v { display: flex; gap: 16px; flex-wrap: wrap; }

.sc_lp4i6c { position: relative; z-index: 2; }
.sc_lp4i6c img {
    border-radius: var(--x8ol);
    box-shadow: var(--x13zd);
    border: 1px solid var(--border-color);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.sc_x5n75q { margin-bottom: 60px; }

.sc_arqsow {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    background: var(--x1sh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc_aofnbo {
    font-size: var(--x20je);
    font-weight: var(--x18ze);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sc_w6aktr {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
}
.sc_x5n75q.text-center .sc_w6aktr {
    margin-left: auto;
    margin-right: auto;
}

.sc_fxh16k {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ma);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.sc_fxh16k::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--x1sh);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.sc_fxh16k:hover::before { opacity: 1; }

.sc_fxh16k:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(124, 58, 237, 0.25);
}

.sc_fxh16k .sc_qx9eeg {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.12);
    color: var(--x14cp);
    font-size: 24px;
    border-radius: var(--x7ma);
    margin-bottom: 20px;
    transition: var(--transition);
}
.sc_fxh16k:hover .sc_qx9eeg {
    background: var(--x1sh);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.sc_fxh16k .sc_x2olqf {
    font-size: var(--fs-h5);
    font-weight: var(--x18ze);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.sc_fxh16k .sc_y3jb2e {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_fxh16k-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ma);
    padding: 24px;
    transition: var(--transition);
}
.sc_fxh16k-horizontal:hover {
    box-shadow: var(--x11h8);
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.2);
}
.sc_fxh16k-horizontal .sc_qx9eeg {
    flex-shrink: 0;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.12);
    color: var(--x14cp);
    font-size: 22px;
    border-radius: var(--x7ma);
}

.about-section .about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--x8ol);
    border: 1px solid var(--border-color);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--x1sh);
    color: #fff;
    padding: 16px 22px;
    text-align: center;
    border-radius: var(--x7ma);
    box-shadow: var(--accent-glow);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--x18ze);
    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);
    border-bottom: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--x15c7); font-size: 16px; }

.sc_fadbt1 {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.counter-item { text-align: center; padding: 20px; }
.sc_n2toz9 {
    font-size: 56px;
    font-weight: var(--x18ze);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--x1sh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sc_n2toz9 .counter-suffix {
    -webkit-text-fill-color: var(--x15c7);
}
.sc_g2z1wp {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sc_mfv9f0 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ma);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.sc_mfv9f0:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(124, 58, 237, 0.2);
}
.sc_mfv9f0 .sc_mlnzar {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.sc_mfv9f0 .sc_mlnzar img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sc_mfv9f0:hover .sc_mlnzar img { transform: scale(1.06); }
.sc_mfv9f0 .sc_mlnzar .card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--x1sh);
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    border-radius: var(--x6jb);
}
.sc_mfv9f0 .card-body { padding: 24px; }
.sc_mfv9f0 .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--x18ze);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.sc_mfv9f0 .card-title a { color: var(--text-primary); }
.sc_mfv9f0 .card-title a:hover { color: var(--x15c7); }
.sc_mfv9f0 .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.sc_mfv9f0 .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.sc_mfv9f0 .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--x18ze);
    color: var(--x15c7);
}

.sc_y08fnd { text-align: center; transition: var(--transition); }
.sc_y08fnd:hover { transform: translateY(-6px); }
.sc_y08fnd .sc_z3md1r {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--x7ma);
    border: 1px solid var(--border-color);
}
.sc_y08fnd .sc_z3md1r img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sc_y08fnd:hover .sc_z3md1r img { transform: scale(1.04); }
.sc_y08fnd .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;
}
.sc_y08fnd:hover .team-social { bottom: 0; }
.team-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--x14cp);
    color: #fff;
    font-size: 14px;
    border-radius: var(--x6jb);
    transition: var(--transition);
}
.team-social a:hover { background: var(--x15c7); }
.sc_y08fnd .sc_p5cuzs {
    font-size: var(--fs-h5);
    font-weight: var(--x18ze);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.sc_y08fnd .sc_ccjlhb {
    font-size: var(--fs-small);
    color: var(--x15c7);
    letter-spacing: 1px;
}

.sc_zbycc2 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ma);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.sc_zbycc2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--x1sh);
}
.sc_zbycc2:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.2);
}
.sc_zbycc2 .quote-icon {
    font-size: 32px;
    color: var(--x14cp);
    margin-bottom: 16px;
}
.sc_zbycc2 .sc_xtunbd {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.sc_zbycc2 .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sc_zbycc2 .sc_d6w8kc {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--x14cp);
}
.sc_zbycc2 .sc_yaeyof {
    font-size: var(--x17ue);
    font-weight: var(--x18ze);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sc_zbycc2 .sc_nl73jj {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.sc_zbycc2 .stars {
    color: var(--x15c7);
    margin-bottom: 14px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--x7ma);
    border: 1px solid var(--border-color);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(12, 15, 20, 0.88);
    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(--x15c7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-medium);
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    color: #fff;
    margin-bottom: 0;
}
.portfolio-overlay .serial-badge { color: rgba(255,255,255,0.85); -webkit-text-stroke: 0; font-size: inherit; opacity: 1; position: static; background: rgba(255,255,255,0.15); border-radius: 6px; display: inline-block; padding: 4px 12px; }

.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--x7ma) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    border-radius: var(--x7ma);
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(124, 58, 237, 0.08);
    color: var(--x14cp);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sc_wnfo5s {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x8ol);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.sc_wnfo5s.featured {
    border-color: var(--x14cp);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
    transform: scale(1.03);
}
.sc_wnfo5s.featured::before {
    content: '★ BEST';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--x1sh);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--x18ze);
    letter-spacing: 1.5px;
    border-radius: 0 0 var(--x6jb) var(--x6jb);
}
.sc_wnfo5s:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.sc_wnfo5s.featured:hover { transform: scale(1.03) translateY(-6px); }
.sc_wnfo5s .sc_f3pnrh {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: var(--x18ze);
}
.sc_wnfo5s .sc_jisc6x {
    font-size: 56px;
    font-weight: var(--x18ze);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--x1sh);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sc_wnfo5s .sc_jisc6x .currency {
    font-size: 24px;
    vertical-align: top;
}
.sc_wnfo5s .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
.sc_wnfo5s .sc_crvck8 {
    text-align: left;
    margin-bottom: 28px;
}
.sc_wnfo5s .sc_crvck8 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);
}
.sc_wnfo5s .sc_crvck8 li:last-child { border-bottom: none; }
.sc_wnfo5s .sc_crvck8 li i { color: var(--x15c7); }
.sc_wnfo5s .sc_crvck8 li.disabled {
    opacity: 0.3;
    text-decoration: line-through;
}

.sc_x2hgrq {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ma);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.sc_x2hgrq:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(124, 58, 237, 0.2);
}
.sc_x2hgrq .sc_mlnzar { height: 200px; overflow: hidden; }
.sc_x2hgrq .sc_mlnzar img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sc_x2hgrq:hover .sc_mlnzar img { transform: scale(1.06); }
.sc_x2hgrq .card-body { padding: 24px; }
.sc_x2hgrq .sc_us9rok {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.sc_x2hgrq .sc_us9rok i { margin-right: 4px; color: var(--x14cp); }
.sc_x2hgrq .card-title {
    font-size: 18px;
    font-weight: var(--x18ze);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
.sc_x2hgrq .card-title a { color: var(--text-primary); }
.sc_x2hgrq .card-title a:hover { color: var(--x15c7); }

.sc_irhjjy {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.sc_irhjjy .cta-content { position: relative; z-index: 2; }
.sc_irhjjy .sc_klhdn1 { font-size: var(--x20je); color: var(--text-primary); }
.sc_irhjjy .sc_pxfxrt { color: var(--text-secondary); font-size: 18px; max-width: 600px; }
.sc_irhjjy p, .sc_irhjjy li { color: var(--text-secondary); }
.sc_irhjjy .sc_u72t6y {
    background: var(--x1sh);
    color: #fff;
    border-color: transparent;
}
.sc_irhjjy .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--x14cp);
    opacity: 0.06;
    filter: blur(100px);
}

.newsletter-form {
    display: flex; gap: 0; max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x6jb) 0 0 var(--x6jb);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--x17ue);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--x14cp); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item .sc_an8l4l {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--x1sh);
    color: #fff;
    font-size: 22px;
    font-weight: var(--x18ze);
    border-radius: var(--x7ma);
    margin: 0 auto 20px;
    box-shadow: var(--accent-glow);
}
.process-item .sc_fsuqz1 {
    font-size: var(--fs-h5);
    font-weight: var(--x18ze);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.process-item .step-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}
.process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 26px; right: -14px;
    font-size: 22px;
    color: var(--x15c7);
}

.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-family: var(--x3zr);
    font-size: 60px;
    font-weight: var(--x18ze);
    flex-shrink: 0;
    color: var(--text-primary);
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px var(--text-muted);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.sc_cxbd0g {
    background: var(--footer-dark-bg);
    color: rgba(255,255,255,0.6);
    border-top: 1px solid var(--border-color);
}
.sc_cxbd0g h1, .sc_cxbd0g h2, .sc_cxbd0g h3,
.sc_cxbd0g h4, .sc_cxbd0g h5 { color: #fff; }

.sc_fk2z6l .sc_ysbf68 {
    font-size: 18px;
    font-weight: var(--x18ze);
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.sc_fk2z6l .sc_ysbf68::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--x1sh);
}
.sc_fk2z6l p { color: rgba(255,255,255,0.5); font-size: var(--fs-small); }
.sc_u9cms2 a {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-small);
    transition: var(--transition);
}
.sc_u9cms2 a:hover {
    color: var(--x15c7);
    text-decoration: none;
    padding-left: 6px;
}
.sc_u9cms2 li { margin-bottom: 10px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-small);
}
.footer-contact li i { color: var(--x15c7); margin-top: 4px; }
.sc_cmaioc { display: flex; gap: 8px; margin-top: 20px; }
.sc_cmaioc a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--x6jb);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.sc_cmaioc a:hover {
    background: var(--x14cp);
    color: #fff;
    box-shadow: var(--accent-glow);
}
.sc_ypv66n {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    margin-top: 60px;
}
.sc_ypv66n p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.3); }

.footer-policy { margin-top: 12px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.footer-policy a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--x15c7); }

.policy-content h1 { font-size: var(--x20je); margin-bottom: 24px; }
.policy-content h2 { font-size: var(--fs-h4); margin-top: 32px; margin-bottom: 16px; }
.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(--x15c7); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.sc_hxcrhb {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--x1sh);
    color: #fff;
    border: none;
    border-radius: var(--x7ma);
    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);
}
.sc_hxcrhb.visible { opacity: 1; visibility: visible; }
.sc_hxcrhb:hover { transform: translateY(-3px); box-shadow: 0 0 36px rgba(124,58,237,0.4); }

.sc_dptryn .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x6jb);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--x17ue);
    transition: var(--transition);
}
.sc_dptryn .form-control:focus {
    border-color: var(--x14cp);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
    background: var(--bg-card);
    color: var(--text-primary);
}
.sc_dptryn .form-control::placeholder { color: var(--text-muted); }
.sc_dptryn textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--text-muted); opacity: 0.4; width: 10px; height: 10px; border-radius: 50%; }
.swiper-pagination-bullet-active { background: var(--x14cp); opacity: 1; }
.swiper-button-prev,
.swiper-button-next {
    width: 46px; height: 46px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x6jb);
    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(--x14cp);
    color: #fff;
    border-color: var(--x14cp);
    box-shadow: var(--accent-glow);
}

.wow-ready .wow { visibility: hidden; }
.wow.animated { visibility: visible; }
.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; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@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; }

@media (max-width: 1200px) { :root { --x19ew: 48px; --x20je: 36px; } }

@media (max-width: 992px) {
    :root { --x19ew: 40px; --x20je: 32px; --x21mx: 26px; --sc_po4z62: 80px 0; }
    .sc_p4s8c0 {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 1px solid var(--border-color);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    .sc_p4s8c0.active { right: 0; }
    .sc_p4s8c0 .nav-link {
        display: block !important;
        font-size: 18px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .sc_p4s8c0 .nav-link:hover, .sc_p4s8c0 .nav-link.active { color: var(--x14cp) !important; }
    .sc_p4s8c0 .nav-link::after { display: none; }
    .sc_zhnd33 { display: none !important; }
    .sc_ml9cn3 {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important;
    }
    .sc_yaq6hx {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .sc_yaq6hx.active { opacity: 1; visibility: visible; }
    .sc_g6eqxs { font-size: var(--x19ew); }
    .process-item:not(:last-child)::after { display: none; }
    .sc_n2toz9 { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --x19ew: 34px; --x20je: 28px; --x21mx: 22px; --fs-h4: 20px; --sc_po4z62: 60px 0; }
    .sc_x5n75q { margin-bottom: 40px; }
    .sc_skrn0c { min-height: auto; padding: 140px 0 80px; }
    .sc_qlc49v { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_wnfo5s .sc_jisc6x { font-size: 44px; }
    .sc_ypv66n { text-align: center; }
}

@media (max-width: 576px) {
    :root { --x19ew: 28px; --x20je: 24px; --x21mx: 20px; --sc_po4z62: 50px 0; }
    .sc_zbycc2 { padding: 24px; }
    .sc_wnfo5s { padding: 24px; }
    .sc_fxh16k { padding: 24px 18px; }
}

.sc_e52rkx .sc_tzgiuu { color: #fff; }
.sc_e52rkx .sc_arqsow { color: var(--x14cp); }
.sc_e52rkx .sc_k04ngh { color: rgba(255,255,255,0.55); }
.sc_e52rkx .sc_u9cms2 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_e52rkx .sc_u9cms2 a:hover { color: #fff; }

.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(--x14cp) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
