

:root {
    --bg-primary: #fafbff;
    --bg-secondary: #f0f3fd;
    --bg-card: #ffffff;
    --bg-card-hover: #f6f8ff;
    --text-primary: #1a1f36;
    --text-secondary: #4e5573;
    --text-muted: #8b91a8;
    --footer-dark-bg: #1a1f36;
    --border-color: #d4d9ed;
    --border-light: #e6eaf5;

    --z142d: #6c5ce7;
    --z15rg: #fd7e50;
    --z168n: #00cec9;
    --z1rz: linear-gradient(135deg, var(--z142d), #a78bfa);
    --z1rz-2: linear-gradient(135deg, var(--z15rg), #feb47b);
    --accent-glow: 0 8px 32px rgba(108, 92, 231, 0.22);

    --z3np: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --z5xa: 'Inter', 'Segoe UI', sans-serif;

    --z19bt: 58px;
    --z200b: 44px;
    --z2198: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --z17h8: 17px;
    --fs-small: 14px;

    --z18xz: 800;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --z6q9: 10px;
    --z7at: 14px;
    --z821: 20px;
    --z9zr: 28px;
    --z4jf: 50px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    --z100z: 0 2px 10px rgba(26, 31, 54, 0.04);
    --z11zo: 0 8px 28px rgba(26, 31, 54, 0.06);
    --z12fe: 0 16px 48px rgba(26, 31, 54, 0.08);
    --z131a: 0 24px 64px rgba(26, 31, 54, 0.10);

    --imlch: 110px 0;
    --container-width: 1180px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--z5xa);
    font-size: var(--z17h8);
    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(--z142d);
    transition: var(--transition);
}
a:hover { color: var(--z15rg); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--z142d); color: #fff; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--z3np);
    font-weight: var(--z18xz);
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

h1 { font-size: var(--z19bt); letter-spacing: -0.03em; }
h2 { font-size: var(--z200b); letter-spacing: -0.02em; }
h3 { font-size: var(--z2198); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--z1rz);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--z142d); }
.text-accent-2 { color: var(--z15rg); }
.text-dark { color: var(--text-primary); }
.tg4a { color: var(--text-muted); }

.imlch { padding: var(--imlch); position: relative; }
.imlch-sm { padding: 60px 0; }
.imlch-lg { padding: 150px 0; }
.imlch > .container { position: relative; z-index: 1; }

.ak3j { background-color: var(--bg-primary); }
.z8j9u { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--z1rz); 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(.dvkq) { color: #fff; }
.bg-gradient-custom .em007 { color: #fff; }
.bg-gradient-custom .y4zpb { color: rgba(255,255,255,0.7); }

.dzjk {
    background-color: #1a1f36;
    color: rgba(255,255,255,0.7);
}
.dzjk h1, .dzjk h2, .dzjk h3,
.dzjk h4, .dzjk h5, .dzjk h6 { color: #fff; }
.dzjk p, .dzjk li, .dzjk span:not(.badge) { color: rgba(255,255,255,0.7); }
.dzjk a:not(.dvkq) { color: rgba(255,255,255,0.8); }
.dzjk a:not(.dvkq):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; }

.wqim40 {
    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.6s ease, visibility 0.6s ease;
}
.wqim40.loaded { opacity: 0; visibility: hidden; }
.j42r5 { display: flex; gap: 10px; }
.sy3yc {
    width: 12px; height: 12px;
    border-radius: 50%;
    animation: wqim40ColorCycle 1.6s ease-in-out infinite both;
}
.sy3yc:nth-child(1) { background: var(--z142d); animation-delay: -0.3s; }
.sy3yc:nth-child(2) { background: var(--z15rg); animation-delay: -0.15s; }
.sy3yc:nth-child(3) { background: var(--z168n); animation-delay: 0; }

@keyframes wqim40ColorCycle {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
    40% { transform: scale(1.3); opacity: 1; }
}

.dvkq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    font-family: var(--z3np);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    border-radius: var(--z4jf);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.p74j3f {
    background: var(--z1rz);
    color: #fff;
    box-shadow: var(--accent-glow);
}
.p74j3f:hover {
    color: #fff;
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.30);
    transform: translateY(-3px);
}

.kzrzgn {
    background: transparent;
    color: var(--z142d);
    border: 2px solid var(--z142d);
}
.kzrzgn:hover {
    background: var(--z1rz);
    color: #fff;
    border-color: transparent;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--z142d);
    padding: 0;
    font-weight: var(--fw-semibold);
    font-size: var(--z17h8);
    position: relative;
}
.btn-link-custom::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 100%; height: 2px;
    background: var(--z1rz);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}
.btn-link-custom:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-link-custom:hover { color: var(--z15rg); }
.btn-link-custom i { transition: transform 0.3s ease; }
.btn-link-custom:hover i { transform: translateX(5px); }

.ooukh {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.mymd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h0fd {
    font-family: var(--z3np);
    font-size: 28px;
    font-weight: var(--z18xz);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.h0fd:hover { color: var(--text-primary); }

.z1msz { display: flex; align-items: center; gap: 32px; }

.z1msz .nav-link {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: var(--fw-medium);
    padding: 6px 0;
    position: relative;
}
.z1msz .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--z1rz);
    border-radius: 3px;
    transition: width 0.35s ease;
}
.z1msz .nav-link:hover,
.z1msz .nav-link.active { color: var(--z142d); }
.z1msz .nav-link:hover::after,
.z1msz .nav-link.active::after { width: 100%; }

.agot { margin-left: 12px; }

.iqj9ar, .oz63f3 { display: flex; align-items: center; gap: 28px; }
.iqj9ar .nav-link, .oz63f3 .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--fw-medium); padding: 8px 0;
}
.iqj9ar .nav-link:hover, .oz63f3 .nav-link:hover { color: var(--z142d); }
.iqj9ar ~ .z1msz { display: none; }

.nu90 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.nu90 .fk1aow {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 4px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}

.nu90.active .fk1aow:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nu90.active .fk1aow:nth-child(2) { opacity: 0; }
.nu90.active .fk1aow:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sg1xz {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-primary);
}
.sg1xz .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.06;
}
.sg1xz .th9a {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 40%, transparent 60%, var(--bg-primary) 100%);
}
.dxlp { position: relative; z-index: 2; }

.bp5sa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--z142d);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.08);
    border-radius: var(--z4jf);
    border: 1px solid rgba(108, 92, 231, 0.12);
}
.bp5sa i { font-size: 14px; }

.t25mvw {
    font-size: var(--z19bt);
    font-weight: var(--z18xz);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.mxlg {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.kiueh { display: flex; gap: 16px; flex-wrap: wrap; }

.lqdi3 { position: relative; z-index: 2; }
.lqdi3 img {
    border-radius: var(--z9zr);
    box-shadow: var(--z131a);
}

.sg1xz .hero-blob {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
    animation: blobFloat 12s ease-in-out infinite;
}
.sg1xz .hero-blob:nth-child(1) {
    background: var(--z142d);
    top: -10%; right: 5%;
}
.sg1xz .hero-blob:nth-child(2) {
    background: var(--z15rg);
    bottom: -5%; left: 10%;
    animation-delay: -4s;
    width: 400px; height: 400px;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.gg8v { margin-bottom: 60px; }

.ltvt0 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--z142d);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ltvt0 i { font-size: 15px; }

.xhh2m {
    font-size: var(--z200b);
    font-weight: var(--z18xz);
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.mycktx {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}
.gg8v.text-center .mycktx {
    margin-left: auto;
    margin-right: auto;
}

.uo0ps {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--z821);
    padding: 36px 26px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
    box-shadow: var(--z100z);
}
.uo0ps:hover {
    box-shadow: var(--z12fe);
    transform: translateY(-8px);
    border-color: rgba(108, 92, 231, 0.15);
}

.uo0ps .k9eaz {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--z7at);
    background: rgba(108, 92, 231, 0.08);
    color: var(--z142d);
    font-size: 26px;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.uo0ps:hover .k9eaz {
    background: var(--z1rz);
    color: #fff;
    transform: scale(1.1) rotate(-3deg);
}

.uo0ps .e4ahbb {
    font-family: var(--z3np);
    font-size: var(--fs-h5);
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: var(--z18xz);
}
.uo0ps .j8ozjj {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.uo0ps-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--z7at);
    padding: 26px;
    transition: var(--transition);
    box-shadow: var(--z100z);
}
.uo0ps-horizontal:hover { box-shadow: var(--z11zo); transform: translateY(-3px); border-color: rgba(108,92,231,0.15); }
.uo0ps-horizontal .k9eaz {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--z7at);
    background: rgba(108, 92, 231, 0.08);
    color: var(--z142d);
    font-size: 20px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--z9zr);
    overflow: hidden;
    box-shadow: var(--z12fe);
}
.about-section .about-image img { width: 100%; border-radius: var(--z9zr); }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: var(--z1rz);
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--z821);
    text-align: center;
    box-shadow: var(--accent-glow);
}
.experience-badge .badge-number {
    display: block;
    font-family: var(--z3np);
    font-size: 40px;
    line-height: 1;
    font-weight: var(--z18xz);
}
.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: 14px;
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--z142d); font-size: 14px; }

.jwzjk {
    background: var(--z1rz);
    color: #fff;
    border-radius: var(--z9zr);
}
.counter-item { text-align: center; padding: 24px; }
.em007 {
    font-family: var(--z3np);
    font-size: 52px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    font-weight: var(--z18xz);
}
.em007 .counter-suffix { color: rgba(255,255,255,0.75); }
.y4zpb {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.7);
}

.i63jqs {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--z821);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--z100z);
}
.i63jqs:hover {
    transform: translateY(-8px);
    box-shadow: var(--z12fe);
    border-color: rgba(108,92,231,0.15);
}
.i63jqs .lztk4p {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.i63jqs .lztk4p img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.i63jqs:hover .lztk4p img { transform: scale(1.08); }
.i63jqs .lztk4p .card-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--z1rz);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--z4jf);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}
.i63jqs .card-body { padding: 28px; }
.i63jqs .card-title {
    font-family: var(--z3np);
    font-size: var(--fs-h5);
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: var(--z18xz);
}
.i63jqs .card-title a { color: var(--text-primary); }
.i63jqs .card-title a:hover { color: var(--z142d); }
.i63jqs .card-text { font-size: var(--fs-small); color: var(--text-secondary); margin-bottom: 20px; }
.i63jqs .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}
.i63jqs .card-price {
    font-family: var(--z3np);
    font-size: var(--fs-h5);
    color: var(--z142d);
    font-weight: var(--z18xz);
}

.yswma { text-align: center; transition: var(--transition); }
.yswma:hover { transform: translateY(-6px); }
.yswma .qxcy {
    position: relative;
    overflow: hidden;
    border-radius: var(--z9zr);
    margin-bottom: 20px;
}
.yswma .qxcy img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.yswma:hover .qxcy img { transform: scale(1.05); }
.yswma .team-social {
    position: absolute;
    bottom: -60px; left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(0deg, rgba(26,31,54,0.65) 0%, transparent 100%);
    transition: bottom 0.4s ease;
}
.yswma:hover .team-social { bottom: 0; }
.team-social a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--z142d); }
.yswma .f3fn {
    font-family: var(--z3np);
    font-size: var(--fs-h5);
    margin-bottom: 4px;
    color: var(--text-primary);
    font-weight: var(--z18xz);
}
.yswma .ahx7ah {
    font-size: var(--fs-small);
    color: var(--z142d);
}

.zaz49m {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--z821);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--z100z);
    position: relative;
}
.zaz49m:hover { box-shadow: var(--z12fe); transform: translateY(-5px); border-color: rgba(108,92,231,0.15); }
.zaz49m .quote-icon {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.15;
    line-height: 1;
    background: var(--z1rz);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.zaz49m .k9o3w3 {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.zaz49m .author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.zaz49m .ne23 {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-secondary);
}
.zaz49m .txkm4m {
    font-size: var(--z17h8);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.zaz49m .ew97 {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.zaz49m .stars { color: var(--z15rg); margin-bottom: 12px; }

.zaz49m::before {
    content: '🚀';
    position: absolute;
    top: 14px; right: 20px;
    font-size: 22px;
    opacity: 0.12;
}

.portfolio-item {
    position: relative;
    border-radius: var(--z821);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--z100z);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s 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%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(0deg, rgba(26,31,54,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--z15rg);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-family: var(--z3np);
    font-size: var(--fs-h4);
    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-light) !important;
    border-radius: var(--z7at) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--z3np);
    font-size: 17px;
    font-weight: var(--fw-semibold);
    padding: 20px 24px;
    box-shadow: none;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(108, 92, 231, 0.04);
    color: var(--z142d);
}
.faq-section .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.zhve {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--z821);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--z100z);
}
.zhve.featured {
    background: var(--z1rz);
    color: #fff;
    border: none;
    box-shadow: var(--accent-glow);
    transform: scale(1.02);
}
.zhve.featured .nd9x,
.zhve.featured .plan-period,
.zhve.featured .a6a10 li { color: rgba(255,255,255,0.85); }
.zhve.featured .f536lo { color: #fff; }
.zhve.featured .a6a10 li i { color: rgba(255,255,255,0.9); }
.zhve.featured .dvkq { background: #fff; color: var(--z142d); }
.zhve.featured .dvkq:hover { background: var(--bg-secondary); }

.zhve:hover {
    transform: translateY(-6px);
    box-shadow: var(--z12fe);
}
.zhve.featured:hover {
    transform: scale(1.02) translateY(-6px);
}
.zhve .nd9x {
    font-size: var(--fs-small);
    color: var(--z142d);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: var(--fw-semibold);
}
.zhve .f536lo {
    font-family: var(--z3np);
    font-size: 52px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: var(--z18xz);
}
.zhve .f536lo .currency {
    font-size: 22px;
    vertical-align: top;
    color: var(--z142d);
}
.zhve .plan-period { font-size: var(--fs-small); color: var(--text-muted); margin-bottom: 28px; }
.zhve .a6a10 { text-align: left; margin-bottom: 30px; }
.zhve .a6a10 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.zhve .a6a10 li:last-child { border-bottom: none; }
.zhve .a6a10 li i { color: var(--z142d); }
.zhve .a6a10 li.disabled { opacity: 0.4; text-decoration: line-through; }

.bqoo6d {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--z821);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--z100z);
}
.bqoo6d:hover { transform: translateY(-6px); box-shadow: var(--z12fe); border-color: rgba(108,92,231,0.15); }
.bqoo6d .lztk4p { height: 220px; overflow: hidden; }
.bqoo6d .lztk4p img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.bqoo6d:hover .lztk4p img { transform: scale(1.06); }
.bqoo6d .card-body { padding: 24px; }
.bqoo6d .lc83b {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.bqoo6d .lc83b i { margin-right: 4px; color: var(--z142d); }
.bqoo6d .card-title {
    font-family: var(--z3np);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: var(--z18xz);
}
.bqoo6d .card-title a { color: var(--text-primary); }
.bqoo6d .card-title a:hover { color: var(--z142d); }

.bwdljv {
    background: var(--z1rz);
    position: relative;
    overflow: hidden;
    border-radius: var(--z9zr);
}
.bwdljv .cta-content { position: relative; z-index: 2; }
.bwdljv .c2uir5 { font-size: var(--z200b); color: #fff; }
.bwdljv .ichzs { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 540px; }
.bwdljv p, .bwdljv li { color: rgba(255,255,255,0.8); }
.bwdljv .dvkq { background: #fff; color: var(--z142d); border: none; }
.bwdljv .dvkq:hover { background: var(--bg-secondary); transform: translateY(-2px); }
.bwdljv .cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 0;
}
.cta-shape-1 { width: 400px; height: 400px; top: -180px; right: -100px; }
.cta-shape-2 { width: 280px; height: 280px; bottom: -120px; left: -70px; }

.newsletter-form { display: flex; gap: 12px; max-width: 480px; }
.newsletter-form input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--z4jf);
    padding: 14px 24px;
    color: var(--text-primary);
    font-family: var(--z5xa);
    font-size: var(--z17h8);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--z142d); box-shadow: 0 0 0 3px rgba(108,92,231,0.08); }

.process-item { text-align: center; position: relative; padding: 0 20px; }
.process-item .w72tt {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.08);
    color: var(--z142d);
    font-family: var(--z3np);
    font-size: 24px;
    font-weight: var(--z18xz);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.process-item:hover .w72tt {
    background: var(--z1rz);
    color: #fff;
}
.process-item .x3sw {
    font-family: var(--z3np);
    font-size: var(--fs-h5);
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: var(--z18xz);
}
.process-item .step-text { font-size: var(--fs-small); color: var(--text-secondary); }
.process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 24px; right: -16px;
    color: var(--z142d);
    font-size: 24px;
    opacity: 0.5;
}

.marquee-section {
    padding: 40px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap;
    gap: 60px;
}

.marquee-track .marquee-item {
    font-size: 66px;
    font-weight: var(--z18xz);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    color: var(--text-primary);
}

.marquee-track .marquee-item.stroke {
    -webkit-text-stroke: 2px 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%); }
}

.vdvz {
    background: #1a1f36;
    color: rgba(255,255,255,0.6);
}
.vdvz h1, .vdvz h2, .vdvz h3,
.vdvz h4, .vdvz h5 { color: #fff; }

.r93a0 .tmviyc {
    font-family: var(--z3np);
    font-size: 18px;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-weight: var(--z18xz);
}
.r93a0 .tmviyc::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 3px;
    background: var(--z1rz);
    border-radius: 3px;
}
.r93a0 p { color: rgba(255,255,255,0.45); font-size: var(--fs-small); }
.diusa6 a { color: rgba(255,255,255,0.45); font-size: var(--fs-small); transition: var(--transition); }
.diusa6 a:hover { color: var(--z142d); padding-left: 5px; }
.diusa6 li { margin-bottom: 10px; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: rgba(255,255,255,0.45); font-size: var(--fs-small);
}
.footer-contact li i { color: var(--z142d); margin-top: 4px; }
.pq081r { display: flex; gap: 10px; margin-top: 20px; }
.pq081r a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.pq081r a:hover { background: var(--z142d); color: #fff; }
.l405 { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; margin-top: 50px; }
.l405 p { margin: 0; font-size: var(--fs-small); color: rgba(255,255,255,0.3); }

.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.3); text-decoration: none; transition: color 0.3s; }
.footer-policy a:hover { color: var(--z142d); }

.policy-content h1 { font-size: var(--z200b); 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(--z142d); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.mngih5 {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--z1rz);
    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(--accent-glow);
}
.mngih5.visible { opacity: 1; visibility: visible; }
.mngih5:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(108,92,231,0.30); }

.egd1hi .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--z7at);
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--z5xa);
    font-size: var(--z17h8);
}
.egd1hi .form-control:focus {
    border-color: var(--z142d);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.08);
    background: var(--bg-card);
    color: var(--text-primary);
}
.egd1hi .form-control::placeholder { color: var(--text-muted); }
.egd1hi textarea.form-control { min-height: 120px; resize: vertical; }

.swiper-pagination-bullet { background: var(--border-color); opacity: 1; width: 10px; height: 10px; }
.swiper-pagination-bullet-active { background: var(--z142d); width: 26px; border-radius: 10px; }
.swiper-button-prev,
.swiper-button-next {
    width: 44px; height: 44px;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--text-primary);
    box-shadow: var(--z100z);
    border: 1px solid var(--border-light);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 14px; }
.swiper-button-prev:hover,
.swiper-button-next:hover { background: var(--z1rz); color: #fff; border-color: transparent; }

.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(-12px); }
}
.float-anim { animation: floatUpDown 5s ease-in-out infinite; }

@media (max-width: 1200px) { :root { --z19bt: 48px; --z200b: 38px; } }

@media (max-width: 992px) {
    :root { --z19bt: 40px; --z200b: 34px; --z2198: 26px; --imlch: 80px 0; }
    .z1msz {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--bg-primary);
        padding: 90px 28px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    }
    .z1msz.active { right: 0; }
    .z1msz .nav-link {
        display: block !important;
        font-size: 16px !important; padding: 14px 0 !important;
        border-bottom: 1px solid var(--border-light); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .z1msz .nav-link:hover, .z1msz .nav-link.active { color: var(--z142d) !important; }
    .z1msz .nav-link::after { display: none; }
    .agot { display: none !important; }
    .nu90 {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .ysuas {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.2);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .ysuas.active { opacity: 1; visibility: visible; }
    .t25mvw { font-size: var(--z19bt); }
    .process-item:not(:last-child)::after { display: none; }
    .em007 { font-size: 38px; }
    .bwdljv { border-radius: var(--z821); }
}

@media (max-width: 768px) {
    :root { --z19bt: 34px; --z200b: 28px; --z2198: 22px; --fs-h4: 20px; --imlch: 60px 0; }
    .gg8v { margin-bottom: 36px; }
    .sg1xz { min-height: auto; padding: 130px 0 70px; }
    .kiueh { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .zhve .f536lo { font-size: 38px; }
    .zhve.featured { transform: none; }
    .zhve.featured:hover { transform: translateY(-6px); }
    .l405 { text-align: center; }
}

@media (max-width: 576px) {
    :root { --z19bt: 28px; --z200b: 24px; --z2198: 19px; --imlch: 44px 0; }
    .zaz49m { padding: 24px; }
    .zhve { padding: 24px; }
    .uo0ps { padding: 24px 18px; }
    .jwzjk { border-radius: var(--z7at); }
}

.dzjk .bp5sa { color: #fff; }
.dzjk .ltvt0 { color: var(--z142d); }
.dzjk .tg4a { color: rgba(255,255,255,0.55); }
.dzjk .diusa6 a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.dzjk .diusa6 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(--z142d) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
