

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fc;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f2ff;
    --text-primary: #1a1a2e;
    --text-secondary: #555770;
    --text-muted: #8b8da3;
    --footer-dark-bg: #1a1a2e;
    --border-color: #e8e9f0;
    --border-light: #d0d2e0;

    --a14d5: #2563eb;
    --a15qg: #0891b2;
    --a1wk: linear-gradient(135deg, var(--a14d5), var(--a15qg));
    --accent-glow: 0 4px 14px rgba(37, 99, 235, 0.2);

    --a3x8: 'Inter', system-ui, sans-serif;
    --a5ys: 'Inter', system-ui, sans-serif;

    --a19yr: 56px;
    --a20pu: 42px;
    --a21ra: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --a17ck: 16px;
    --fs-small: 14px;

    --a18mo: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --a6e7: 8px;
    --a7u4: 12px;
    --a8vu: 16px;
    --a9d5: 24px;
    --a4pr: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --a10yq: 0 2px 8px rgba(0, 0, 0, 0.04);
    --a11hb: 0 4px 16px rgba(0, 0, 0, 0.06);
    --a12zg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --a13ub: 0 16px 48px rgba(0, 0, 0, 0.1);

    --_ze5zfu: 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(--a5ys);
    font-size: var(--a17ck);
    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(--a14d5);
    transition: var(--transition);
}

a:hover {
    color: var(--a15qg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--a14d5);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--a3x8);
    font-weight: var(--a18mo);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: var(--a19yr); }
h2 { font-size: var(--a20pu); }
h3 { font-size: var(--a21ra); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--a1wk);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--a14d5); }
.text-accent-2 { color: var(--a15qg); }
.text-dark { color: var(--text-primary); }
._rw9arba { color: var(--text-muted); }

._ze5zfu { padding: var(--_ze5zfu); position: relative; }
._ze5zfu-sm { padding: 60px 0; }
._ze5zfu-lg { padding: 140px 0; }
._ze5zfu > .container { position: relative; z-index: 1; }

._rzfsjto { background-color: var(--bg-primary); }
._ysa0wb9 { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom {
    background: var(--a1wk);
    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,
.bg-gradient-custom ._knj8g42 { color: rgba(255,255,255,0.8); }
.bg-gradient-custom a:not(._vlk2uj) { color: #fff; }
.bg-gradient-custom ._sinjbwp { color: #fff; }

._t9e0fq {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
}
._t9e0fq h1, ._t9e0fq h2, ._t9e0fq h3,
._t9e0fq h4, ._t9e0fq h5, ._t9e0fq h6 { color: #fff; }
._t9e0fq p, ._t9e0fq li, ._t9e0fq span:not(.badge) { color: rgba(255,255,255,0.7); }
._t9e0fq a:not(._vlk2uj) { color: rgba(255,255,255,0.8); }
._t9e0fq a:not(._vlk2uj):hover { color: #fff; }
._t9e0fq ._gerxmj { color: rgba(255,255,255,0.6); }

.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; }

._ypo7q {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

._ypo7q.loaded {
    opacity: 0;
    visibility: hidden;
}

._ns1ej {
    display: flex;
    gap: 8px;
}

._vew1f {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--a14d5);
    animation: _ypo7qBounce 1.4s ease-in-out infinite both;
}

._vew1f:nth-child(1) { animation-delay: -0.32s; }
._vew1f:nth-child(2) { animation-delay: -0.16s; }
._vew1f:nth-child(3) { animation-delay: 0; }

@keyframes _ypo7qBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

._vlk2uj {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: var(--a17ck);
    font-weight: var(--fw-semibold);
    border-radius: var(--a4pr);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

._gmpbwh {
    background: var(--a14d5);
    color: #fff;
    box-shadow: var(--accent-glow);
}

._gmpbwh:hover {
    background: var(--a15qg);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: #fff;
}

._go133 {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

._go133:hover {
    border-color: var(--a14d5);
    color: var(--a14d5);
    background: rgba(37, 99, 235, 0.04);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--a14d5);
    padding: 0;
    font-weight: var(--fw-medium);
}

.btn-link-custom:hover {
    color: var(--a15qg);
}

.btn-link-custom i {
    transition: transform 0.3s ease;
}

.btn-link-custom:hover i {
    transform: translateX(5px);
}

._fu5wq8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

._fu5wq8.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--a10yq);
}

._tp485hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

._m9oym {
    font-size: 24px;
    font-weight: var(--a18mo);
    color: var(--text-primary);
}

._m9oym:hover {
    color: var(--text-primary);
}

._a0zahye {
    display: flex;
    align-items: center;
    gap: 32px;
}

._a0zahye .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}

._a0zahye .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--a14d5);
    transition: width 0.3s ease;
    border-radius: 2px;
}

._a0zahye .nav-link:hover,
._a0zahye .nav-link.active {
    color: var(--a14d5);
}

._a0zahye .nav-link:hover::after,
._a0zahye .nav-link.active::after {
    width: 100%;
}

._idvice {
    margin-left: 16px;
}

._qf72y0w, ._h9xwcr0 {
    display: flex;
    align-items: center;
    gap: 32px;
}
._qf72y0w .nav-link, ._h9xwcr0 .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}
._qf72y0w .nav-link:hover, ._h9xwcr0 .nav-link:hover { color: var(--a14d5); }

._qf72y0w ~ ._a0zahye { display: none; }

._y428tw {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
}

._y428tw ._gpdwf9l {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

._y428tw.active ._gpdwf9l:nth-child(1) { transform: translateY(8px) rotate(45deg); }
._y428tw.active ._gpdwf9l:nth-child(2) { opacity: 0; }
._y428tw.active ._gpdwf9l:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

._ueeq3 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

._ueeq3 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

._ueeq3 ._wy4l9vz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 40%, transparent 60%, var(--bg-secondary) 100%);
}

._jmx9fd1 {
    position: relative;
    z-index: 2;
}

._vk17v3 {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--a14d5);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--a4pr);
}

._pgj2d7i {
    font-size: var(--a19yr);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

._la66lo {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

._heqe7ow {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

._jng6l {
    position: relative;
    z-index: 2;
}

._jng6l img {
    border-radius: var(--a8vu);
    box-shadow: var(--a13ub);
}

._xwty1cx {
    margin-bottom: 60px;
}

._k2afoin {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--a14d5);
    margin-bottom: 16px;
}

._biqpj {
    font-size: var(--a20pu);
    font-weight: var(--a18mo);
    margin-bottom: 16px;
    color: var(--text-primary);
}

._mau01 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

._xwty1cx.text-center ._mau01 {
    margin-left: auto;
    margin-right: auto;
}

._cjqao6 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7u4);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--a10yq);
}

._cjqao6:hover {
    transform: translateY(-5px);
    box-shadow: var(--a12zg);
    border-color: var(--a14d5);
}

._cjqao6 ._p2erz {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--a7u4);
    background: rgba(37, 99, 235, 0.08);
    color: var(--a14d5);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

._cjqao6:hover ._p2erz {
    background: var(--a14d5);
    color: #fff;
}

._cjqao6 ._m130z {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

._cjqao6 ._e2br984 {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

._cjqao6-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7u4);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--a10yq);
}

._cjqao6-horizontal:hover {
    box-shadow: var(--a11hb);
    border-color: var(--a14d5);
}

._cjqao6-horizontal ._p2erz {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--a6e7);
    background: rgba(37, 99, 235, 0.08);
    color: var(--a14d5);
    font-size: 24px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--a8vu);
    overflow: hidden;
    box-shadow: var(--a12zg);
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--a8vu);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--a14d5);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--a7u4);
    text-align: center;
    box-shadow: var(--a11hb);
}

.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--a18mo);
    line-height: 1;
}

.experience-badge .badge-text {
    font-size: var(--fs-small);
    opacity: 0.9;
}

.about-list {
    margin-top: 20px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.about-list li i {
    color: var(--a14d5);
    font-size: 16px;
}

._cqks3 {
    background: var(--bg-secondary);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

._sinjbwp {
    font-size: 48px;
    font-weight: var(--a18mo);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

._sinjbwp .counter-suffix {
    color: var(--a14d5);
}

._knj8g42 {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

._x14ma {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7u4);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--a10yq);
}

._x14ma:hover {
    transform: translateY(-8px);
    box-shadow: var(--a13ub);
}

._x14ma ._qb602 {
    position: relative;
    overflow: hidden;
    height: 220px;
}

._x14ma ._qb602 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

._x14ma:hover ._qb602 img {
    transform: scale(1.05);
}

._x14ma ._qb602 .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--a14d5);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--a4pr);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}

._x14ma .card-body {
    padding: 28px;
}

._x14ma .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

._x14ma .card-title a {
    color: var(--text-primary);
}

._x14ma .card-title a:hover {
    color: var(--a14d5);
}

._x14ma .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

._x14ma .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

._x14ma .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--a18mo);
    color: var(--a14d5);
}

._kcgapd {
    text-align: center;
    transition: var(--transition);
}

._kcgapd:hover {
    transform: translateY(-5px);
}

._kcgapd ._mqszr {
    position: relative;
    overflow: hidden;
    border-radius: var(--a8vu);
    margin-bottom: 20px;
    box-shadow: var(--a11hb);
}

._kcgapd ._mqszr img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

._kcgapd:hover ._mqszr img {
    transform: scale(1.05);
}

._kcgapd .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.6) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}

._kcgapd:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--a14d5);
}

._kcgapd ._a4af6w {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

._kcgapd ._yoysq {
    font-size: var(--fs-small);
    color: var(--a14d5);
}

._r5ui4zy {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7u4);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--a10yq);
}

._r5ui4zy:hover {
    box-shadow: var(--a11hb);
}

._r5ui4zy .quote-icon {
    font-size: 32px;
    color: var(--a14d5);
    margin-bottom: 20px;
    opacity: 0.3;
}

._r5ui4zy ._muvujd {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

._r5ui4zy .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

._r5ui4zy ._tz8fn7s {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

._r5ui4zy ._edamqj {
    font-size: var(--a17ck);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

._r5ui4zy ._sekmtoo {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

._r5ui4zy .stars {
    color: #f59e0b;
    margin-bottom: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--a7u4);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--a10yq);
}

.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--a15qg);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.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);
    border-radius: var(--a7u4) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--a10yq);
}

.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    padding: 20px 28px;
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--a14d5);
}

.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

._hfy76y {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a8vu);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--a10yq);
}

._hfy76y.featured {
    border-color: var(--a14d5);
    box-shadow: var(--a12zg);
}

._hfy76y.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--a14d5);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    border-radius: 0 0 var(--a6e7) var(--a6e7);
}

._hfy76y:hover {
    transform: translateY(-5px);
    box-shadow: var(--a12zg);
}

._hfy76y ._yxfo8p {
    font-size: var(--fs-h5);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

._hfy76y ._uvjpk5 {
    font-size: 56px;
    font-weight: var(--a18mo);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

._hfy76y ._uvjpk5 .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--a14d5);
}

._hfy76y .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 30px;
}

._hfy76y ._aj58v0h {
    text-align: left;
    margin-bottom: 30px;
}

._hfy76y ._aj58v0h 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);
}

._hfy76y ._aj58v0h li:last-child { border-bottom: none; }

._hfy76y ._aj58v0h li i {
    color: var(--a14d5);
}

._hfy76y ._aj58v0h li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

._q43qma {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--a7u4);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--a10yq);
}

._q43qma:hover {
    transform: translateY(-5px);
    box-shadow: var(--a12zg);
}

._q43qma ._qb602 {
    height: 200px;
    overflow: hidden;
}

._q43qma ._qb602 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

._q43qma:hover ._qb602 img {
    transform: scale(1.05);
}

._q43qma .card-body {
    padding: 24px;
}

._q43qma ._kgqpmwz {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

._q43qma ._kgqpmwz i {
    margin-right: 4px;
    color: var(--a14d5);
}

._q43qma .card-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

._q43qma .card-title a { color: var(--text-primary); }
._q43qma .card-title a:hover { color: var(--a14d5); }

._mpft49 {
    background: var(--a14d5);
    position: relative;
    overflow: hidden;
}

._mpft49 .cta-content {
    position: relative;
    z-index: 2;
}

._mpft49 ._w5tnp4 {
    font-size: var(--a20pu);
    color: #fff;
}

._mpft49 ._k1w4z6p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
}

._mpft49 p, ._mpft49 li { color: rgba(255,255,255,0.8); }

._mpft49 ._vlk2uj {
    background: #fff;
    color: var(--a14d5);
}

._mpft49 ._vlk2uj:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

._mpft49 .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
}

.cta-shape-1 { width: 300px; height: 300px; top: -150px; right: -50px; }
.cta-shape-2 { width: 200px; height: 200px; bottom: -100px; left: -50px; }

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--a4pr);
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: var(--a17ck);
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--a14d5); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item ._e719vk9 {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--a14d5);
    font-size: 24px;
    font-weight: var(--a18mo);
    margin: 0 auto 20px;
    border: 2px solid var(--a14d5);
}

.process-item ._xuscl1m {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    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: 32px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: var(--border-color);
}

.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(--a18mo);
    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%); }
}

._ln8ecs {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.6);
}

._ln8ecs h1, ._ln8ecs h2, ._ln8ecs h3,
._ln8ecs h4, ._ln8ecs h5 { color: #fff; }

._gg48744 ._kw8fo {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

._gg48744 ._kw8fo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--a14d5);
}

._gg48744 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

._o8y2m a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}

._o8y2m a:hover {
    color: var(--a14d5);
    padding-left: 5px;
}

._o8y2m 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(--a14d5); margin-top: 4px; }

._sk1qy {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

._sk1qy a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

._sk1qy a:hover {
    background: var(--a14d5);
    border-color: var(--a14d5);
    color: #fff;
}

._t6bsk {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 60px;
}

._t6bsk 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(--a14d5);
}

.policy-content h1 {
    font-size: var(--a20pu);
    font-weight: var(--a18mo);
    margin-bottom: 24px;
    color: var(--text-primary);
}

.policy-content h2 {
    font-size: var(--fs-h4);
    font-weight: var(--fw-semibold);
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.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(--a14d5);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-primary);
}

._a0ysgm8 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--a14d5);
    color: #fff;
    border: none;
    border-radius: 50%;
    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(--a11hb);
}

._a0ysgm8.visible { opacity: 1; visibility: visible; }
._a0ysgm8:hover { transform: translateY(-3px); }

._bl9sa .form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--a6e7);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--a17ck);
}

._bl9sa .form-control:focus {
    border-color: var(--a14d5);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: var(--bg-primary);
    color: var(--text-primary);
}

._bl9sa .form-control::placeholder { color: var(--text-muted); }
._bl9sa textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--border-light); opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--a14d5);
    width: 24px;
    border-radius: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--a10yq);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--a14d5);
    border-color: var(--a14d5);
    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(-15px); }
}

.float-anim { animation: floatUpDown 3s ease-in-out infinite; }

@media (max-width: 1200px) {
    :root { --a19yr: 48px; --a20pu: 36px; }
}

@media (max-width: 992px) {
    :root {
        --a19yr: 40px; --a20pu: 32px; --a21ra: 26px;
        --_ze5zfu: 80px 0;
    }

    ._a0zahye {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-body);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        box-shadow: -4px 0 30px rgba(0,0,0,0.12);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
    }

    ._a0zahye.active {
        right: 0;
    }

    ._a0zahye .nav-link {
        display: block !important;
        font-size: 18px !important;
        padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-primary) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    ._a0zahye .nav-link:hover,
    ._a0zahye .nav-link.active {
        color: var(--a14d5) !important;
    }

    ._a0zahye .nav-link::after {
        display: none;
    }

    ._idvice { display: none !important; }

    ._y428tw {
        display: flex !important;
        z-index: 10001;
        position: relative;
        pointer-events: auto !important;
        opacity: 1 !important;
        background: none !important;
        border: none !important;
    }

    ._gqpdb7 {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    ._gqpdb7.active {
        opacity: 1;
        visibility: visible;
    }

    ._pgj2d7i { font-size: var(--a19yr); }
    .process-item:not(:last-child)::after { display: none; }
    ._sinjbwp { font-size: 36px; }
}

@media (max-width: 768px) {
    :root {
        --a19yr: 34px; --a20pu: 28px; --a21ra: 22px; --fs-h4: 20px;
        --_ze5zfu: 60px 0;
    }
    ._xwty1cx { margin-bottom: 40px; }
    ._ueeq3 { min-height: auto; padding: 140px 0 80px; }
    ._heqe7ow { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    ._hfy76y ._uvjpk5 { font-size: 40px; }
    ._t6bsk { text-align: center; }
}

@media (max-width: 576px) {
    :root {
        --a19yr: 28px; --a20pu: 24px; --a21ra: 20px;
        --_ze5zfu: 50px 0;
    }
    ._r5ui4zy { padding: 24px; }
    ._hfy76y { padding: 28px; }
    ._cjqao6 { padding: 28px 20px; }
}

._t9e0fq ._vk17v3 { color: #fff; }
._t9e0fq ._k2afoin { color: var(--a14d5); }
._t9e0fq ._rw9arba { color: rgba(255,255,255,0.55); }
._t9e0fq ._o8y2m a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
._t9e0fq ._o8y2m 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(--a14d5) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }

._fu5wq8:not(.scrolled) ._m9oym,
._fu5wq8:not(.scrolled) .nav-link {
    color: #fff !important;
}
._fu5wq8:not(.scrolled) .nav-link:hover {
    color: #fff !important;
    opacity: 0.85;
}
._fu5wq8:not(.scrolled) ._go133 {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
}
._fu5wq8:not(.scrolled) ._go133:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border-color: #fff !important;
}

._fu5wq8.scrolled ._m9oym,
._fu5wq8.scrolled .nav-link {
    color: var(--text-primary) !important;
}
._fu5wq8.scrolled .nav-link:hover {
    color: var(--a14d5) !important;
    opacity: 1;
}
._fu5wq8.scrolled ._go133 {
    color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
    background: transparent !important;
}
._fu5wq8.scrolled ._go133:hover {
    background: var(--text-primary) !important;
    color: var(--bg-primary, #fff) !important;
    border-color: var(--text-primary) !important;
}

