

: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;

    --s14yl: #ff5722;
    --s15uu: #ffeb3b;
    --s1st: linear-gradient(135deg, var(--s14yl), var(--s15uu));
    --accent-glow: 4px 4px 0 var(--s14yl);

    --s3fl: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --s5yy: 'Inter', system-ui, sans-serif;

    --s19lp: 64px;
    --s20br: 48px;
    --s21gx: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --s17py: 16px;
    --fs-small: 14px;

    --s18il: 900;
    --fw-semibold: 700;
    --fw-medium: 600;
    --fw-regular: 400;
    --fw-light: 400;

    --s6w0: 0px;
    --s7u0: 0px;
    --s8vg: 0px;
    --s9cz: 0px;
    --s4bg: 0px;

    --transition: all 0.15s ease;
    --transition-slow: all 0.3s ease;

    --s10hc: 3px 3px 0 #000;
    --s11dv: 5px 5px 0 #000;
    --s12u8: 8px 8px 0 #000;
    --s13p3: 12px 12px 0 #000;

    --sc_fa2u4j: 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(--s5yy);
    font-size: var(--s17py);
    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(--s14yl);
    transition: var(--transition);
    font-weight: var(--fw-medium);
}

a:hover {
    color: var(--text-primary);
    text-decoration: underline 3px wavy var(--s14yl);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--s14yl);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--s3fl);
    font-weight: var(--s18il);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: var(--s19lp); }
h2 { font-size: var(--s20br); }
h3 { font-size: var(--s21gx); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--s1st);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--s14yl); }
.text-accent-2 { color: var(--s15uu); }
.text-dark { color: var(--text-primary); }
.sc_ii7k21 { color: var(--text-muted); }

.sc_fa2u4j { padding: var(--sc_fa2u4j); position: relative; }
.sc_fa2u4j-sm { padding: 50px 0; }
.sc_fa2u4j-lg { padding: 120px 0; }
.sc_fa2u4j > .container { position: relative; z-index: 1; }

.sc_v2mkqv { background-color: var(--bg-primary); }
.sc_vt98jo { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--s1st); }
.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_ubd389) { color: #fff; }
.bg-gradient-custom .sc_r2pf71 { color: #fff; }
.bg-gradient-custom .sc_khkic8 { color: rgba(255,255,255,0.7); }

.sc_c867j5 {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
}
.sc_c867j5 h1, .sc_c867j5 h2, .sc_c867j5 h3,
.sc_c867j5 h4, .sc_c867j5 h5, .sc_c867j5 h6 { color: #fff; }
.sc_c867j5 p, .sc_c867j5 li, .sc_c867j5 span:not(.badge) { color: rgba(255,255,255,0.8); }
.sc_c867j5 a:not(.sc_ubd389) { color: rgba(255,255,255,0.85); }
.sc_c867j5 a:not(.sc_ubd389):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_su1xqh {
    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_su1xqh.loaded { opacity: 0; visibility: hidden; }
.sc_nmpkb4 { display: flex; gap: 8px; }
.sc_hb4w2l {
    width: 16px; height: 16px;
    background: var(--text-primary);
    animation: sc_su1xqhBounce 1.4s ease-in-out infinite both;
}
.sc_hb4w2l:nth-child(1) { animation-delay: -0.32s; }
.sc_hb4w2l:nth-child(2) { animation-delay: -0.16s; background: var(--s14yl); }
.sc_hb4w2l:nth-child(3) { animation-delay: 0; }

@keyframes sc_su1xqhBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.sc_ubd389 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: var(--s17py);
    font-weight: var(--s18il);
    border-radius: 0;
    transition: var(--transition);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.sc_ia90w5 {
    background: var(--s14yl);
    color: #fff;
    box-shadow: var(--s11dv);
    border-color: var(--text-primary);
}

.sc_ia90w5:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
    color: #fff;
}

.sc_b2hrmw {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--s10hc);
}

.sc_b2hrmw:hover {
    background: var(--s15uu);
    color: var(--text-primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--s14yl);
    padding: 0;
    font-weight: var(--s18il);
    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_ae60of {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.sc_ae60of.scrolled {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--text-primary);
    padding: 10px 0;
}

.sc_oeuajs {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sc_zld8wz {
    font-size: 28px;
    font-weight: var(--s18il);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.sc_zld8wz:hover { color: var(--text-primary); }

.sc_b4hkzg { display: flex; align-items: center; gap: 28px; }

.sc_b4hkzg .nav-link {
    color: var(--text-primary);
    font-size: var(--fs-small);
    font-weight: var(--s18il);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc_b4hkzg .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--s14yl);
    transition: width 0.2s ease;
}

.sc_b4hkzg .nav-link:hover,
.sc_b4hkzg .nav-link.active { color: var(--s14yl); }
.sc_b4hkzg .nav-link:hover::after,
.sc_b4hkzg .nav-link.active::after { width: 100%; }

.sc_a8lxi0 { margin-left: 16px; }

.sc_izoxbz, .sc_ludf31 { display: flex; align-items: center; gap: 28px; }
.sc_izoxbz .nav-link, .sc_ludf31 .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--s18il); padding: 8px 0; text-transform: uppercase;
}
.sc_izoxbz .nav-link:hover, .sc_ludf31 .nav-link:hover { color: var(--s14yl); }
.sc_izoxbz ~ .sc_b4hkzg { display: none; }

.sc_xnh7ew {
    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_xnh7ew .sc_jhlcja {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.sc_xnh7ew.active .sc_jhlcja:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.sc_xnh7ew.active .sc_jhlcja:nth-child(2) { opacity: 0; }
.sc_xnh7ew.active .sc_jhlcja:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.sc_t50q8s {
    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_t50q8s .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.sc_t50q8s .sc_ufygfd {
    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_hxj3kg { position: relative; z-index: 2; }

.sc_vqubvm {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--s18il);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--s15uu);
    border: 2px solid var(--text-primary);
    box-shadow: var(--s10hc);
}

.sc_m92t6j {
    font-size: var(--s19lp);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.sc_wlzhax {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: var(--fw-medium);
}

.sc_n2le54 { display: flex; gap: 16px; flex-wrap: wrap; }

.sc_d5gl4b { position: relative; z-index: 2; }
.sc_d5gl4b img {
    border: 4px solid var(--text-primary);
    box-shadow: var(--s13p3);
}

.sc_alwmuy { margin-bottom: 60px; }

.sc_wusabr {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--s18il);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--s15uu);
    border: 2px solid var(--text-primary);
}

.sc_aezhwl {
    font-size: var(--s20br);
    font-weight: var(--s18il);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sc_rpyo4b {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}
.sc_alwmuy.text-center .sc_rpyo4b {
    margin-left: auto;
    margin-right: auto;
}

.sc_jy7uz9 {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--s11dv);
}

.sc_jy7uz9:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
    background: var(--bg-card-hover);
}

.sc_jy7uz9 .sc_upma8v {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s14yl);
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: 3px 3px 0 #000;
}

.sc_jy7uz9:hover .sc_upma8v {
    background: var(--s15uu);
    color: var(--text-primary);
}

.sc_jy7uz9 .sc_xzpc62 {
    font-size: var(--fs-h5);
    font-weight: var(--s18il);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.sc_jy7uz9 .sc_x51v59 {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.sc_jy7uz9-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--s10hc);
}
.sc_jy7uz9-horizontal:hover {
    box-shadow: var(--s11dv);
    transform: translate(-2px, -2px);
}
.sc_jy7uz9-horizontal .sc_upma8v {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s14yl);
    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(--s12u8);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--s15uu);
    color: var(--text-primary);
    padding: 16px 20px;
    text-align: center;
    border: 3px solid var(--text-primary);
    box-shadow: var(--s10hc);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--s18il);
    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(--s14yl); font-size: 16px; }

.sc_p05kvj {
    background: var(--text-primary);
    color: #fff;
    border-top: 4px solid var(--s14yl);
    border-bottom: 4px solid var(--s14yl);
}
.counter-item { text-align: center; padding: 20px; }
.sc_r2pf71 {
    font-size: 56px;
    font-weight: var(--s18il);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.sc_r2pf71 .counter-suffix { color: var(--s14yl); }
.sc_khkic8 {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.sc_iao709 {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--s11dv);
}
.sc_iao709:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.sc_iao709 .sc_rfpgef {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-bottom: 3px solid var(--text-primary);
}
.sc_iao709 .sc_rfpgef img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}
.sc_iao709:hover .sc_rfpgef img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.sc_iao709 .sc_rfpgef .card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--s15uu);
    color: var(--text-primary);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--s18il);
    text-transform: uppercase;
    border: 2px solid var(--text-primary);
}
.sc_iao709 .card-body { padding: 24px; }
.sc_iao709 .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--s18il);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.sc_iao709 .card-title a { color: var(--text-primary); }
.sc_iao709 .card-title a:hover { color: var(--s14yl); }
.sc_iao709 .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.sc_iao709 .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px dashed var(--text-primary);
}
.sc_iao709 .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--s18il);
    color: var(--s14yl);
}

.sc_l5af7m { text-align: center; transition: var(--transition); }
.sc_l5af7m:hover { transform: translate(-3px, -3px); }
.sc_l5af7m .sc_pqfvsl {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--s11dv);
}
.sc_l5af7m .sc_pqfvsl img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.4s ease;
}
.sc_l5af7m:hover .sc_pqfvsl img { filter: grayscale(0%); transform: scale(1.03); }
.sc_l5af7m .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_l5af7m:hover .team-social { bottom: 0; }
.team-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s14yl);
    color: #fff;
    font-size: 14px;
    border: 2px solid #fff;
    transition: var(--transition);
}
.team-social a:hover { background: var(--s15uu); color: var(--text-primary); }
.sc_l5af7m .sc_kwlick {
    font-size: var(--fs-h5);
    font-weight: var(--s18il);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.sc_l5af7m .sc_fnqg0e {
    font-size: var(--fs-small);
    color: var(--s14yl);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sc_qt54pv {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--s11dv);
    position: relative;
}
.sc_qt54pv:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.sc_qt54pv::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--s14yl);
}
.sc_qt54pv .quote-icon {
    font-size: 36px;
    color: var(--s14yl);
    margin-bottom: 16px;
}
.sc_qt54pv .sc_o8cbte {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: var(--fw-medium);
    border-left: none;
}
.sc_qt54pv .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.sc_qt54pv .sc_ud49uu {
    width: 56px; height: 56px;
    object-fit: cover;
    border: 3px solid var(--text-primary);
}
.sc_qt54pv .sc_kim828 {
    font-size: var(--s17py);
    font-weight: var(--s18il);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.sc_qt54pv .sc_dfun7e {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.sc_qt54pv .stars {
    color: var(--s14yl);
    margin-bottom: 14px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--text-primary);
    box-shadow: var(--s11dv);
}
.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(--s15uu);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--s18il);
    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(--s10hc);
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--s18il);
    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(--s15uu);
    color: var(--text-primary);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.sc_zk490f {
    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(--s11dv);
}
.sc_zk490f.featured {
    background: var(--s15uu);
    border-color: var(--text-primary);
    box-shadow: var(--s12u8);
}
.sc_zk490f.featured::before {
    content: '★ BEST';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--s14yl);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--s18il);
    letter-spacing: 2px;
    border: 2px solid var(--text-primary);
    border-top: none;
}
.sc_zk490f:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.sc_zk490f .sc_v42qbp {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: var(--s18il);
}
.sc_zk490f .sc_s47itt {
    font-size: 60px;
    font-weight: var(--s18il);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.sc_zk490f .sc_s47itt .currency {
    font-size: 28px;
    vertical-align: top;
    color: var(--s14yl);
}
.sc_zk490f .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
.sc_zk490f .sc_dyf9yv {
    text-align: left;
    margin-bottom: 28px;
}
.sc_zk490f .sc_dyf9yv 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_zk490f .sc_dyf9yv li:last-child { border-bottom: none; }
.sc_zk490f .sc_dyf9yv li i { color: var(--s14yl); }
.sc_zk490f .sc_dyf9yv li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

.sc_mph6un {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--s11dv);
}
.sc_mph6un:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.sc_mph6un .sc_rfpgef { height: 200px; overflow: hidden; border-bottom: 3px solid var(--text-primary); }
.sc_mph6un .sc_rfpgef img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.sc_mph6un:hover .sc_rfpgef img { transform: scale(1.05); }
.sc_mph6un .card-body { padding: 24px; }
.sc_mph6un .sc_yjcogw {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sc_mph6un .sc_yjcogw i { margin-right: 4px; color: var(--s14yl); }
.sc_mph6un .card-title {
    font-size: 18px;
    font-weight: var(--s18il);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
.sc_mph6un .card-title a { color: var(--text-primary); }
.sc_mph6un .card-title a:hover { color: var(--s14yl); }

.sc_grf3ij {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--s14yl);
    border-bottom: 6px solid var(--s14yl);
}
.sc_grf3ij .cta-content { position: relative; z-index: 2; }
.sc_grf3ij .sc_wc3cma { font-size: var(--s20br); color: #fff; }
.sc_grf3ij .sc_t3ocgc { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
.sc_grf3ij p, .sc_grf3ij li { color: rgba(255,255,255,0.7); }
.sc_grf3ij .sc_ubd389 {
    background: var(--s14yl);
    color: #fff;
    border-color: #fff;
}
.sc_grf3ij .sc_ubd389:hover {
    background: var(--s15uu);
    color: var(--text-primary);
    transform: translate(-3px, -3px);
}
.sc_grf3ij .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(--s17py);
    font-weight: var(--fw-medium);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--s14yl); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item .sc_ectb9s {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s14yl);
    color: #fff;
    font-size: 28px;
    font-weight: var(--s18il);
    margin: 0 auto 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--s10hc);
}
.process-item .sc_h8m670 {
    font-size: var(--fs-h5);
    font-weight: var(--s18il);
    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(--s18il);
    color: var(--s14yl);
}

.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(--s18il);
    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_hhvel2 {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    border-top: 6px solid var(--s14yl);
}
.sc_hhvel2 h1, .sc_hhvel2 h2, .sc_hhvel2 h3,
.sc_hhvel2 h4, .sc_hhvel2 h5 { color: #fff; }

.sc_uzf5zy .sc_x4wtum {
    font-size: 18px;
    font-weight: var(--s18il);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}
.sc_uzf5zy .sc_x4wtum::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--s14yl);
}
.sc_uzf5zy p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
.sc_zwguep a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
.sc_zwguep a:hover {
    color: var(--s14yl);
    text-decoration: none;
    padding-left: 8px;
}
.sc_zwguep 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(--s14yl); margin-top: 4px; }
.sc_axojoy { display: flex; gap: 8px; margin-top: 20px; }
.sc_axojoy a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--s14yl);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: var(--transition);
}
.sc_axojoy a:hover {
    background: var(--s15uu);
    color: var(--text-primary);
}
.sc_xudfze {
    border-top: 2px dashed rgba(255,255,255,0.15);
    padding: 24px 0;
    margin-top: 60px;
}
.sc_xudfze 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(--s14yl); }

.policy-content h1 { font-size: var(--s20br); 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(--s14yl); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.sc_s22lpu {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--s14yl);
    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(--s10hc);
}
.sc_s22lpu.visible { opacity: 1; visibility: visible; }
.sc_s22lpu:hover { transform: translate(-3px, -3px); box-shadow: var(--s11dv); }

.sc_dh7qqx .form-control {
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--s17py);
}
.sc_dh7qqx .form-control:focus {
    border-color: var(--s14yl);
    box-shadow: 4px 4px 0 var(--s14yl);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.sc_dh7qqx .form-control::placeholder { color: var(--text-muted); }
.sc_dh7qqx 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(--s14yl); 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(--s10hc);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--s14yl);
    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 { --s19lp: 52px; --s20br: 40px; } }

@media (max-width: 992px) {
    :root { --s19lp: 42px; --s20br: 34px; --s21gx: 26px; --sc_fa2u4j: 70px 0; }
    .sc_b4hkzg {
        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_b4hkzg.active { right: 0; }
    .sc_b4hkzg .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_b4hkzg .nav-link:hover, .sc_b4hkzg .nav-link.active { color: var(--s14yl) !important; }
    .sc_b4hkzg .nav-link::after { display: none; }
    .sc_a8lxi0 { display: none !important; }
    .sc_xnh7ew {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .sc_gwfg3g {
        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_gwfg3g.active { opacity: 1; visibility: visible; }
    .sc_m92t6j { font-size: var(--s19lp); }
    .process-item:not(:last-child)::after { display: none; }
    .sc_r2pf71 { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --s19lp: 36px; --s20br: 28px; --s21gx: 22px; --fs-h4: 20px; --sc_fa2u4j: 60px 0; }
    .sc_alwmuy { margin-bottom: 40px; }
    .sc_t50q8s { min-height: auto; padding: 140px 0 80px; }
    .sc_n2le54 { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .sc_zk490f .sc_s47itt { font-size: 44px; }
    .sc_xudfze { text-align: center; }
}

@media (max-width: 576px) {
    :root { --s19lp: 30px; --s20br: 24px; --s21gx: 20px; --sc_fa2u4j: 50px 0; }
    .sc_qt54pv { padding: 24px; }
    .sc_zk490f { padding: 24px; }
    .sc_jy7uz9 { padding: 24px 18px; }
}

.sc_c867j5 .sc_vqubvm { color: #fff; }
.sc_c867j5 .sc_wusabr { color: var(--s14yl); }
.sc_c867j5 .sc_ii7k21 { color: rgba(255,255,255,0.55); }
.sc_c867j5 .sc_zwguep a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.sc_c867j5 .sc_zwguep 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(--s14yl) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
