

: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;

    --y14y0: #ff5722;
    --y15cn: #ffeb3b;
    --y1y6: linear-gradient(135deg, var(--y14y0), var(--y15cn));
    --accent-glow: 4px 4px 0 var(--y14y0);

    --y3nk: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --y5p8: 'Inter', system-ui, sans-serif;

    --y19om: 64px;
    --y20p3: 48px;
    --y21fg: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --y17xs: 16px;
    --fs-small: 14px;

    --y18xv: 900;
    --fw-semibold: 700;
    --fw-medium: 600;
    --fw-regular: 400;
    --fw-light: 400;

    --y6g8: 0px;
    --y7rs: 0px;
    --y8cf: 0px;
    --y9p8: 0px;
    --y4et: 0px;

    --transition: all 0.15s ease;
    --transition-slow: all 0.3s ease;

    --y10el: 3px 3px 0 #000;
    --y11po: 5px 5px 0 #000;
    --y12xx: 8px 8px 0 #000;
    --y13aw: 12px 12px 0 #000;

    --sc_sy1p4y: 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(--y5p8);
    font-size: var(--y17xs);
    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(--y14y0);
    transition: var(--transition);
    font-weight: var(--fw-medium);
}

a:hover {
    color: var(--text-primary);
    text-decoration: underline 3px wavy var(--y14y0);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--y14y0);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--y3nk);
    font-weight: var(--y18xv);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: var(--y19om); }
h2 { font-size: var(--y20p3); }
h3 { font-size: var(--y21fg); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--y1y6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--y14y0); }
.text-accent-2 { color: var(--y15cn); }
.text-dark { color: var(--text-primary); }
.sc_rucjv0 { color: var(--text-muted); }

.sc_sy1p4y { padding: var(--sc_sy1p4y); position: relative; }
.sc_sy1p4y-sm { padding: 50px 0; }
.sc_sy1p4y-lg { padding: 120px 0; }
.sc_sy1p4y > .container { position: relative; z-index: 1; }

.sc_b0wvpc { background-color: var(--bg-primary); }
.sc_o003ry { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--y1y6); }
.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_z7gv1b) { color: #fff; }
.bg-gradient-custom .sc_kjkmkf { color: #fff; }
.bg-gradient-custom .sc_gnlq8g { color: rgba(255,255,255,0.7); }

.sc_suvv9s {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
}
.sc_suvv9s h1, .sc_suvv9s h2, .sc_suvv9s h3,
.sc_suvv9s h4, .sc_suvv9s h5, .sc_suvv9s h6 { color: #fff; }
.sc_suvv9s p, .sc_suvv9s li, .sc_suvv9s span:not(.badge) { color: rgba(255,255,255,0.8); }
.sc_suvv9s a:not(.sc_z7gv1b) { color: rgba(255,255,255,0.85); }
.sc_suvv9s a:not(.sc_z7gv1b):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_rv4vli {
    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_rv4vli.loaded { opacity: 0; visibility: hidden; }
.sc_vhm2t1 { display: flex; gap: 8px; }
.sc_o770kb {
    width: 16px; height: 16px;
    background: var(--text-primary);
    animation: sc_rv4vliBounce 1.4s ease-in-out infinite both;
}
.sc_o770kb:nth-child(1) { animation-delay: -0.32s; }
.sc_o770kb:nth-child(2) { animation-delay: -0.16s; background: var(--y14y0); }
.sc_o770kb:nth-child(3) { animation-delay: 0; }

@keyframes sc_rv4vliBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.sc_z7gv1b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: var(--y17xs);
    font-weight: var(--y18xv);
    border-radius: 0;
    transition: var(--transition);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.sc_ifpnj4 {
    background: var(--y14y0);
    color: #fff;
    box-shadow: var(--y11po);
    border-color: var(--text-primary);
}

.sc_ifpnj4:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
    color: #fff;
}

.sc_eihcza {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--y10el);
}

.sc_eihcza:hover {
    background: var(--y15cn);
    color: var(--text-primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--y14y0);
    padding: 0;
    font-weight: var(--y18xv);
    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_bl0b5p {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.sc_bl0b5p.scrolled {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--text-primary);
    padding: 10px 0;
}

.sc_y49b92 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_ksj8ph {
    font-size: 28px;
    font-weight: var(--y18xv);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.sc_ksj8ph:hover { color: var(--text-primary); }

.sc_t6d8oc { display: flex; align-items: center; gap: 28px; }

.sc_t6d8oc .nav-link {
    color: var(--text-primary);
    font-size: var(--fs-small);
    font-weight: var(--y18xv);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc_t6d8oc .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--y14y0);
    transition: width 0.2s ease;
}

.sc_t6d8oc .nav-link:hover,
.sc_t6d8oc .nav-link.active { color: var(--y14y0); }
.sc_t6d8oc .nav-link:hover::after,
.sc_t6d8oc .nav-link.active::after { width: 100%; }

.sc_o811hl { margin-left: 16px; }

.sc_vz58l1, .sc_qqj4hc { display: flex; align-items: center; gap: 28px; }
.sc_vz58l1 .nav-link, .sc_qqj4hc .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--y18xv); padding: 8px 0; text-transform: uppercase;
}
.sc_vz58l1 .nav-link:hover, .sc_qqj4hc .nav-link:hover { color: var(--y14y0); }
.sc_vz58l1 ~ .sc_t6d8oc { display: none; }

.sc_yefuiu {
    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_yefuiu .sc_qa5ish {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sc_yefuiu.active .sc_qa5ish:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.sc_yefuiu.active .sc_qa5ish:nth-child(2) { opacity: 0; }
.sc_yefuiu.active .sc_qa5ish:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.sc_fy1dke {
    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_fy1dke .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.sc_fy1dke .sc_t1fg94 {
    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_yr9bd8 { position: relative; z-index: 2; }

.sc_apfaq9 {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--y18xv);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #000000 !important;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--y15cn);
    border: 2px solid var(--text-primary);
    box-shadow: var(--y10el);
}

.sc_uwu0jd {
    font-size: var(--y19om);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: #000000 !important;
    letter-spacing: -2px;
}

.sc_t99tc5 {
    font-size: 20px;
    color: #000000 !important;
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: var(--fw-medium);
}

.sc_qwcw5u { display: flex; gap: 16px; flex-wrap: wrap; }

.sc_vfzjwe { position: relative; z-index: 2; }
.sc_vfzjwe img {
    border: 4px solid var(--text-primary);
    box-shadow: var(--y13aw);
}

.sc_a7wxjq { margin-bottom: 60px; }

.sc_kpvh6i {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--y18xv);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--y15cn);
    border: 2px solid var(--text-primary);
}

.sc_r8k7ou {
    font-size: var(--y20p3);
    font-weight: var(--y18xv);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sc_bo1w3b {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}
.sc_a7wxjq.text-center .sc_bo1w3b {
    margin-left: auto;
    margin-right: auto;
}

.sc_m7l2lh {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--y11po);
}

.sc_m7l2lh:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
    background: var(--bg-card-hover);
}

.sc_m7l2lh .sc_nhz8py {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y14y0);
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: 3px 3px 0 #000;
}

.sc_m7l2lh:hover .sc_nhz8py {
    background: var(--y15cn);
    color: var(--text-primary);
}

.sc_m7l2lh .sc_n59den {
    font-size: var(--fs-h5);
    font-weight: var(--y18xv);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.sc_m7l2lh .sc_bas0d1 {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_m7l2lh-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--y10el);
}
.sc_m7l2lh-horizontal:hover {
    box-shadow: var(--y11po);
    transform: translate(-2px, -2px);
}
.sc_m7l2lh-horizontal .sc_nhz8py {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y14y0);
    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(--y12xx);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--y15cn);
    color: var(--text-primary);
    padding: 16px 20px;
    text-align: center;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y10el);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--y18xv);
    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(--y14y0); font-size: 16px; }

.sc_odonxo {
    background: var(--text-primary);
    color: #fff;
    border-top: 4px solid var(--y14y0);
    border-bottom: 4px solid var(--y14y0);
}
.counter-item { text-align: center; padding: 20px; }
.sc_kjkmkf {
    font-size: 56px;
    font-weight: var(--y18xv);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.sc_kjkmkf .counter-suffix { color: var(--y14y0); }
.sc_gnlq8g {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sc_o5gssj {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--y11po);
}
.sc_o5gssj:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.sc_o5gssj .sc_s2aq6y {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-bottom: 3px solid var(--text-primary);
}
.sc_o5gssj .sc_s2aq6y img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}
.sc_o5gssj:hover .sc_s2aq6y img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.sc_o5gssj .sc_s2aq6y .card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--y15cn);
    color: var(--text-primary);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--y18xv);
    text-transform: uppercase;
    border: 2px solid var(--text-primary);
}
.sc_o5gssj .card-body { padding: 24px; }
.sc_o5gssj .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--y18xv);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.sc_o5gssj .card-title a { color: var(--text-primary); }
.sc_o5gssj .card-title a:hover { color: var(--y14y0); }
.sc_o5gssj .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.sc_o5gssj .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px dashed var(--text-primary);
}
.sc_o5gssj .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--y18xv);
    color: var(--y14y0);
}

.sc_xzffgi { text-align: center; transition: var(--transition); }
.sc_xzffgi:hover { transform: translate(-3px, -3px); }
.sc_xzffgi .sc_lnpydr {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y11po);
}
.sc_xzffgi .sc_lnpydr img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.4s ease;
}
.sc_xzffgi:hover .sc_lnpydr img { filter: grayscale(0%); transform: scale(1.03); }
.sc_xzffgi .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_xzffgi:hover .team-social { bottom: 0; }
.team-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y14y0);
    color: #fff;
    font-size: 14px;
    border: 2px solid #fff;
    transition: var(--transition);
}
.team-social a:hover { background: var(--y15cn); color: var(--text-primary); }
.sc_xzffgi .sc_b0vgfu {
    font-size: var(--fs-h5);
    font-weight: var(--y18xv);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.sc_xzffgi .sc_msntcn {
    font-size: var(--fs-small);
    color: var(--y14y0);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sc_ayh64w {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--y11po);
    position: relative;
}
.sc_ayh64w:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.sc_ayh64w::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--y14y0);
}
.sc_ayh64w .quote-icon {
    font-size: 36px;
    color: var(--y14y0);
    margin-bottom: 16px;
}
.sc_ayh64w .sc_rtur8v {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: var(--fw-medium);
    border-left: none;
}
.sc_ayh64w .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sc_ayh64w .sc_iez8wr {
    width: 56px; height: 56px;
    object-fit: cover;
    border: 3px solid var(--text-primary);
}
.sc_ayh64w .sc_o6emhf {
    font-size: var(--y17xs);
    font-weight: var(--y18xv);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sc_ayh64w .sc_fq3ivb {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.sc_ayh64w .stars {
    color: var(--y14y0);
    margin-bottom: 14px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y11po);
}
.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(--y15cn);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--y18xv);
    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(--y10el);
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--y18xv);
    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(--y15cn);
    color: var(--text-primary);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sc_pfj26j {
    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(--y11po);
}
.sc_pfj26j.featured {
    background: var(--y15cn);
    border-color: var(--text-primary);
    box-shadow: var(--y12xx);
}
.sc_pfj26j.featured::before {
    content: '★ BEST';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--y14y0);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--y18xv);
    letter-spacing: 2px;
    border: 2px solid var(--text-primary);
    border-top: none;
}
.sc_pfj26j:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.sc_pfj26j .sc_b5wn0a {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: var(--y18xv);
}
.sc_pfj26j .sc_hxquz2 {
    font-size: 60px;
    font-weight: var(--y18xv);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.sc_pfj26j .sc_hxquz2 .currency {
    font-size: 28px;
    vertical-align: top;
    color: var(--y14y0);
}
.sc_pfj26j .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
.sc_pfj26j .sc_qypixf {
    text-align: left;
    margin-bottom: 28px;
}
.sc_pfj26j .sc_qypixf 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_pfj26j .sc_qypixf li:last-child { border-bottom: none; }
.sc_pfj26j .sc_qypixf li i { color: var(--y14y0); }
.sc_pfj26j .sc_qypixf li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

.sc_vfdfrs {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--y11po);
}
.sc_vfdfrs:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.sc_vfdfrs .sc_s2aq6y { height: 200px; overflow: hidden; border-bottom: 3px solid var(--text-primary); }
.sc_vfdfrs .sc_s2aq6y img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sc_vfdfrs:hover .sc_s2aq6y img { transform: scale(1.05); }
.sc_vfdfrs .card-body { padding: 24px; }
.sc_vfdfrs .sc_vekc24 {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sc_vfdfrs .sc_vekc24 i { margin-right: 4px; color: var(--y14y0); }
.sc_vfdfrs .card-title {
    font-size: 18px;
    font-weight: var(--y18xv);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
.sc_vfdfrs .card-title a { color: var(--text-primary); }
.sc_vfdfrs .card-title a:hover { color: var(--y14y0); }

.sc_qynpz0 {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--y14y0);
    border-bottom: 6px solid var(--y14y0);
}
.sc_qynpz0 .cta-content { position: relative; z-index: 2; }
.sc_qynpz0 .sc_dquj0r { font-size: var(--y20p3); color: #fff; }
.sc_qynpz0 .sc_jx2kie { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
.sc_qynpz0 p, .sc_qynpz0 li { color: rgba(255,255,255,0.7); }
.sc_qynpz0 .sc_z7gv1b {
    background: var(--y14y0);
    color: #fff;
    border-color: #fff;
}
.sc_qynpz0 .sc_z7gv1b:hover {
    background: var(--y15cn);
    color: var(--text-primary);
    transform: translate(-3px, -3px);
}
.sc_qynpz0 .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(--y17xs);
    font-weight: var(--fw-medium);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--y14y0); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item .sc_op9kiz {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y14y0);
    color: #fff;
    font-size: 28px;
    font-weight: var(--y18xv);
    margin: 0 auto 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y10el);
}
.process-item .sc_qrqvgo {
    font-size: var(--fs-h5);
    font-weight: var(--y18xv);
    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(--y18xv);
    color: var(--y14y0);
}

.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(--y18xv);
    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_godphm {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    border-top: 6px solid var(--y14y0);
}
.sc_godphm h1, .sc_godphm h2, .sc_godphm h3,
.sc_godphm h4, .sc_godphm h5 { color: #fff; }

.sc_ppu04h .sc_edvrs7 {
    font-size: 18px;
    font-weight: var(--y18xv);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}
.sc_ppu04h .sc_edvrs7::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--y14y0);
}
.sc_ppu04h p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
.sc_fsf4z3 a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
.sc_fsf4z3 a:hover {
    color: var(--y14y0);
    text-decoration: none;
    padding-left: 8px;
}
.sc_fsf4z3 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(--y14y0); margin-top: 4px; }
.sc_xht1a6 { display: flex; gap: 8px; margin-top: 20px; }
.sc_xht1a6 a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y14y0);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: var(--transition);
}
.sc_xht1a6 a:hover {
    background: var(--y15cn);
    color: var(--text-primary);
}
.sc_a8p0dv {
    border-top: 2px dashed rgba(255,255,255,0.15);
    padding: 24px 0;
    margin-top: 60px;
}
.sc_a8p0dv 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(--y14y0); }

.policy-content h1 { font-size: var(--y20p3); 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(--y14y0); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.sc_vs6twr {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--y14y0);
    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(--y10el);
}
.sc_vs6twr.visible { opacity: 1; visibility: visible; }
.sc_vs6twr:hover { transform: translate(-3px, -3px); box-shadow: var(--y11po); }

.sc_vn0doi .form-control {
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--y17xs);
}
.sc_vn0doi .form-control:focus {
    border-color: var(--y14y0);
    box-shadow: 4px 4px 0 var(--y14y0);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.sc_vn0doi .form-control::placeholder { color: var(--text-muted); }
.sc_vn0doi 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(--y14y0); 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(--y10el);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--y14y0);
    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 { --y19om: 52px; --y20p3: 40px; } }

@media (max-width: 992px) {
    :root { --y19om: 42px; --y20p3: 34px; --y21fg: 26px; --sc_sy1p4y: 70px 0; }
    .sc_t6d8oc {
        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_t6d8oc.active { right: 0; }
    .sc_t6d8oc .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_t6d8oc .nav-link:hover, .sc_t6d8oc .nav-link.active { color: var(--y14y0) !important; }
    .sc_t6d8oc .nav-link::after { display: none; }
    .sc_o811hl { display: none !important; }
    .sc_yefuiu {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .sc_e6l2u7 {
        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_e6l2u7.active { opacity: 1; visibility: visible; }
    .sc_uwu0jd { font-size: var(--y19om); }
    .process-item:not(:last-child)::after { display: none; }
    .sc_kjkmkf { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --y19om: 36px; --y20p3: 28px; --y21fg: 22px; --fs-h4: 20px; --sc_sy1p4y: 60px 0; }
    .sc_a7wxjq { margin-bottom: 40px; }
    .sc_fy1dke { min-height: auto; padding: 140px 0 80px; }
    .sc_qwcw5u { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_pfj26j .sc_hxquz2 { font-size: 44px; }
    .sc_a8p0dv { text-align: center; }
}

@media (max-width: 576px) {
    :root { --y19om: 30px; --y20p3: 24px; --y21fg: 20px; --sc_sy1p4y: 50px 0; }
    .sc_ayh64w { padding: 24px; }
    .sc_pfj26j { padding: 24px; }
    .sc_m7l2lh { padding: 24px 18px; }
}

.sc_suvv9s .sc_apfaq9 { color: #fff; }
.sc_suvv9s .sc_kpvh6i { color: var(--y14y0); }
.sc_suvv9s .sc_rucjv0 { color: rgba(255,255,255,0.55); }
.sc_suvv9s .sc_fsf4z3 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_suvv9s .sc_fsf4z3 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(--y14y0) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
