

: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;

    --n14nx: #2563eb;
    --n15bv: #0891b2;
    --n1hy: linear-gradient(135deg, var(--n14nx), var(--n15bv));
    --accent-glow: 0 4px 14px rgba(37, 99, 235, 0.2);

    --n3o4: 'Inter', system-ui, sans-serif;
    --n5hk: 'Inter', system-ui, sans-serif;

    --n19mj: 56px;
    --n20bv: 42px;
    --n21hz: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --n17dq: 16px;
    --fs-small: 14px;

    --n18j8: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --n6jg: 8px;
    --n7rp: 12px;
    --n8fz: 16px;
    --n9nw: 24px;
    --n4m8: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --n10om: 0 2px 8px rgba(0, 0, 0, 0.04);
    --n11do: 0 4px 16px rgba(0, 0, 0, 0.06);
    --n12po: 0 8px 32px rgba(0, 0, 0, 0.08);
    --n13no: 0 16px 48px rgba(0, 0, 0, 0.1);

    --irwkf: 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(--n5hk);
    font-size: var(--n17dq);
    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(--n14nx);
    transition: var(--transition);
}

a:hover {
    color: var(--n15bv);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--n14nx);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--n3o4);
    font-weight: var(--n18j8);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: var(--n19mj); }
h2 { font-size: var(--n20bv); }
h3 { font-size: var(--n21hz); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--n1hy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--n14nx); }
.text-accent-2 { color: var(--n15bv); }
.text-dark { color: var(--text-primary); }
.ethq8v { color: var(--text-muted); }

.irwkf { padding: var(--irwkf); position: relative; }
.irwkf-sm { padding: 60px 0; }
.irwkf-lg { padding: 140px 0; }
.irwkf > .container { position: relative; z-index: 1; }

.szki8r { background-color: var(--bg-primary); }
.idnpvb { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom {
    background: var(--n1hy);
    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 .pojwa { color: rgba(255,255,255,0.8); }
.bg-gradient-custom a:not(.pwea8) { color: #fff; }
.bg-gradient-custom .zq5r { color: #fff; }

.wqhncm {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
}
.wqhncm h1, .wqhncm h2, .wqhncm h3,
.wqhncm h4, .wqhncm h5, .wqhncm h6 { color: #fff; }
.wqhncm p, .wqhncm li, .wqhncm span:not(.badge) { color: rgba(255,255,255,0.7); }
.wqhncm a:not(.pwea8) { color: rgba(255,255,255,0.8); }
.wqhncm a:not(.pwea8):hover { color: #fff; }
.wqhncm .bcrlf { 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; }

.plf63b {
    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;
}

.plf63b.loaded {
    opacity: 0;
    visibility: hidden;
}

.mw356 {
    display: flex;
    gap: 8px;
}

.wfmjj {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--n14nx);
    animation: plf63bBounce 1.4s ease-in-out infinite both;
}

.wfmjj:nth-child(1) { animation-delay: -0.32s; }
.wfmjj:nth-child(2) { animation-delay: -0.16s; }
.wfmjj:nth-child(3) { animation-delay: 0; }

@keyframes plf63bBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.pwea8 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: var(--n17dq);
    font-weight: var(--fw-semibold);
    border-radius: var(--n4m8);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.fmqq {
    background: var(--n14nx);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.fmqq:hover {
    background: var(--n15bv);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: #fff;
}

.jqlpi {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.jqlpi:hover {
    border-color: var(--n14nx);
    color: var(--n14nx);
    background: rgba(37, 99, 235, 0.04);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--n14nx);
    padding: 0;
    font-weight: var(--fw-medium);
}

.btn-link-custom:hover {
    color: var(--n15bv);
}

.btn-link-custom i {
    transition: transform 0.3s ease;
}

.btn-link-custom:hover i {
    transform: translateX(5px);
}

.wjuy5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.wjuy5.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--n10om);
}

.sca9x {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bq4c {
    font-size: 24px;
    font-weight: var(--n18j8);
    color: var(--text-primary);
}

.bq4c:hover {
    color: var(--text-primary);
}

.yy7i {
    display: flex;
    align-items: center;
    gap: 32px;
}

.yy7i .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}

.yy7i .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--n14nx);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.yy7i .nav-link:hover,
.yy7i .nav-link.active {
    color: var(--n14nx);
}

.yy7i .nav-link:hover::after,
.yy7i .nav-link.active::after {
    width: 100%;
}

.bfq5 {
    margin-left: 16px;
}

.xyei, .dmmvmo {
    display: flex;
    align-items: center;
    gap: 32px;
}
.xyei .nav-link, .dmmvmo .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}
.xyei .nav-link:hover, .dmmvmo .nav-link:hover { color: var(--n14nx); }

.xyei ~ .yy7i { display: none; }

.zlmbf {
    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;
}

.zlmbf .ees6 {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.zlmbf.active .ees6:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.zlmbf.active .ees6:nth-child(2) { opacity: 0; }
.zlmbf.active .ees6:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nn1il {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

.nn1il .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.nn1il .uyxj1w {
    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%);
}

.sef133 {
    position: relative;
    z-index: 2;
}

.kplr {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--n14nx);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--n4m8);
}

.cq2bs {
    font-size: var(--n19mj);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.qcik2l {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.kwp8yv {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fmgthv {
    position: relative;
    z-index: 2;
}

.fmgthv img {
    border-radius: var(--n8fz);
    box-shadow: var(--n13no);
}

.bqm8y {
    margin-bottom: 60px;
}

.lfgae {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--n14nx);
    margin-bottom: 16px;
}

.afex7k {
    font-size: var(--n20bv);
    font-weight: var(--n18j8);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.kz72dz {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.bqm8y.text-center .kz72dz {
    margin-left: auto;
    margin-right: auto;
}

.lsdt {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--n7rp);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--n10om);
}

.lsdt:hover {
    transform: translateY(-5px);
    box-shadow: var(--n12po);
    border-color: var(--n14nx);
}

.lsdt .tcp6f {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--n7rp);
    background: rgba(37, 99, 235, 0.08);
    color: var(--n14nx);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.lsdt:hover .tcp6f {
    background: var(--n14nx);
    color: #fff;
}

.lsdt .ckoc {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.lsdt .mgpn {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.lsdt-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--n7rp);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--n10om);
}

.lsdt-horizontal:hover {
    box-shadow: var(--n11do);
    border-color: var(--n14nx);
}

.lsdt-horizontal .tcp6f {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--n6jg);
    background: rgba(37, 99, 235, 0.08);
    color: var(--n14nx);
    font-size: 24px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--n8fz);
    overflow: hidden;
    box-shadow: var(--n12po);
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--n8fz);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--n14nx);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--n7rp);
    text-align: center;
    box-shadow: var(--n11do);
}

.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--n18j8);
    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(--n14nx);
    font-size: 16px;
}

.zrzqet {
    background: var(--bg-secondary);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.zq5r {
    font-size: 48px;
    font-weight: var(--n18j8);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.zq5r .counter-suffix {
    color: var(--n14nx);
}

.pojwa {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rzmmxu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--n7rp);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--n10om);
}

.rzmmxu:hover {
    transform: translateY(-8px);
    box-shadow: var(--n13no);
}

.rzmmxu .rsedxi {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.rzmmxu .rsedxi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rzmmxu:hover .rsedxi img {
    transform: scale(1.05);
}

.rzmmxu .rsedxi .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--n14nx);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--n4m8);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}

.rzmmxu .card-body {
    padding: 28px;
}

.rzmmxu .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.rzmmxu .card-title a {
    color: var(--text-primary);
}

.rzmmxu .card-title a:hover {
    color: var(--n14nx);
}

.rzmmxu .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.rzmmxu .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.rzmmxu .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--n18j8);
    color: var(--n14nx);
}

.qhld1 {
    text-align: center;
    transition: var(--transition);
}

.qhld1:hover {
    transform: translateY(-5px);
}

.qhld1 .gwv14 {
    position: relative;
    overflow: hidden;
    border-radius: var(--n8fz);
    margin-bottom: 20px;
    box-shadow: var(--n11do);
}

.qhld1 .gwv14 img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.qhld1:hover .gwv14 img {
    transform: scale(1.05);
}

.qhld1 .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;
}

.qhld1: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(--n14nx);
}

.qhld1 .grgk {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

.qhld1 .lz6g {
    font-size: var(--fs-small);
    color: var(--n14nx);
}

.xlia {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--n7rp);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--n10om);
}

.xlia:hover {
    box-shadow: var(--n11do);
}

.xlia .quote-icon {
    font-size: 32px;
    color: var(--n14nx);
    margin-bottom: 20px;
    opacity: 0.3;
}

.xlia .ct2r {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.xlia .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.xlia .ml7p1 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.xlia .frl4 {
    font-size: var(--n17dq);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.xlia .lepw84 {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.xlia .stars {
    color: #f59e0b;
    margin-bottom: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--n7rp);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--n10om);
}

.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(--n15bv);
    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(--n7rp) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--n10om);
}

.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(--n14nx);
}

.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.bjxz6 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--n8fz);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--n10om);
}

.bjxz6.featured {
    border-color: var(--n14nx);
    box-shadow: var(--n12po);
}

.bjxz6.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--n14nx);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    border-radius: 0 0 var(--n6jg) var(--n6jg);
}

.bjxz6:hover {
    transform: translateY(-5px);
    box-shadow: var(--n12po);
}

.bjxz6 .cuy2wf {
    font-size: var(--fs-h5);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bjxz6 .vtds {
    font-size: 56px;
    font-weight: var(--n18j8);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.bjxz6 .vtds .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--n14nx);
}

.bjxz6 .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.bjxz6 .ri6uy {
    text-align: left;
    margin-bottom: 30px;
}

.bjxz6 .ri6uy 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);
}

.bjxz6 .ri6uy li:last-child { border-bottom: none; }

.bjxz6 .ri6uy li i {
    color: var(--n14nx);
}

.bjxz6 .ri6uy li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.ncwi {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--n7rp);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--n10om);
}

.ncwi:hover {
    transform: translateY(-5px);
    box-shadow: var(--n12po);
}

.ncwi .rsedxi {
    height: 200px;
    overflow: hidden;
}

.ncwi .rsedxi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ncwi:hover .rsedxi img {
    transform: scale(1.05);
}

.ncwi .card-body {
    padding: 24px;
}

.ncwi .ly13w2 {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.ncwi .ly13w2 i {
    margin-right: 4px;
    color: var(--n14nx);
}

.ncwi .card-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

.ncwi .card-title a { color: var(--text-primary); }
.ncwi .card-title a:hover { color: var(--n14nx); }

.oym7 {
    background: var(--n14nx);
    position: relative;
    overflow: hidden;
}

.oym7 .cta-content {
    position: relative;
    z-index: 2;
}

.oym7 .ti67 {
    font-size: var(--n20bv);
    color: #fff;
}

.oym7 .pa2u {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
}

.oym7 p, .oym7 li { color: rgba(255,255,255,0.8); }

.oym7 .pwea8 {
    background: #fff;
    color: var(--n14nx);
}

.oym7 .pwea8:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.oym7 .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(--n4m8);
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: var(--n17dq);
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--n14nx); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item .ne72vc {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--n14nx);
    font-size: 24px;
    font-weight: var(--n18j8);
    margin: 0 auto 20px;
    border: 2px solid var(--n14nx);
}

.process-item .lz30bv {
    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(--n18j8);
    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%); }
}

.ctqfq {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.6);
}

.ctqfq h1, .ctqfq h2, .ctqfq h3,
.ctqfq h4, .ctqfq h5 { color: #fff; }

.le7m .ycl1jn {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.le7m .ycl1jn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--n14nx);
}

.le7m p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.milx8 a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}

.milx8 a:hover {
    color: var(--n14nx);
    padding-left: 5px;
}

.milx8 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(--n14nx); margin-top: 4px; }

.uzoq {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.uzoq 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);
}

.uzoq a:hover {
    background: var(--n14nx);
    border-color: var(--n14nx);
    color: #fff;
}

.karbe0 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 60px;
}

.karbe0 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(--n14nx);
}

.policy-content h1 {
    font-size: var(--n20bv);
    font-weight: var(--n18j8);
    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(--n14nx);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-primary);
}

.ibzcyt {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--n14nx);
    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(--n11do);
}

.ibzcyt.visible { opacity: 1; visibility: visible; }
.ibzcyt:hover { transform: translateY(-3px); }

.idt4 .form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--n6jg);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--n17dq);
}

.idt4 .form-control:focus {
    border-color: var(--n14nx);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.idt4 .form-control::placeholder { color: var(--text-muted); }
.idt4 textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--border-light); opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--n14nx);
    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(--n10om);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--n14nx);
    border-color: var(--n14nx);
    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 { --n19mj: 48px; --n20bv: 36px; }
}

@media (max-width: 992px) {
    :root {
        --n19mj: 40px; --n20bv: 32px; --n21hz: 26px;
        --irwkf: 80px 0;
    }

    .yy7i {
        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;
    }

    .yy7i.active {
        right: 0;
    }

    .yy7i .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;
    }

    .yy7i .nav-link:hover,
    .yy7i .nav-link.active {
        color: var(--n14nx) !important;
    }

    .yy7i .nav-link::after {
        display: none;
    }

    .bfq5 { display: none !important; }

    .zlmbf {
        display: flex !important;
        z-index: 10001;
        position: relative;
        pointer-events: auto !important;
        opacity: 1 !important;
        background: none !important;
        border: none !important;
    }

    .ay8sb {
        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;
    }

    .ay8sb.active {
        opacity: 1;
        visibility: visible;
    }

    .cq2bs { font-size: var(--n19mj); }
    .process-item:not(:last-child)::after { display: none; }
    .zq5r { font-size: 36px; }
}

@media (max-width: 768px) {
    :root {
        --n19mj: 34px; --n20bv: 28px; --n21hz: 22px; --fs-h4: 20px;
        --irwkf: 60px 0;
    }
    .bqm8y { margin-bottom: 40px; }
    .nn1il { min-height: auto; padding: 140px 0 80px; }
    .kwp8yv { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .bjxz6 .vtds { font-size: 40px; }
    .karbe0 { text-align: center; }
}

@media (max-width: 576px) {
    :root {
        --n19mj: 28px; --n20bv: 24px; --n21hz: 20px;
        --irwkf: 50px 0;
    }
    .xlia { padding: 24px; }
    .bjxz6 { padding: 28px; }
    .lsdt { padding: 28px 20px; }
}

.wqhncm .kplr { color: #fff; }
.wqhncm .lfgae { color: var(--n14nx); }
.wqhncm .ethq8v { color: rgba(255,255,255,0.55); }
.wqhncm .milx8 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.wqhncm .milx8 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(--n14nx) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
