

: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;

    --m14mn: #2563eb;
    --m15ms: #0891b2;
    --m119: linear-gradient(135deg, var(--m14mn), var(--m15ms));
    --accent-glow: 0 4px 14px rgba(37, 99, 235, 0.2);

    --m30i: 'Inter', system-ui, sans-serif;
    --m5pe: 'Inter', system-ui, sans-serif;

    --m19le: 56px;
    --m2052: 42px;
    --m21tz: 30px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --m1787: 16px;
    --fs-small: 14px;

    --m186e: 700;
    --fw-semibold: 600;
    --fw-medium: 500;
    --fw-regular: 400;
    --fw-light: 300;

    --m6o3: 8px;
    --m7mn: 12px;
    --m85u: 16px;
    --m9y1: 24px;
    --m4zw: 50px;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    --m10e8: 0 2px 8px rgba(0, 0, 0, 0.04);
    --m1159: 0 4px 16px rgba(0, 0, 0, 0.06);
    --m12c7: 0 8px 32px rgba(0, 0, 0, 0.08);
    --m137y: 0 16px 48px rgba(0, 0, 0, 0.1);

    --mcgva: 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(--m5pe);
    font-size: var(--m1787);
    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(--m14mn);
    transition: var(--transition);
}

a:hover {
    color: var(--m15ms);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--m14mn);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--m30i);
    font-weight: var(--m186e);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: var(--m19le); }
h2 { font-size: var(--m2052); }
h3 { font-size: var(--m21tz); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--m119);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--m14mn); }
.text-accent-2 { color: var(--m15ms); }
.text-dark { color: var(--text-primary); }
.dhr6m { color: var(--text-muted); }

.mcgva { padding: var(--mcgva); position: relative; }
.mcgva-sm { padding: 60px 0; }
.mcgva-lg { padding: 140px 0; }
.mcgva > .container { position: relative; z-index: 1; }

.ndwjk1 { background-color: var(--bg-primary); }
.tvw7m8 { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom {
    background: var(--m119);
    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 .cinq { color: rgba(255,255,255,0.8); }
.bg-gradient-custom a:not(.bje37) { color: #fff; }
.bg-gradient-custom .l8otoh { color: #fff; }

.wzc3 {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.7);
}
.wzc3 h1, .wzc3 h2, .wzc3 h3,
.wzc3 h4, .wzc3 h5, .wzc3 h6 { color: #fff; }
.wzc3 p, .wzc3 li, .wzc3 span:not(.badge) { color: rgba(255,255,255,0.7); }
.wzc3 a:not(.bje37) { color: rgba(255,255,255,0.8); }
.wzc3 a:not(.bje37):hover { color: #fff; }
.wzc3 .nmzbbf { 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; }

.w03dd {
    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;
}

.w03dd.loaded {
    opacity: 0;
    visibility: hidden;
}

.btks {
    display: flex;
    gap: 8px;
}

.cpjkz {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--m14mn);
    animation: w03ddBounce 1.4s ease-in-out infinite both;
}

.cpjkz:nth-child(1) { animation-delay: -0.32s; }
.cpjkz:nth-child(2) { animation-delay: -0.16s; }
.cpjkz:nth-child(3) { animation-delay: 0; }

@keyframes w03ddBounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.bje37 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: var(--m1787);
    font-weight: var(--fw-semibold);
    border-radius: var(--m4zw);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.do4wo {
    background: var(--m14mn);
    color: #fff;
    box-shadow: var(--accent-glow);
}

.do4wo:hover {
    background: var(--m15ms);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: #fff;
}

.a1ntnr {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.a1ntnr:hover {
    border-color: var(--m14mn);
    color: var(--m14mn);
    background: rgba(37, 99, 235, 0.04);
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--m14mn);
    padding: 0;
    font-weight: var(--fw-medium);
}

.btn-link-custom:hover {
    color: var(--m15ms);
}

.btn-link-custom i {
    transition: transform 0.3s ease;
}

.btn-link-custom:hover i {
    transform: translateX(5px);
}

.vg1b83 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.vg1b83.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--m10e8);
}

.ikfi7l {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ekdi78 {
    font-size: 24px;
    font-weight: var(--m186e);
    color: var(--text-primary);
}

.ekdi78:hover {
    color: var(--text-primary);
}

.j3d8w {
    display: flex;
    align-items: center;
    gap: 32px;
}

.j3d8w .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}

.j3d8w .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--m14mn);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.j3d8w .nav-link:hover,
.j3d8w .nav-link.active {
    color: var(--m14mn);
}

.j3d8w .nav-link:hover::after,
.j3d8w .nav-link.active::after {
    width: 100%;
}

.xztt {
    margin-left: 16px;
}

.tnab95, .jf2r {
    display: flex;
    align-items: center;
    gap: 32px;
}
.tnab95 .nav-link, .jf2r .nav-link {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    padding: 8px 0;
    position: relative;
}
.tnab95 .nav-link:hover, .jf2r .nav-link:hover { color: var(--m14mn); }

.tnab95 ~ .j3d8w { display: none; }

.nghnqp {
    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;
}

.nghnqp .ic71gb {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nghnqp.active .ic71gb:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nghnqp.active .ic71gb:nth-child(2) { opacity: 0; }
.nghnqp.active .ic71gb:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.qq51ph {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
}

.qq51ph .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.qq51ph .mibjk {
    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%);
}

.krrl {
    position: relative;
    z-index: 2;
}

.dxqgh {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--m14mn);
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: var(--m4zw);
}

.o5st9 {
    font-size: var(--m19le);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.a6ip {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.lyk8mi {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.b5zqe {
    position: relative;
    z-index: 2;
}

.b5zqe img {
    border-radius: var(--m85u);
    box-shadow: var(--m137y);
}

.ydbv {
    margin-bottom: 60px;
}

.zotn {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--m14mn);
    margin-bottom: 16px;
}

.c44y7 {
    font-size: var(--m2052);
    font-weight: var(--m186e);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.vin8 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}

.ydbv.text-center .vin8 {
    margin-left: auto;
    margin-right: auto;
}

.jzsf9 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--m7mn);
    padding: 40px 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--m10e8);
}

.jzsf9:hover {
    transform: translateY(-5px);
    box-shadow: var(--m12c7);
    border-color: var(--m14mn);
}

.jzsf9 .peabz2 {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--m7mn);
    background: rgba(37, 99, 235, 0.08);
    color: var(--m14mn);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.jzsf9:hover .peabz2 {
    background: var(--m14mn);
    color: #fff;
}

.jzsf9 .to2bt {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.jzsf9 .yre0w {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.jzsf9-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--m7mn);
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--m10e8);
}

.jzsf9-horizontal:hover {
    box-shadow: var(--m1159);
    border-color: var(--m14mn);
}

.jzsf9-horizontal .peabz2 {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--m6o3);
    background: rgba(37, 99, 235, 0.08);
    color: var(--m14mn);
    font-size: 24px;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--m85u);
    overflow: hidden;
    box-shadow: var(--m12c7);
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--m85u);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--m14mn);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--m7mn);
    text-align: center;
    box-shadow: var(--m1159);
}

.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--m186e);
    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(--m14mn);
    font-size: 16px;
}

.y5vg {
    background: var(--bg-secondary);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.l8otoh {
    font-size: 48px;
    font-weight: var(--m186e);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.l8otoh .counter-suffix {
    color: var(--m14mn);
}

.cinq {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.b6bnwo {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--m7mn);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--m10e8);
}

.b6bnwo:hover {
    transform: translateY(-8px);
    box-shadow: var(--m137y);
}

.b6bnwo .rxp5 {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.b6bnwo .rxp5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.b6bnwo:hover .rxp5 img {
    transform: scale(1.05);
}

.b6bnwo .rxp5 .card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--m14mn);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--m4zw);
    font-size: 12px;
    font-weight: var(--fw-semibold);
}

.b6bnwo .card-body {
    padding: 28px;
}

.b6bnwo .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    color: var(--text-primary);
}

.b6bnwo .card-title a {
    color: var(--text-primary);
}

.b6bnwo .card-title a:hover {
    color: var(--m14mn);
}

.b6bnwo .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.b6bnwo .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.b6bnwo .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--m186e);
    color: var(--m14mn);
}

.myjmu1 {
    text-align: center;
    transition: var(--transition);
}

.myjmu1:hover {
    transform: translateY(-5px);
}

.myjmu1 .cqz3 {
    position: relative;
    overflow: hidden;
    border-radius: var(--m85u);
    margin-bottom: 20px;
    box-shadow: var(--m1159);
}

.myjmu1 .cqz3 img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.myjmu1:hover .cqz3 img {
    transform: scale(1.05);
}

.myjmu1 .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;
}

.myjmu1: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(--m14mn);
}

.myjmu1 .ehcq {
    font-size: var(--fs-h5);
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    color: var(--text-primary);
}

.myjmu1 .l7zi68 {
    font-size: var(--fs-small);
    color: var(--m14mn);
}

.rwqw1 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--m7mn);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--m10e8);
}

.rwqw1:hover {
    box-shadow: var(--m1159);
}

.rwqw1 .quote-icon {
    font-size: 32px;
    color: var(--m14mn);
    margin-bottom: 20px;
    opacity: 0.3;
}

.rwqw1 .lfkp5b {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.rwqw1 .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rwqw1 .zzwxx {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.rwqw1 .e37zl8 {
    font-size: var(--m1787);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.rwqw1 .glt880 {
    font-size: var(--fs-small);
    color: var(--text-muted);
}

.rwqw1 .stars {
    color: #f59e0b;
    margin-bottom: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--m7mn);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--m10e8);
}

.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(--m15ms);
    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(--m7mn) !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--m10e8);
}

.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(--m14mn);
}

.faq-section .accordion-body {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.oysx34 {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--m85u);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--m10e8);
}

.oysx34.featured {
    border-color: var(--m14mn);
    box-shadow: var(--m12c7);
}

.oysx34.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--m14mn);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    border-radius: 0 0 var(--m6o3) var(--m6o3);
}

.oysx34:hover {
    transform: translateY(-5px);
    box-shadow: var(--m12c7);
}

.oysx34 .wsz9 {
    font-size: var(--fs-h5);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.oysx34 .d741 {
    font-size: 56px;
    font-weight: var(--m186e);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.oysx34 .d741 .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--m14mn);
}

.oysx34 .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 30px;
}

.oysx34 .ed5rf6 {
    text-align: left;
    margin-bottom: 30px;
}

.oysx34 .ed5rf6 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);
}

.oysx34 .ed5rf6 li:last-child { border-bottom: none; }

.oysx34 .ed5rf6 li i {
    color: var(--m14mn);
}

.oysx34 .ed5rf6 li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.cn0lzi {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--m7mn);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--m10e8);
}

.cn0lzi:hover {
    transform: translateY(-5px);
    box-shadow: var(--m12c7);
}

.cn0lzi .rxp5 {
    height: 200px;
    overflow: hidden;
}

.cn0lzi .rxp5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cn0lzi:hover .rxp5 img {
    transform: scale(1.05);
}

.cn0lzi .card-body {
    padding: 24px;
}

.cn0lzi .at7qb {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cn0lzi .at7qb i {
    margin-right: 4px;
    color: var(--m14mn);
}

.cn0lzi .card-title {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

.cn0lzi .card-title a { color: var(--text-primary); }
.cn0lzi .card-title a:hover { color: var(--m14mn); }

.iwbgy {
    background: var(--m14mn);
    position: relative;
    overflow: hidden;
}

.iwbgy .cta-content {
    position: relative;
    z-index: 2;
}

.iwbgy .zhp2w {
    font-size: var(--m2052);
    color: #fff;
}

.iwbgy .ytf8 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
}

.iwbgy p, .iwbgy li { color: rgba(255,255,255,0.8); }

.iwbgy .bje37 {
    background: #fff;
    color: var(--m14mn);
}

.iwbgy .bje37:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.iwbgy .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(--m4zw);
    padding: 14px 24px;
    color: var(--text-primary);
    font-size: var(--m1787);
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--m14mn); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item .yuwewx {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--m14mn);
    font-size: 24px;
    font-weight: var(--m186e);
    margin: 0 auto 20px;
    border: 2px solid var(--m14mn);
}

.process-item .awpm {
    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(--m186e);
    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%); }
}

.u1oxjr {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.6);
}

.u1oxjr h1, .u1oxjr h2, .u1oxjr h3,
.u1oxjr h4, .u1oxjr h5 { color: #fff; }

.ljffwa .adouo {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: #fff;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.ljffwa .adouo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--m14mn);
}

.ljffwa p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.rez4pr a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}

.rez4pr a:hover {
    color: var(--m14mn);
    padding-left: 5px;
}

.rez4pr 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(--m14mn); margin-top: 4px; }

.e5965z {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.e5965z 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);
}

.e5965z a:hover {
    background: var(--m14mn);
    border-color: var(--m14mn);
    color: #fff;
}

.srby {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 60px;
}

.srby 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(--m14mn);
}

.policy-content h1 {
    font-size: var(--m2052);
    font-weight: var(--m186e);
    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(--m14mn);
    text-decoration: underline;
}

.policy-content strong {
    color: var(--text-primary);
}

.e6ro {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--m14mn);
    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(--m1159);
}

.e6ro.visible { opacity: 1; visibility: visible; }
.e6ro:hover { transform: translateY(-3px); }

.zwgeu0 .form-control {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--m6o3);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--m1787);
}

.zwgeu0 .form-control:focus {
    border-color: var(--m14mn);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.zwgeu0 .form-control::placeholder { color: var(--text-muted); }
.zwgeu0 textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--border-light); opacity: 1; }
.swiper-pagination-bullet-active {
    background: var(--m14mn);
    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(--m10e8);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--m14mn);
    border-color: var(--m14mn);
    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 { --m19le: 48px; --m2052: 36px; }
}

@media (max-width: 992px) {
    :root {
        --m19le: 40px; --m2052: 32px; --m21tz: 26px;
        --mcgva: 80px 0;
    }

    .j3d8w {
        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;
    }

    .j3d8w.active {
        right: 0;
    }

    .j3d8w .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;
    }

    .j3d8w .nav-link:hover,
    .j3d8w .nav-link.active {
        color: var(--m14mn) !important;
    }

    .j3d8w .nav-link::after {
        display: none;
    }

    .xztt { display: none !important; }

    .nghnqp {
        display: flex !important;
        z-index: 10001;
        position: relative;
        pointer-events: auto !important;
        opacity: 1 !important;
        background: none !important;
        border: none !important;
    }

    .ly391 {
        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;
    }

    .ly391.active {
        opacity: 1;
        visibility: visible;
    }

    .o5st9 { font-size: var(--m19le); }
    .process-item:not(:last-child)::after { display: none; }
    .l8otoh { font-size: 36px; }
}

@media (max-width: 768px) {
    :root {
        --m19le: 34px; --m2052: 28px; --m21tz: 22px; --fs-h4: 20px;
        --mcgva: 60px 0;
    }
    .ydbv { margin-bottom: 40px; }
    .qq51ph { min-height: auto; padding: 140px 0 80px; }
    .lyk8mi { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .oysx34 .d741 { font-size: 40px; }
    .srby { text-align: center; }
}

@media (max-width: 576px) {
    :root {
        --m19le: 28px; --m2052: 24px; --m21tz: 20px;
        --mcgva: 50px 0;
    }
    .rwqw1 { padding: 24px; }
    .oysx34 { padding: 28px; }
    .jzsf9 { padding: 28px 20px; }
}

.wzc3 .dxqgh { color: #fff; }
.wzc3 .zotn { color: var(--m14mn); }
.wzc3 .dhr6m { color: rgba(255,255,255,0.55); }
.wzc3 .rez4pr a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.wzc3 .rez4pr 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(--m14mn) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
