

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f0f0f0;
    --bg-card: #ffffff;
    --bg-card-hover: #fffbe6;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-muted: #777777;
    --footer-dark-bg: #000000;
    --border-color: #000000;
    --border-light: #333333;

    --y1471: #ff5722;
    --y15f6: #ffeb3b;
    --y16w: linear-gradient(135deg, var(--y1471), var(--y15f6));
    --accent-glow: 4px 4px 0 var(--y1471);

    --y3q1: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --y5xh: 'Inter', system-ui, sans-serif;

    --y19ay: 64px;
    --y20tg: 48px;
    --y21hq: 32px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --y172k: 16px;
    --fs-small: 14px;

    --y18vk: 900;
    --fw-semibold: 700;
    --fw-medium: 600;
    --fw-regular: 400;
    --fw-light: 400;

    --y67e: 0px;
    --y7l7: 0px;
    --y8k2: 0px;
    --y9h8: 0px;
    --y4lt: 0px;

    --transition: all 0.15s ease;
    --transition-slow: all 0.3s ease;

    --y1049: 3px 3px 0 #000;
    --y11zb: 5px 5px 0 #000;
    --y12f6: 8px 8px 0 #000;
    --y139r: 12px 12px 0 #000;

    --a3xng6: 80px 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(--y5xh);
    font-size: var(--y172k);
    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(--y1471);
    transition: var(--transition);
    font-weight: var(--fw-medium);
}

a:hover {
    color: var(--text-primary);
    text-decoration: underline 3px wavy var(--y1471);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

::selection {
    background: var(--y1471);
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--y3q1);
    font-weight: var(--y18vk);
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1 { font-size: var(--y19ay); }
h2 { font-size: var(--y20tg); }
h3 { font-size: var(--y21hq); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--y16w);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent { color: var(--y1471); }
.text-accent-2 { color: var(--y15f6); }
.text-dark { color: var(--text-primary); }
.hhz1f { color: var(--text-muted); }

.a3xng6 { padding: var(--a3xng6); position: relative; }
.a3xng6-sm { padding: 50px 0; }
.a3xng6-lg { padding: 120px 0; }
.a3xng6 > .container { position: relative; z-index: 1; }

.kmwiiw { background-color: var(--bg-primary); }
.nlmm { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }
.bg-gradient-custom { background: var(--y16w); }
.bg-gradient-custom {
    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(.qke3r) { color: #fff; }
.bg-gradient-custom .enuzrv { color: #fff; }
.bg-gradient-custom .ps330 { color: rgba(255,255,255,0.7); }

.nr5u {
    background-color: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
}
.nr5u h1, .nr5u h2, .nr5u h3,
.nr5u h4, .nr5u h5, .nr5u h6 { color: #fff; }
.nr5u p, .nr5u li, .nr5u span:not(.badge) { color: rgba(255,255,255,0.8); }
.nr5u a:not(.qke3r) { color: rgba(255,255,255,0.85); }
.nr5u a:not(.qke3r):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; }

.n0eyw {
    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.3s ease, visibility 0.3s ease;
}
.n0eyw.loaded { opacity: 0; visibility: hidden; }
.kk6tt { display: flex; gap: 8px; }
.uxky {
    width: 16px; height: 16px;
    background: var(--text-primary);
    animation: n0eywBounce 1.4s ease-in-out infinite both;
}
.uxky:nth-child(1) { animation-delay: -0.32s; }
.uxky:nth-child(2) { animation-delay: -0.16s; background: var(--y1471); }
.uxky:nth-child(3) { animation-delay: 0; }

@keyframes n0eywBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.qke3r {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: var(--y172k);
    font-weight: var(--y18vk);
    border-radius: 0;
    transition: var(--transition);
    border: 3px solid var(--text-primary);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.rb28zt {
    background: var(--y1471);
    color: #fff;
    box-shadow: var(--y11zb);
    border-color: var(--text-primary);
}

.rb28zt:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
    color: #fff;
}

.hkgn {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--y1049);
}

.hkgn:hover {
    background: var(--y15f6);
    color: var(--text-primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000;
}

.btn-link-custom {
    background: none;
    border: none;
    color: var(--y1471);
    padding: 0;
    font-weight: var(--y18vk);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-link-custom:hover { color: var(--text-primary); }
.btn-link-custom i { transition: transform 0.2s ease; }
.btn-link-custom:hover i { transform: translateX(6px); }

.pj3xr {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.pj3xr.scrolled {
    background: var(--bg-primary);
    border-bottom: 3px solid var(--text-primary);
    padding: 10px 0;
}

.jtku3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avlyue {
    font-size: 28px;
    font-weight: var(--y18vk);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}
.avlyue:hover { color: var(--text-primary); }

.qn1bt { display: flex; align-items: center; gap: 28px; }

.qn1bt .nav-link {
    color: var(--text-primary);
    font-size: var(--fs-small);
    font-weight: var(--y18vk);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qn1bt .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 3px;
    background: var(--y1471);
    transition: width 0.2s ease;
}

.qn1bt .nav-link:hover,
.qn1bt .nav-link.active { color: var(--y1471); }
.qn1bt .nav-link:hover::after,
.qn1bt .nav-link.active::after { width: 100%; }

.grz3m2 { margin-left: 16px; }

.ds5h, .zxiazv { display: flex; align-items: center; gap: 28px; }
.ds5h .nav-link, .zxiazv .nav-link {
    color: var(--text-secondary); font-size: var(--fs-small);
    font-weight: var(--y18vk); padding: 8px 0; text-transform: uppercase;
}
.ds5h .nav-link:hover, .zxiazv .nav-link:hover { color: var(--y1471); }
.ds5h ~ .qn1bt { display: none; }

.bumyn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 3px solid var(--text-primary);
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.bumyn .zxc4 {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.bumyn.active .zxc4:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bumyn.active .zxc4:nth-child(2) { opacity: 0; }
.bumyn.active .zxc4:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.dl24 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bg-secondary);
    border-bottom: 4px solid var(--text-primary);
}

.dl24 .hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.dl24 .hhpwf {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 50%, var(--bg-secondary) 100%);
}

.eornh5 { position: relative; z-index: 2; }

.u7sf6n {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--y18vk);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: var(--y15f6);
    border: 2px solid var(--text-primary);
    box-shadow: var(--y1049);
}

.g0cq {
    font-size: var(--y19ay);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -2px;
}

.natjj {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: var(--fw-medium);
}

.msjgo { display: flex; gap: 16px; flex-wrap: wrap; }

.vxtj { position: relative; z-index: 2; }
.vxtj img {
    border: 4px solid var(--text-primary);
    box-shadow: var(--y139r);
}

.v2cqcd { margin-bottom: 60px; }

.m2xpqg {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--y18vk);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: var(--y15f6);
    border: 2px solid var(--text-primary);
}

.tvo7pd {
    font-size: var(--y20tg);
    font-weight: var(--y18vk);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ufydp {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
}
.v2cqcd.text-center .ufydp {
    margin-left: auto;
    margin-right: auto;
}

.f0nm {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--y11zb);
}

.f0nm:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
    background: var(--bg-card-hover);
}

.f0nm .xtv1j1 {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y1471);
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: 3px 3px 0 #000;
}

.f0nm:hover .xtv1j1 {
    background: var(--y15f6);
    color: var(--text-primary);
}

.f0nm .o9aqwt {
    font-size: var(--fs-h5);
    font-weight: var(--y18vk);
    margin-bottom: 10px;
    color: var(--text-primary);
}

.f0nm .ugux {
    color: var(--text-secondary);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.f0nm-horizontal {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--y1049);
}
.f0nm-horizontal:hover {
    box-shadow: var(--y11zb);
    transform: translate(-2px, -2px);
}
.f0nm-horizontal .xtv1j1 {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y1471);
    color: #fff;
    font-size: 22px;
    border: 2px solid var(--text-primary);
}

.about-section .about-image {
    position: relative;
    overflow: hidden;
    border: 4px solid var(--text-primary);
    box-shadow: var(--y12f6);
}
.about-section .about-image img { width: 100%; }
.about-section .about-image .experience-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--y15f6);
    color: var(--text-primary);
    padding: 16px 20px;
    text-align: center;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y1049);
}
.experience-badge .badge-number {
    display: block;
    font-size: 36px;
    font-weight: var(--y18vk);
    line-height: 1;
}
.experience-badge .badge-text { font-size: var(--fs-small); }

.about-list { margin-top: 20px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 2px dashed var(--border-color);
}
.about-list li:last-child { border-bottom: none; }
.about-list li i { color: var(--y1471); font-size: 16px; }

.mu2u {
    background: var(--text-primary);
    color: #fff;
    border-top: 4px solid var(--y1471);
    border-bottom: 4px solid var(--y1471);
}
.counter-item { text-align: center; padding: 20px; }
.enuzrv {
    font-size: 56px;
    font-weight: var(--y18vk);
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.enuzrv .counter-suffix { color: var(--y1471); }
.ps330 {
    font-size: var(--fs-small);
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.haxt {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--y11zb);
}
.haxt:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.haxt .bpc8v0 {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-bottom: 3px solid var(--text-primary);
}
.haxt .bpc8v0 img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}
.haxt:hover .bpc8v0 img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.haxt .bpc8v0 .card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--y15f6);
    color: var(--text-primary);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: var(--y18vk);
    text-transform: uppercase;
    border: 2px solid var(--text-primary);
}
.haxt .card-body { padding: 24px; }
.haxt .card-title {
    font-size: var(--fs-h5);
    font-weight: var(--y18vk);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.haxt .card-title a { color: var(--text-primary); }
.haxt .card-title a:hover { color: var(--y1471); }
.haxt .card-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.haxt .card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px dashed var(--text-primary);
}
.haxt .card-price {
    font-size: var(--fs-h5);
    font-weight: var(--y18vk);
    color: var(--y1471);
}

.oh66m { text-align: center; transition: var(--transition); }
.oh66m:hover { transform: translate(-3px, -3px); }
.oh66m .cn38ht {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y11zb);
}
.oh66m .cn38ht img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.3s ease, transform 0.4s ease;
}
.oh66m:hover .cn38ht img { filter: grayscale(0%); transform: scale(1.03); }
.oh66m .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.8) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}
.oh66m:hover .team-social { bottom: 0; }
.team-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y1471);
    color: #fff;
    font-size: 14px;
    border: 2px solid #fff;
    transition: var(--transition);
}
.team-social a:hover { background: var(--y15f6); color: var(--text-primary); }
.oh66m .cp0o {
    font-size: var(--fs-h5);
    font-weight: var(--y18vk);
    margin-bottom: 4px;
    color: var(--text-primary);
}
.oh66m .tjxv {
    font-size: var(--fs-small);
    color: var(--y1471);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jjjbs {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--y11zb);
    position: relative;
}
.jjjbs:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.jjjbs::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--y1471);
}
.jjjbs .quote-icon {
    font-size: 36px;
    color: var(--y1471);
    margin-bottom: 16px;
}
.jjjbs .b096uw {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: var(--fw-medium);
    border-left: none;
}
.jjjbs .author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.jjjbs .p8homh {
    width: 56px; height: 56px;
    object-fit: cover;
    border: 3px solid var(--text-primary);
}
.jjjbs .ee2ch {
    font-size: var(--y172k);
    font-weight: var(--y18vk);
    color: var(--text-primary);
    margin-bottom: 2px;
}
.jjjbs .sw2ea {
    font-size: var(--fs-small);
    color: var(--text-muted);
}
.jjjbs .stars {
    color: var(--y1471);
    margin-bottom: 14px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y11zb);
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(30%);
}
.portfolio-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.portfolio-item .portfolio-overlay { color: #fff;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .portfolio-cat {
    font-size: 12px;
    color: var(--y15f6);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: var(--y18vk);
    margin-bottom: 6px;
}
.portfolio-overlay .portfolio-title {
    font-size: var(--fs-h5);
    color: #fff;
    margin-bottom: 0;
}
.portfolio-overlay .serial-badge { color: rgba(255,255,255,0.85); -webkit-text-stroke: 0; font-size: inherit; opacity: 1; position: static; background: rgba(255,255,255,0.15); border-radius: 6px; display: inline-block; padding: 4px 12px; }

.faq-section .accordion-item {
    background: var(--bg-card);
    border: 3px solid var(--text-primary) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--y1049);
}
.faq-section .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: var(--y18vk);
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.faq-section .accordion-button:not(.collapsed) {
    background: var(--y15f6);
    color: var(--text-primary);
}
.faq-section .accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.e4kd {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--y11zb);
}
.e4kd.featured {
    background: var(--y15f6);
    border-color: var(--text-primary);
    box-shadow: var(--y12f6);
}
.e4kd.featured::before {
    content: '★ BEST';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--y1471);
    color: #fff;
    padding: 4px 20px;
    font-size: 12px;
    font-weight: var(--y18vk);
    letter-spacing: 2px;
    border: 2px solid var(--text-primary);
    border-top: none;
}
.e4kd:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0 #000;
}
.e4kd .ybqcwd {
    font-size: var(--fs-h5);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    font-weight: var(--y18vk);
}
.e4kd .sagos {
    font-size: 60px;
    font-weight: var(--y18vk);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}
.e4kd .sagos .currency {
    font-size: 28px;
    vertical-align: top;
    color: var(--y1471);
}
.e4kd .plan-period {
    font-size: var(--fs-small);
    color: var(--text-muted);
    margin-bottom: 28px;
}
.e4kd .rkui {
    text-align: left;
    margin-bottom: 28px;
}
.e4kd .rkui li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 2px dashed var(--text-primary);
    color: var(--text-secondary);
    font-size: var(--fs-small);
}
.e4kd .rkui li:last-child { border-bottom: none; }
.e4kd .rkui li i { color: var(--y1471); }
.e4kd .rkui li.disabled {
    opacity: 0.35;
    text-decoration: line-through;
}

.fngev {
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--y11zb);
}
.fngev:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #000;
}
.fngev .bpc8v0 { height: 200px; overflow: hidden; border-bottom: 3px solid var(--text-primary); }
.fngev .bpc8v0 img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.fngev:hover .bpc8v0 img { transform: scale(1.05); }
.fngev .card-body { padding: 24px; }
.fngev .vzxn6 {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fngev .vzxn6 i { margin-right: 4px; color: var(--y1471); }
.fngev .card-title {
    font-size: 18px;
    font-weight: var(--y18vk);
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--text-primary);
}
.fngev .card-title a { color: var(--text-primary); }
.fngev .card-title a:hover { color: var(--y1471); }

.a51ac {
    background: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-top: 6px solid var(--y1471);
    border-bottom: 6px solid var(--y1471);
}
.a51ac .cta-content { position: relative; z-index: 2; }
.a51ac .y2rp { font-size: var(--y20tg); color: #fff; }
.a51ac .oph3k0 { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; }
.a51ac p, .a51ac li { color: rgba(255,255,255,0.7); }
.a51ac .qke3r {
    background: var(--y1471);
    color: #fff;
    border-color: #fff;
}
.a51ac .qke3r:hover {
    background: var(--y15f6);
    color: var(--text-primary);
    transform: translate(-3px, -3px);
}
.a51ac .cta-shape { display: none; }

.newsletter-form {
    display: flex; gap: 0; max-width: 500px;
}
.newsletter-form input {
    flex: 1;
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--y172k);
    font-weight: var(--fw-medium);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; border-color: var(--y1471); }

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.process-item .nyfl0d {
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y1471);
    color: #fff;
    font-size: 28px;
    font-weight: var(--y18vk);
    margin: 0 auto 20px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--y1049);
}
.process-item .vj6l {
    font-size: var(--fs-h5);
    font-weight: var(--y18vk);
    margin-bottom: 10px;
    color: var(--text-primary);
}
.process-item .step-text {
    font-size: var(--fs-small);
    color: var(--text-secondary);
}
.process-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 28px; right: -18px;
    font-size: 28px;
    font-weight: var(--y18vk);
    color: var(--y1471);
}

.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(--y18vk);
    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%); }
}

.gdi2 {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    border-top: 6px solid var(--y1471);
}
.gdi2 h1, .gdi2 h2, .gdi2 h3,
.gdi2 h4, .gdi2 h5 { color: #fff; }

.pfvyg .i543j {
    font-size: 18px;
    font-weight: var(--y18vk);
    color: #fff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 12px;
}
.pfvyg .i543j::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--y1471);
}
.pfvyg p { color: rgba(255,255,255,0.6); font-size: var(--fs-small); }
.ldkao a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-small);
    transition: var(--transition);
}
.ldkao a:hover {
    color: var(--y1471);
    text-decoration: none;
    padding-left: 8px;
}
.ldkao 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(--y1471); margin-top: 4px; }
.mb83oa { display: flex; gap: 8px; margin-top: 20px; }
.mb83oa a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--y1471);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    transition: var(--transition);
}
.mb83oa a:hover {
    background: var(--y15f6);
    color: var(--text-primary);
}
.q85hy {
    border-top: 2px dashed rgba(255,255,255,0.15);
    padding: 24px 0;
    margin-top: 60px;
}
.q85hy 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(--y1471); }

.policy-content h1 { font-size: var(--y20tg); 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(--y1471); text-decoration: underline; }
.policy-content strong { color: var(--text-primary); }

.l22ofy {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--y1471);
    color: #fff;
    border: 3px solid var(--text-primary);
    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(--y1049);
}
.l22ofy.visible { opacity: 1; visibility: visible; }
.l22ofy:hover { transform: translate(-3px, -3px); box-shadow: var(--y11zb); }

.v05c .form-control {
    background: var(--bg-primary);
    border: 3px solid var(--text-primary);
    padding: 14px 20px;
    color: var(--text-primary);
    font-size: var(--y172k);
}
.v05c .form-control:focus {
    border-color: var(--y1471);
    box-shadow: 4px 4px 0 var(--y1471);
    background: var(--bg-primary);
    color: var(--text-primary);
}
.v05c .form-control::placeholder { color: var(--text-muted); }
.v05c textarea.form-control { min-height: 150px; resize: vertical; }

.swiper-pagination-bullet { background: var(--text-primary); opacity: 0.3; width: 12px; height: 12px; }
.swiper-pagination-bullet-active { background: var(--y1471); opacity: 1; width: 12px; }
.swiper-button-prev,
.swiper-button-next {
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 3px solid var(--text-primary);
    color: var(--text-primary);
    box-shadow: var(--y1049);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 16px; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--y1471);
    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(-10px); }
}
.float-anim { animation: floatUpDown 2.5s ease-in-out infinite; }

@media (max-width: 1200px) { :root { --y19ay: 52px; --y20tg: 40px; } }

@media (max-width: 992px) {
    :root { --y19ay: 42px; --y20tg: 34px; --y21hq: 26px; --a3xng6: 70px 0; }
    .qn1bt {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--bg-primary);
        border-left: 3px solid var(--text-primary);
        padding: 90px 32px 40px;
        gap: 0;
        z-index: 10000;
        transition: right 0.25s ease;
        overflow-y: auto;
    }
    .qn1bt.active { right: 0; }
    .qn1bt .nav-link {
        display: block !important;
        font-size: 18px !important; padding: 14px 0 !important;
        border-bottom: 2px solid var(--text-primary); width: 100%;
        color: var(--text-primary) !important;
        opacity: 1 !important; visibility: visible !important; pointer-events: auto !important;
    }
    .qn1bt .nav-link:hover, .qn1bt .nav-link.active { color: var(--y1471) !important; }
    .qn1bt .nav-link::after { display: none; }
    .grz3m2 { display: none !important; }
    .bumyn {
        display: flex !important; z-index: 10001; position: relative;
        pointer-events: auto !important; opacity: 1 !important;
        background: none !important; border: none !important;
    }
    .rrj88 {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9999;
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .rrj88.active { opacity: 1; visibility: visible; }
    .g0cq { font-size: var(--y19ay); }
    .process-item:not(:last-child)::after { display: none; }
    .enuzrv { font-size: 40px; }
}

@media (max-width: 768px) {
    :root { --y19ay: 36px; --y20tg: 28px; --y21hq: 22px; --fs-h4: 20px; --a3xng6: 60px 0; }
    .v2cqcd { margin-bottom: 40px; }
    .dl24 { min-height: auto; padding: 140px 0 80px; }
    .msjgo { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; }
    .e4kd .sagos { font-size: 44px; }
    .q85hy { text-align: center; }
}

@media (max-width: 576px) {
    :root { --y19ay: 30px; --y20tg: 24px; --y21hq: 20px; --a3xng6: 50px 0; }
    .jjjbs { padding: 24px; }
    .e4kd { padding: 24px; }
    .f0nm { padding: 24px 18px; }
}

.nr5u .u7sf6n { color: #fff; }
.nr5u .m2xpqg { color: var(--y1471); }
.nr5u .hhz1f { color: rgba(255,255,255,0.55); }
.nr5u .ldkao a { color: rgba(255,255,255,0.65); transition: color 0.3s; }
.nr5u .ldkao 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(--y1471) !important; }
.border-force-light { border-color: rgba(255,255,255,0.3) !important; }
.bg-force-transparent { background: none !important; }
