

:root {
    --bg-primary: #f3f4f6;
    --bg-secondary: #e5e7eb;
    --bg-card: #ffffff;
    --bg-card-hover: #fff8f0;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-muted: #8b95a1;
    --footer-dark-bg: #111827;
    --border-color: #d1d5db;
    --border-light: rgba(17, 24, 39, 0.08);

    --x14e9: #f97316;
    --x15nl: #f59e0b;
    --x1ve: linear-gradient(135deg, var(--x14e9), var(--x15nl));
    --accent-glow: 0 8px 24px rgba(249, 115, 22, 0.25);

    --x3lw: 'Oswald', 'Bebas Neue', 'Arial Narrow', system-ui, sans-serif;
    --x5sk: 'Inter', system-ui, sans-serif;

    --x19pd: 62px;
    --x20dw: 46px;
    --x21q6: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --x17bl: 16px;
    --fs-small: 14px;

    --x18sw: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --x6v7: 6px;
    --x7ea: 10px;
    --x8bj: 14px;
    --x9eo: 20px;
    --x4k0: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --x10c5: 0 2px 8px rgba(17, 24, 39, 0.06);
    --x11cl: 0 8px 24px rgba(17, 24, 39, 0.10);
    --x12y1: 0 16px 48px rgba(17, 24, 39, 0.14);
    --x13to: 0 24px 64px rgba(17, 24, 39, 0.18);

    --_mnjuxb: 100px 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(--x5sk);
    font-size: var(--x17bl);
    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(--x14e9);
    transition: var(--transition);
}
a:hover { color: var(--x15nl); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--x14e9); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--x3lw);
    font-weight: var(--x18sw);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 { font-size: var(--x19pd); }
h2 { font-size: var(--x20dw); }
h3 { font-size: var(--x21q6); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--x1ve);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--x14e9); }
.text-accent-2 { color: var(--x15nl); }
.text-dark { color: var(--text-primary); }
._uugo5 { color: var(--text-muted); }

._mnjuxb { padding: var(--_mnjuxb); position: relative; }
._mnjuxb-sm { padding: 60px 0; }
._mnjuxb-lg { padding: 130px 0; }
._mnjuxb > .container { position: relative; z-index: 1; }

._yky2p { background-color: var(--bg-primary); }
._n028w { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--x1ve); 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(._l0cu0q) { color: #fff; }
.bg-gradient-custom ._o6bls { color: #fff; }
.bg-gradient-custom ._bos1z38 { color: rgba(255,255,255,0.7); }

._aag5rj {
    background-color: #1f2937;
    color: rgba(255,255,255,0.8);
}
._aag5rj h1, ._aag5rj h2, ._aag5rj h3,
._aag5rj h4, ._aag5rj h5, ._aag5rj h6 { color: #fff; }
._aag5rj p, ._aag5rj li, ._aag5rj span:not(.badge) { color: rgba(255,255,255,0.8); }
._aag5rj a:not(._l0cu0q) { color: rgba(255,255,255,0.85); }
._aag5rj a:not(._l0cu0q):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; }

._y83j0zh {
    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.4s ease, visibility 0.4s ease;
}
._y83j0zh.loaded { opacity: 0; visibility: hidden; }
._v9jg12y { display: flex; gap: 8px; }
._g43q6e6 {
    width: 14px; height: 14px;
    background: var(--x14e9);
    border-radius: 2px;
    animation: _y83j0zhBounce 1.4s ease-in-out infinite both;
}
._g43q6e6:nth-child(1) { animation-delay: -0.32s; }
._g43q6e6:nth-child(2) { animation-delay: -0.16s; background: var(--text-primary); }
._g43q6e6:nth-child(3) { animation-delay: 0; }

@keyframes _y83j0zhBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

._l0cu0q {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: var(--x17bl);
    font-weight: var(--fw-semibold);
    border-radius: var(--x6v7);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

._j2fo3 {
    background: var(--x14e9);
    color: #fff;
    border-color: var(--x14e9);
    box-shadow: var(--accent-glow);
}
._j2fo3:hover {
    background: var(--x15nl);
    border-color: var(--x15nl);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

._s9f9fq {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}
._s9f9fq:hover {
    background: var(--x14e9);
    color: #fff;
    border-color: var(--x14e9);
    transform: translateY(-2px);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--x14e9);
    padding: 0;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.btn-link-custom:hover { color: var(--x15nl); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

._oerl0 {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

._oerl0.scrolled {
    background: rgba(243, 244, 246, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--x14e9);
    padding: 10px 0;
    box-shadow: var(--x10c5);
}

._aw679 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._btsdy {
    font-family: var(--x3lw);
    font-size: 28px;
    font-weight: var(--x18sw);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
._btsdy:hover { color: var(--text-primary); }

._v6ojk { display: flex; align-items: center; gap: 32px; }

._v6ojk .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

._v6ojk .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--x14e9);
    transition: width 0.3s ease;
}

._v6ojk .nav-link:hover,
._v6ojk .nav-link.active { color: var(--x14e9); }
._v6ojk .nav-link:hover::after,
._v6ojk .nav-link.active::after { width: 100%; }

._lxzlz { margin-left: 16px; }

._xsenxg, ._n03j17q { display: flex; align-items: center; gap: 28px; }
._xsenxg .nav-link, ._n03j17q .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-semibold); padding: 8px 0; text-transform: uppercase;
}
._xsenxg .nav-link:hover, ._n03j17q .nav-link:hover { color: var(--x14e9); }
._xsenxg ~ ._v6ojk { display: none; }

._fz4iwy {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid var(--text-primary);
    border-radius: var(--x6v7);
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

._fz4iwy ._ilsck47 {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

._fz4iwy.active ._ilsck47:nth-child(1) { transform: translateY(7px) rotate(45deg); }
._fz4iwy.active ._ilsck47:nth-child(2) { opacity: 0; }
._fz4iwy.active ._ilsck47:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

._af4di {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

._af4di .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;
}

._af4di ._hub78u {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(243,244,246,0.95) 0%, rgba(229,231,235,0.85) 100%);
}

._of890ik { position: relative; z-index: 2; }

._s8otxb {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--x14e9);
    margin-bottom: 16px;
    padding: 6px 18px;
    background: rgba(249, 115, 22, 0.1);
    border-left: 3px solid var(--x14e9);
    border-radius: var(--x6v7);
}

._hj0zach {
    font-size: var(--x19pd);
    font-weight: var(--x18sw);
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

._twutv {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

._qwqfej { display: flex; gap: 16px; flex-wrap: wrap; }

._uifj5 { position: relative; z-index: 2; }
._uifj5 img {
    border-radius: var(--x8bj);
    box-shadow: var(--x13to);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--x1ve);
    opacity: 0.08;
    filter: blur(60px);
}

._ox4lv { margin-bottom: 60px; }

._zz6pt2 {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--x14e9);
    margin-bottom: 12px;
}

._bx2kiv {
    font-size: var(--x20dw);
    font-weight: var(--x18sw);
    margin-bottom: 16px;
    color: var(--text-primary);
    text-transform: uppercase;
}

._oj5ijok {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
}
._ox4lv.text-center ._oj5ijok {
    margin-left: auto;
    margin-right: auto;
}

._hy4rp7 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ea);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
._hy4rp7::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--x1ve);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
._hy4rp7:hover::before { transform: scaleX(1); }

._hy4rp7:hover {
    transform: translateY(-6px);
    box-shadow: var(--x12y1);
    border-color: var(--x14e9);
}

._hy4rp7 ._kftug {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--x14e9);
    font-size: 26px;
    border-radius: var(--x7ea);
    margin-bottom: 20px;
    transition: var(--transition);
}
._hy4rp7:hover ._kftug {
    background: var(--x14e9);
    color: #fff;
}

._hy4rp7 ._fu7e2 {
    font-size: var(--fs-h5);
    font-weight: var(--x18sw);
    margin-bottom: 10px;
    color: var(--text-primary);
}

._hy4rp7 ._tux5ud {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

._hy4rp7-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ea);
    padding: 24px;
    transition: var(--transition);
}
._hy4rp7-horizontal:hover {
    box-shadow: var(--x11cl);
    transform: translateY(-3px);
}
._hy4rp7-horizontal ._kftug {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    color: var(--x14e9);
    font-size: 22px;
    border-radius: var(--x7ea);
}

.about-section .about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--x8bj);
    box-shadow: var(--x12y1);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--x14e9);
    color: #fff;
    padding: 16px 22px;
    text-align: center;
    border-radius: var(--x7ea);
    box-shadow: var(--x11cl);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--x18sw);
    line-height: 1;
    font-family: var(--x3lw);
}
.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: 1px solid var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--x14e9); font-size: 16px; }

._h027t {
    background: var(--text-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}
._h027t::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--x1ve);
}
.counter-item { text-align: center; padding: 20px; }
._o6bls {
    font-family: var(--x3lw);
    font-size: 56px;
    font-weight: var(--x18sw);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
._o6bls .counter-suffix { color: var(--x14e9); }
._bos1z38 {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

._dw8c4y {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ea);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
._dw8c4y:hover {
    transform: translateY(-6px);
    box-shadow: var(--x12y1);
    border-color: var(--x14e9);
}
._dw8c4y ._xse6q7q {
    position: relative;
    overflow: hidden;
    height: 220px;
}
._dw8c4y ._xse6q7q img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
._dw8c4y:hover ._xse6q7q img { transform: scale(1.06); }
._dw8c4y ._xse6q7q .card-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--x14e9);
    color: #fff;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    border-radius: var(--x6v7);
    letter-spacing: 0.5px;
}
._dw8c4y .card-body { padding: 24px; }
._dw8c4y .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--x18sw);
    margin-bottom: 10px;
    color: var(--text-primary);
}
._dw8c4y .card-title a { color: var(--text-primary); }
._dw8c4y .card-title a:hover { color: var(--x14e9); }
._dw8c4y .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
._dw8c4y .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
._dw8c4y .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--x18sw);
    color: var(--x14e9);
    font-family: var(--x3lw);
}

._knbd6ap { text-align: center; transition: var(--transition); }
._knbd6ap:hover { transform: translateY(-6px); }
._knbd6ap ._e6t6d {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--x7ea);
    box-shadow: var(--x11cl);
}
._knbd6ap ._e6t6d img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.4s ease;
}
._knbd6ap:hover ._e6t6d img { transform: scale(1.04); }
._knbd6ap .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.7) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}
._knbd6ap:hover .team-social { bottom: 0; }
.team-social a {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--x14e9);
    color: #fff;
    font-size: 14px;
    border-radius: var(--x6v7);
    transition: var(--transition);
}
.team-social a:hover { background: var(--x15nl); }
._knbd6ap ._k3fxgy {
    font-size: var(--fs-h5);
    font-weight: var(--x18sw);
    margin-bottom: 4px;
    color: var(--text-primary);
}
._knbd6ap ._ebgjx {
    font-size: var(--fs-small);
    color: var(--x14e9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

._g73oc0 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ea);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
._g73oc0::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--x14e9);
}
._g73oc0:hover {
    box-shadow: var(--x12y1);
    transform: translateY(-4px);
}
._g73oc0 .quote-icon {
    font-size: 36px;
    color: var(--x14e9);
    margin-bottom: 16px;
}
._g73oc0 ._mqejzf6 {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
._g73oc0 .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
._g73oc0 ._juvx9 {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--x14e9);
}
._g73oc0 ._d24pg0v {
    font-size: var(--x17bl);
    font-weight: var(--x18sw);
    color: var(--text-primary);
    margin-bottom: 2px;
}
._g73oc0 ._bqy64ib {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
._g73oc0 .stars {
    color: var(--x15nl);
    margin-bottom: 14px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--x7ea);
    box-shadow: var(--x10c5);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17, 24, 39, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--x7ea);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--x14e9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-semibold);
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    color: #fff;
    margin-bottom: 0;
}
.portfolio-overlay .serial-badge { color: rgba(255,255,255,0.85); -webkit-text-stroke: 0; font-size: inherit; opacity: 1; position: static; background: rgba(255,255,255,0.15); border-radius: 6px; display: inline-block; padding: 4px 12px; }

.faq-section .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--x7ea) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    border-radius: var(--x7ea);
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(249, 115, 22, 0.06);
    color: var(--x14e9);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

._r4ea9 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x8bj);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
._r4ea9.featured {
    border-color: var(--x14e9);
    box-shadow: var(--x12y1);
    transform: scale(1.03);
}
._r4ea9.featured::before {
    content: '★ BEST';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    background: var(--x14e9);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--x18sw);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0 0 var(--x6v7) var(--x6v7);
}
._r4ea9:hover {
    transform: translateY(-6px);
    box-shadow: var(--x12y1);
}
._r4ea9.featured:hover { transform: scale(1.03) translateY(-6px); }
._r4ea9 ._pwl61i2 {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: var(--x18sw);
}
._r4ea9 ._qvlyzh {
    font-size: 56px;
    font-weight: var(--x18sw);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--x3lw);
}
._r4ea9 ._qvlyzh .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--x14e9);
}
._r4ea9 .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
._r4ea9 ._tjft7lw {
    text-align: left;
    margin-bottom: 28px;
}
._r4ea9 ._tjft7lw li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
._r4ea9 ._tjft7lw li:last-child { border-bottom: none; }
._r4ea9 ._tjft7lw li i { color: var(--x14e9); }
._r4ea9 ._tjft7lw li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

._x03sr88 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x7ea);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
._x03sr88:hover {
    transform: translateY(-6px);
    box-shadow: var(--x12y1);
}
._x03sr88 ._xse6q7q { height: 200px; overflow: hidden; }
._x03sr88 ._xse6q7q img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
._x03sr88:hover ._xse6q7q img { transform: scale(1.06); }
._x03sr88 .card-body { padding: 24px; }
._x03sr88 ._g4jfln {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
._x03sr88 ._g4jfln i { margin-right: 4px; color: var(--x14e9); }
._x03sr88 .card-title {
    font-size: 18px;
    font-weight: var(--x18sw);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
._x03sr88 .card-title a { color: var(--text-primary); }
._x03sr88 .card-title a:hover { color: var(--x14e9); }

._otqfj {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
}
._otqfj::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--x1ve);
}
._otqfj .cta-content { position: relative; z-index: 2; }
._otqfj ._r4kdn {
    font-size: var(--x20dw);
    color: #fff;
    text-transform: uppercase;
}
._otqfj ._yugki6 { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
._otqfj p, ._otqfj li { color: rgba(255,255,255,0.7); }
._otqfj ._j2fo3 {
    background: var(--x14e9);
    color: #fff;
    border-color: var(--x14e9);
}
._otqfj ._j2fo3:hover {
    background: var(--x15nl);
    border-color: var(--x15nl);
}
._otqfj .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--x14e9);
    opacity: 0.06;
    filter: blur(80px);
}

.newsletter-form {
    display: flex; gap: 0; max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--x6v7) 0 0 var(--x6v7);
    padding: 14px 20px;
    color: #fff;
    font-size: var(--x17bl);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--x14e9); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item ._dhsy7j6 {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--x14e9);
    color: #fff;
    font-size: 24px;
    font-weight: var(--x18sw);
    font-family: var(--x3lw);
    border-radius: var(--x7ea);
    margin: 0 auto 20px;
    box-shadow: var(--accent-glow);
}
.process-item ._dipe6p {
    font-size: var(--fs-h5);
    font-weight: var(--x18sw);
    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: -14px;
    font-size: 24px;
    font-weight: var(--x18sw);
    color: var(--x14e9);
}

.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    background: var(--text-primary);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-family: var(--x3lw);
    font-size: 60px;
    font-weight: var(--x18sw);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
    color: #fff;
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    -webkit-text-fill-color: transparent;
}

.marquee-track .marquee-item.italic {
    font-style: italic;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

._wjoyw8 {
    background: var(--footer-dark-bg);
    color: rgba(255,255,255,0.7);
}
._wjoyw8 h1, ._wjoyw8 h2, ._wjoyw8 h3,
._wjoyw8 h4, ._wjoyw8 h5 { color: #fff; }

._n5l0qa3 ._ez9wg8p {
    font-size: 18px;
    font-weight: var(--x18sw);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}
._n5l0qa3 ._ez9wg8p::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--x14e9);
    border-radius: 2px;
}
._n5l0qa3 p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
._esqggul a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
._esqggul a:hover {
    color: var(--x14e9);
    text-decoration: none;
    padding-left: 6px;
}
._esqggul 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(--x14e9); margin-top: 4px; }
._jhhizxo { display: flex; gap: 8px; margin-top: 20px; }
._jhhizxo a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: var(--x6v7);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
._jhhizxo a:hover {
    background: var(--x14e9);
    color: #fff;
}
._ohh027r {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 60px;
}
._ohh027r 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(--x14e9); }

.policy-content h1 { font-size: var(--x20dw); 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(--x14e9); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

._kfpxdd {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--x14e9);
    color: #fff;
    border: none;
    border-radius: var(--x7ea);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--accent-glow);
}
._kfpxdd.visible { opacity: 1; visibility: visible; }
._kfpxdd:hover { transform: translateY(-3px); box-shadow: var(--x12y1); }

._f8375 .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x6v7);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--x17bl);
    transition: var(--transition);
}
._f8375 .form-control:focus {
    border-color: var(--x14e9);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    background: var(--bg-card);
    color: var(--text-primary);
}
._f8375 .form-control::placeholder { color: var(--text-muted); }
._f8375 textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--text-primary); opacity: 0.3; width: 10px; height: 10px; border-radius: 2px; }
.swiper-pagination-bullet-active { background: var(--x14e9); opacity: 1; }
.swiper-button-prev,
.swiper-button-next {
    width: 46px; height: 46px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--x6v7);
    color: var(--text-primary);
    box-shadow: var(--x10c5);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--x14e9);
    color: #fff;
    border-color: var(--x14e9);
}

.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 3s ease-in-out infinite; }

@media (max-width: 1200px) { :root { --x19pd: 50px; --x20dw: 38px; } }

@media (max-width: 992px) {
    :root { --x19pd: 42px; --x20dw: 34px; --x21q6: 26px; --_mnjuxb: 70px 0; }
    ._v6ojk {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 2px solid var(--x14e9);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    ._v6ojk.active { right: 0; }
    ._v6ojk .nav-link {
        display: block !important;
        font-size: 18px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    ._v6ojk .nav-link:hover, ._v6ojk .nav-link.active { color: var(--x14e9) !important; }
    ._v6ojk .nav-link::after { display: none; }
    ._lxzlz { display: none !important; }
    ._fz4iwy {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important;
    }
    ._datfl {
        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;
    }
    ._datfl.active { opacity: 1; visibility: visible; }
    ._hj0zach { font-size: var(--x19pd); }
    .process-item:not(:last-child)::after { display: none; }
    ._o6bls { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --x19pd: 36px; --x20dw: 28px; --x21q6: 22px; --fs-h4: 20px; --_mnjuxb: 60px 0; }
    ._ox4lv { margin-bottom: 40px; }
    ._af4di { min-height: auto; padding: 140px 0 80px; }
    ._qwqfej { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    ._r4ea9 ._qvlyzh { font-size: 44px; }
    ._ohh027r { text-align: center; }
}

@media (max-width: 576px) {
    :root { --x19pd: 30px; --x20dw: 24px; --x21q6: 20px; --_mnjuxb: 50px 0; }
    ._g73oc0 { padding: 24px; }
    ._r4ea9 { padding: 24px; }
    ._hy4rp7 { padding: 24px 18px; }
}

._aag5rj ._s8otxb { color: #fff; }
._aag5rj ._zz6pt2 { color: var(--x14e9); }
._aag5rj ._uugo5 { color: rgba(255,255,255,0.55); }
._aag5rj ._esqggul a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
._aag5rj ._esqggul 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(--x14e9) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
