

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f0f0;
    --bg-card: #ffffff;
    --bg-card-hover: #fffbe6;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #777777;
    --footer-dark-bg: #000000;
    --border-color: #000000;
    --border-light: #333333;

    --f14fn: #ff5722;
    --f15at: #ffeb3b;
    --f1q9: linear-gradient(135deg, var(--f14fn), var(--f15at));
    --accent-glow: 4px 4px 0 var(--f14fn);

    --f3rg: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --f5mp: 'Inter', system-ui, sans-serif;

    --f19z6: 64px;
    --f20p5: 48px;
    --f21me: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --f17xm: 16px;
    --fs-small: 14px;

    --f18ja: 900;
    --fw-semibold: 700;
    --fw-medium: 600;
    --fw-regular: 400;
    --fw-light: 400;

    --f6y8: 0px;
    --f7y4: 0px;
    --f8no: 0px;
    --f9d1: 0px;
    --f4xp: 0px;

    --transition: all 0.15s ease;
    --transition-slow: all 0.3s ease;

    --f10za: 3px 3px 0 #000;
    --f11bb: 5px 5px 0 #000;
    --f12w6: 8px 8px 0 #000;
    --f13yn: 12px 12px 0 #000;

    --sc_tadzhv: 80px 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(--f5mp);
    font-size: var(--f17xm);
    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(--f14fn);
    transition: var(--transition);
    font-weight: var(--fw-medium);
}

a:hover {
    color: var(--text-primary);
    text-decoration: underline 3px wavy var(--f14fn);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--f14fn);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f3rg);
    font-weight: var(--f18ja);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: var(--f19z6); }
h2 { font-size: var(--f20p5); }
h3 { font-size: var(--f21me); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--f1q9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--f14fn); }
.text-accent-2 { color: var(--f15at); }
.text-dark { color: var(--text-primary); }
.sc_zmkpby { color: var(--text-muted); }

.sc_tadzhv { padding: var(--sc_tadzhv); position: relative; }
.sc_tadzhv-sm { padding: 50px 0; }
.sc_tadzhv-lg { padding: 120px 0; }
.sc_tadzhv > .container { position: relative; z-index: 1; }

.sc_rnicz4 { background-color: var(--bg-primary); }
.sc_p8eh6k { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--f1q9); }
.bg-gradient-custom {
    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_l2s4g7) { color: #fff; }
.bg-gradient-custom .sc_rweycl { color: #fff; }
.bg-gradient-custom .sc_tdeyni { color: rgba(255,255,255,0.7); }

.sc_hx16jw {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
}
.sc_hx16jw h1, .sc_hx16jw h2, .sc_hx16jw h3,
.sc_hx16jw h4, .sc_hx16jw h5, .sc_hx16jw h6 { color: #fff; }
.sc_hx16jw p, .sc_hx16jw li, .sc_hx16jw span:not(.badge) { color: rgba(255,255,255,0.8); }
.sc_hx16jw a:not(.sc_l2s4g7) { color: rgba(255,255,255,0.85); }
.sc_hx16jw a:not(.sc_l2s4g7):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_v9vmmi {
    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.3s ease, visibility 0.3s ease;
}
.sc_v9vmmi.loaded { opacity: 0; visibility: hidden; }
.sc_x2ua4l { display: flex; gap: 8px; }
.sc_etbrsn {
    width: 16px; height: 16px;
    background: var(--text-primary);
    animation: sc_v9vmmiBounce 1.4s ease-in-out infinite both;
}
.sc_etbrsn:nth-child(1) { animation-delay: -0.32s; }
.sc_etbrsn:nth-child(2) { animation-delay: -0.16s; background: var(--f14fn); }
.sc_etbrsn:nth-child(3) { animation-delay: 0; }

@keyframes sc_v9vmmiBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.sc_l2s4g7 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: var(--f17xm);
    font-weight: var(--f18ja);
    border-radius: 0;
    transition: var(--transition);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.sc_nvvft0 {
    background: var(--f14fn);
    color: #fff;
    box-shadow: var(--f11bb);
    border-color: var(--text-primary);
}

.sc_nvvft0:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
    color: #fff;
}

.sc_q74mkv {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--f10za);
}

.sc_q74mkv:hover {
    background: var(--f15at);
    color: var(--text-primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--f14fn);
    padding: 0;
    font-weight: var(--f18ja);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-link-custom:hover { color: var(--text-primary); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(6px); }

.sc_qxxxps {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.sc_qxxxps.scrolled {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--text-primary);
    padding: 10px 0;
}

.sc_xomtkf {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_oks016 {
    font-size: 28px;
    font-weight: var(--f18ja);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.sc_oks016:hover { color: var(--text-primary); }

.sc_opx6d8 { display: flex; align-items: center; gap: 28px; }

.sc_opx6d8 .nav-link {
    color: var(--text-primary);
    font-size: var(--fs-small);
    font-weight: var(--f18ja);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc_opx6d8 .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--f14fn);
    transition: width 0.2s ease;
}

.sc_opx6d8 .nav-link:hover,
.sc_opx6d8 .nav-link.active { color: var(--f14fn); }
.sc_opx6d8 .nav-link:hover::after,
.sc_opx6d8 .nav-link.active::after { width: 100%; }

.sc_n4f3wq { margin-left: 16px; }

.sc_wcytzv, .sc_a9x5ww { display: flex; align-items: center; gap: 28px; }
.sc_wcytzv .nav-link, .sc_a9x5ww .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--f18ja); padding: 8px 0; text-transform: uppercase;
}
.sc_wcytzv .nav-link:hover, .sc_a9x5ww .nav-link:hover { color: var(--f14fn); }
.sc_wcytzv ~ .sc_opx6d8 { display: none; }

.sc_thx0i5 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 3px solid var(--text-primary);
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.sc_thx0i5 .sc_owt00p {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sc_thx0i5.active .sc_owt00p:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.sc_thx0i5.active .sc_owt00p:nth-child(2) { opacity: 0; }
.sc_thx0i5.active .sc_owt00p:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.sc_d69wt2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
    border-bottom: 4px solid var(--text-primary);
}

.sc_d69wt2 .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.sc_d69wt2 .sc_ec7kby {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 50%, var(--bg-secondary) 100%);
}

.sc_dcwp0i { position: relative; z-index: 2; }

.sc_m6vyil {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--f18ja);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--f15at);
    border: 2px solid var(--text-primary);
    box-shadow: var(--f10za);
}

.sc_fvmxs3 {
    font-size: var(--f19z6);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.sc_n94sze {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: var(--fw-medium);
}

.sc_q2o7in { display: flex; gap: 16px; flex-wrap: wrap; }

.sc_nk4diw { position: relative; z-index: 2; }
.sc_nk4diw img {
    border: 4px solid var(--text-primary);
    box-shadow: var(--f13yn);
}

.sc_bgfbmi { margin-bottom: 60px; }

.sc_km93gk {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--f18ja);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--f15at);
    border: 2px solid var(--text-primary);
}

.sc_b0garh {
    font-size: var(--f20p5);
    font-weight: var(--f18ja);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sc_fimin7 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}
.sc_bgfbmi.text-center .sc_fimin7 {
    margin-left: auto;
    margin-right: auto;
}

.sc_c3cqsz {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--f11bb);
}

.sc_c3cqsz:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
    background: var(--bg-card-hover);
}

.sc_c3cqsz .sc_htrv65 {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--f14fn);
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: 3px 3px 0 #000;
}

.sc_c3cqsz:hover .sc_htrv65 {
    background: var(--f15at);
    color: var(--text-primary);
}

.sc_c3cqsz .sc_golod0 {
    font-size: var(--fs-h5);
    font-weight: var(--f18ja);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.sc_c3cqsz .sc_cdbx21 {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_c3cqsz-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--f10za);
}
.sc_c3cqsz-horizontal:hover {
    box-shadow: var(--f11bb);
    transform: translate(-2px, -2px);
}
.sc_c3cqsz-horizontal .sc_htrv65 {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--f14fn);
    color: #fff;
    font-size: 22px;
    border: 2px solid var(--text-primary);
}

.about-section .about-image {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--text-primary);
    box-shadow: var(--f12w6);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--f15at);
    color: var(--text-primary);
    padding: 16px 20px;
    text-align: center;
    border: 3px solid var(--text-primary);
    box-shadow: var(--f10za);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--f18ja);
    line-height: 1;
}
.experience-badge .badge-text { font-size: var(--fs-small); }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 2px dashed var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--f14fn); font-size: 16px; }

.sc_xifkil {
    background: var(--text-primary);
    color: #fff;
    border-top: 4px solid var(--f14fn);
    border-bottom: 4px solid var(--f14fn);
}
.counter-item { text-align: center; padding: 20px; }
.sc_rweycl {
    font-size: 56px;
    font-weight: var(--f18ja);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.sc_rweycl .counter-suffix { color: var(--f14fn); }
.sc_tdeyni {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sc_s0uw6b {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--f11bb);
}
.sc_s0uw6b:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.sc_s0uw6b .sc_tonbvw {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-bottom: 3px solid var(--text-primary);
}
.sc_s0uw6b .sc_tonbvw img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}
.sc_s0uw6b:hover .sc_tonbvw img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.sc_s0uw6b .sc_tonbvw .card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--f15at);
    color: var(--text-primary);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--f18ja);
    text-transform: uppercase;
    border: 2px solid var(--text-primary);
}
.sc_s0uw6b .card-body { padding: 24px; }
.sc_s0uw6b .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--f18ja);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.sc_s0uw6b .card-title a { color: var(--text-primary); }
.sc_s0uw6b .card-title a:hover { color: var(--f14fn); }
.sc_s0uw6b .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.sc_s0uw6b .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px dashed var(--text-primary);
}
.sc_s0uw6b .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--f18ja);
    color: var(--f14fn);
}

.sc_ea15d9 { text-align: center; transition: var(--transition); }
.sc_ea15d9:hover { transform: translate(-3px, -3px); }
.sc_ea15d9 .sc_wsptbe {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--f11bb);
}
.sc_ea15d9 .sc_wsptbe img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.4s ease;
}
.sc_ea15d9:hover .sc_wsptbe img { filter: grayscale(0%); transform: scale(1.03); }
.sc_ea15d9 .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_ea15d9:hover .team-social { bottom: 0; }
.team-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--f14fn);
    color: #fff;
    font-size: 14px;
    border: 2px solid #fff;
    transition: var(--transition);
}
.team-social a:hover { background: var(--f15at); color: var(--text-primary); }
.sc_ea15d9 .sc_l4h9zd {
    font-size: var(--fs-h5);
    font-weight: var(--f18ja);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.sc_ea15d9 .sc_tnu0vs {
    font-size: var(--fs-small);
    color: var(--f14fn);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sc_o76x5v {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--f11bb);
    position: relative;
}
.sc_o76x5v:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.sc_o76x5v::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--f14fn);
}
.sc_o76x5v .quote-icon {
    font-size: 36px;
    color: var(--f14fn);
    margin-bottom: 16px;
}
.sc_o76x5v .sc_v19yp6 {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: var(--fw-medium);
    border-left: none;
}
.sc_o76x5v .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sc_o76x5v .sc_wmujd6 {
    width: 56px; height: 56px;
    object-fit: cover;
    border: 3px solid var(--text-primary);
}
.sc_o76x5v .sc_vxb6xf {
    font-size: var(--f17xm);
    font-weight: var(--f18ja);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sc_o76x5v .sc_kuzuk3 {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.sc_o76x5v .stars {
    color: var(--f14fn);
    margin-bottom: 14px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--text-primary);
    box-shadow: var(--f11bb);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(30%);
}
.portfolio-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--f15at);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--f18ja);
    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: 3px solid var(--text-primary) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--f10za);
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--f18ja);
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--f15at);
    color: var(--text-primary);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sc_gwres0 {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--f11bb);
}
.sc_gwres0.featured {
    background: var(--f15at);
    border-color: var(--text-primary);
    box-shadow: var(--f12w6);
    color: var(--text-primary);
}
.sc_gwres0.featured h1, .sc_gwres0.featured h2, .sc_gwres0.featured h3, .sc_gwres0.featured h4, .sc_gwres0.featured h5, .sc_gwres0.featured h6, .sc_gwres0.featured p, .sc_gwres0.featured .sc_d6lc2o, .sc_gwres0.featured .sc_rp0jo9, .sc_gwres0.featured .plan-period, .sc_gwres0.featured .sc_ol0q27 li, .sc_gwres0.featured .currency { color: var(--text-primary); }
.sc_gwres0.featured .sc_zmkpby, .sc_gwres0.featured .text-muted, .sc_gwres0.featured small { color: var(--text-primary); opacity: 0.75; }
.sc_gwres0.featured .sc_ol0q27 li i { color: var(--text-primary); }
.sc_gwres0.featured .sc_l2s4g7.sc_q74mkv { background: var(--text-primary); color: var(--f15at); border-color: var(--text-primary); }
.sc_gwres0.featured::before {
    content: '★ BEST';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--f14fn);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--f18ja);
    letter-spacing: 2px;
    border: 2px solid var(--text-primary);
    border-top: none;
}
.sc_gwres0:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.sc_gwres0 .sc_d6lc2o {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: var(--f18ja);
}
.sc_gwres0 .sc_rp0jo9 {
    font-size: 60px;
    font-weight: var(--f18ja);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.sc_gwres0 .sc_rp0jo9 .currency {
    font-size: 28px;
    vertical-align: top;
    color: var(--f14fn);
}
.sc_gwres0 .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
.sc_gwres0 .sc_ol0q27 {
    text-align: left;
    margin-bottom: 28px;
}
.sc_gwres0 .sc_ol0q27 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 2px dashed var(--text-primary);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.sc_gwres0 .sc_ol0q27 li:last-child { border-bottom: none; }
.sc_gwres0 .sc_ol0q27 li i { color: var(--f14fn); }
.sc_gwres0 .sc_ol0q27 li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

.sc_euolk3 {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--f11bb);
}
.sc_euolk3:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.sc_euolk3 .sc_tonbvw { height: 200px; overflow: hidden; border-bottom: 3px solid var(--text-primary); }
.sc_euolk3 .sc_tonbvw img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sc_euolk3:hover .sc_tonbvw img { transform: scale(1.05); }
.sc_euolk3 .card-body { padding: 24px; }
.sc_euolk3 .sc_lfpxbp {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sc_euolk3 .sc_lfpxbp i { margin-right: 4px; color: var(--f14fn); }
.sc_euolk3 .card-title {
    font-size: 18px;
    font-weight: var(--f18ja);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
.sc_euolk3 .card-title a { color: var(--text-primary); }
.sc_euolk3 .card-title a:hover { color: var(--f14fn); }

.sc_e0hthd {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--f14fn);
    border-bottom: 6px solid var(--f14fn);
}
.sc_e0hthd .cta-content { position: relative; z-index: 2; }
.sc_e0hthd .sc_xnpyjf { font-size: var(--f20p5); color: #fff; }
.sc_e0hthd .sc_thabrf { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
.sc_e0hthd p, .sc_e0hthd li { color: rgba(255,255,255,0.7); }
.sc_e0hthd .sc_l2s4g7 {
    background: var(--f14fn);
    color: #fff;
    border-color: #fff;
}
.sc_e0hthd .sc_l2s4g7:hover {
    background: var(--f15at);
    color: var(--text-primary);
    transform: translate(-3px, -3px);
}
.sc_e0hthd .cta-shape { display: none; }

.newsletter-form {
    display: flex; gap: 0; max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--f17xm);
    font-weight: var(--fw-medium);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--f14fn); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item .sc_eeluag {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--f14fn);
    color: #fff;
    font-size: 28px;
    font-weight: var(--f18ja);
    margin: 0 auto 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--f10za);
}
.process-item .sc_h1dtdl {
    font-size: var(--fs-h5);
    font-weight: var(--f18ja);
    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: 28px; right: -18px;
    font-size: 28px;
    font-weight: var(--f18ja);
    color: var(--f14fn);
}

.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(--f18ja);
    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%); }
}

.sc_mlsmjp {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    border-top: 6px solid var(--f14fn);
}
.sc_mlsmjp h1, .sc_mlsmjp h2, .sc_mlsmjp h3,
.sc_mlsmjp h4, .sc_mlsmjp h5 { color: #fff; }

.sc_pjieew .sc_ucff0r {
    font-size: 18px;
    font-weight: var(--f18ja);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}
.sc_pjieew .sc_ucff0r::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--f14fn);
}
.sc_pjieew p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
.sc_v3evc1 a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
.sc_v3evc1 a:hover {
    color: var(--f14fn);
    text-decoration: none;
    padding-left: 8px;
}
.sc_v3evc1 li { margin-bottom: 10px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
}
.footer-contact li i { color: var(--f14fn); margin-top: 4px; }
.sc_tfkl5f { display: flex; gap: 8px; margin-top: 20px; }
.sc_tfkl5f a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--f14fn);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: var(--transition);
}
.sc_tfkl5f a:hover {
    background: var(--f15at);
    color: var(--text-primary);
}
.sc_upj0ue {
    border-top: 2px dashed rgba(255,255,255,0.15);
    padding: 24px 0;
    margin-top: 60px;
}
.sc_upj0ue p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.4); }

.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.4); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--f14fn); }

.policy-content h1 { font-size: var(--f20p5); 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(--f14fn); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.sc_h2hnmi {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--f14fn);
    color: #fff;
    border: 3px solid var(--text-primary);
    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(--f10za);
}
.sc_h2hnmi.visible { opacity: 1; visibility: visible; }
.sc_h2hnmi:hover { transform: translate(-3px, -3px); box-shadow: var(--f11bb); }

.sc_a264ed .form-control {
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--f17xm);
}
.sc_a264ed .form-control:focus {
    border-color: var(--f14fn);
    box-shadow: 4px 4px 0 var(--f14fn);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.sc_a264ed .form-control::placeholder { color: var(--text-muted); }
.sc_a264ed textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--text-primary); opacity: 0.3; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { background: var(--f14fn); opacity: 1; width: 12px; }
.swiper-button-prev,
.swiper-button-next {
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    color: var(--text-primary);
    box-shadow: var(--f10za);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--f14fn);
    color: #fff;
}

.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); }
}
.float-anim { animation: floatUpDown 2.5s ease-in-out infinite; }

@media (max-width: 1200px) { :root { --f19z6: 52px; --f20p5: 40px; } }

@media (max-width: 992px) {
    :root { --f19z6: 42px; --f20p5: 34px; --f21me: 26px; --sc_tadzhv: 70px 0; }
    .sc_opx6d8 {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 3px solid var(--text-primary);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.25s ease;
        overflow-y: auto;
    }
    .sc_opx6d8.active { right: 0; }
    .sc_opx6d8 .nav-link {
        display: block !important;
        font-size: 18px !important; padding: 14px 0 !important;
        border-bottom: 2px solid var(--text-primary); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .sc_opx6d8 .nav-link:hover, .sc_opx6d8 .nav-link.active { color: var(--f14fn) !important; }
    .sc_opx6d8 .nav-link::after { display: none; }
    .sc_n4f3wq { display: none !important; }
    .sc_thx0i5 {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .sc_zgev4b {
        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;
    }
    .sc_zgev4b.active { opacity: 1; visibility: visible; }
    .sc_fvmxs3 { font-size: var(--f19z6); }
    .process-item:not(:last-child)::after { display: none; }
    .sc_rweycl { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --f19z6: 36px; --f20p5: 28px; --f21me: 22px; --fs-h4: 20px; --sc_tadzhv: 60px 0; }
    .sc_bgfbmi { margin-bottom: 40px; }
    .sc_d69wt2 { min-height: auto; padding: 140px 0 80px; }
    .sc_q2o7in { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_gwres0 .sc_rp0jo9 { font-size: 44px; }
    .sc_upj0ue { text-align: center; }
}

@media (max-width: 576px) {
    :root { --f19z6: 30px; --f20p5: 24px; --f21me: 20px; --sc_tadzhv: 50px 0; }
    .sc_o76x5v { padding: 24px; }
    .sc_gwres0 { padding: 24px; }
    .sc_c3cqsz { padding: 24px 18px; }
}

.sc_hx16jw .sc_m6vyil { color: #fff; }
.sc_hx16jw .sc_km93gk { color: var(--f14fn); }
.sc_hx16jw .sc_zmkpby { color: rgba(255,255,255,0.55); }
.sc_hx16jw .sc_v3evc1 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_hx16jw .sc_v3evc1 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(--f14fn) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }

.sc_qxxxps:not(.scrolled) .sc_oks016,
.sc_qxxxps:not(.scrolled) .nav-link {
    color: #fff !important;
}
.sc_qxxxps:not(.scrolled) .nav-link:hover {
    color: #fff !important;
    opacity: 0.85;
}
.sc_qxxxps:not(.scrolled) .sc_q74mkv {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
}
.sc_qxxxps:not(.scrolled) .sc_q74mkv:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-color: #fff !important;
}

.sc_qxxxps.scrolled .sc_oks016,
.sc_qxxxps.scrolled .nav-link {
    color: var(--text-primary) !important;
}
.sc_qxxxps.scrolled .nav-link:hover {
    color: var(--f14fn) !important;
    opacity: 1;
}
.sc_qxxxps.scrolled .sc_q74mkv {
    color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
    background: transparent !important;
}
.sc_qxxxps.scrolled .sc_q74mkv:hover {
    background: var(--text-primary) !important;
    color: var(--bg-primary, #fff) !important;
    border-color: var(--text-primary) !important;
}

