/* === CSS Variables === */
:root {
    --bg-dark: hsl(28, 3%, 7%);
    --bg-card: hsl(28, 3%, 13%);
    --bg-card-hover: hsl(28, 3%, 19%);
    --text-primary: #ffffff;
    --text-secondary: #b4b9d1;
    --accent-primary: hsl(29, 86%, 55%);
    --accent-secondary: hsl(19, 86%, 51%);
    --accent-gold: #ffd700;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* === Layout === */
.wra-7cro3c { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* === Top Bar === */
.top-ezu0m7 {
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}
.top-ezu0m7 .wra-7cro3c { display: flex; justify-content: space-between; align-items: center; }
.top-89jmvs { display: flex; gap: 16px; }
.top-89jmvs a { color: var(--text-secondary); font-size: 13px; }
.top-89jmvs a:hover { color: var(--accent-primary); }

/* === Header === */
.hdr-ph138x {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 14, 39, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s, box-shadow 0.3s;
}
.hdr-ph138x.hdr-ar26qg {
    background: rgba(10, 14, 39, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hdr-ph138x .wra-7cro3c {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.log-ezbrv5 { display: flex; align-items: center; gap: 10px; }
.bra-uapqpu { height: 38px; width: auto; max-width: 180px; object-fit: contain; }
.bra-gnzndq { font-size: 24px; color: var(--accent-primary); }
.bra-q26nsh { font-size: 20px; font-weight: 700; color: var(--text-primary); }

.nav-yz9kci { display: flex; align-items: center; gap: 28px; }
.nav-yz9kci a { color: var(--text-secondary); font-size: 15px; font-weight: 500; }
.nav-yz9kci a:hover { color: var(--text-primary); }
.nav-eslijm {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff !important; padding: 8px 22px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14px;
}
.nav-eslijm:hover { opacity: 0.9; transform: translateY(-1px); }

/* === Language Switcher === */
.lan-r74tpk { display: flex; gap: 6px; align-items: center; }
.lan-hctjf2 {
    padding: 5px 10px; border-radius: var(--radius-sm); font-size: 13px;
    font-weight: 600; color: var(--text-secondary); background: transparent;
    border: 1px solid var(--border-color); transition: var(--transition);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.lan-hctjf2:hover { color: var(--accent-primary); border-color: var(--accent-primary); }
.lan-6r4g36 { color: var(--bg-dark) !important; background: var(--accent-primary) !important; border-color: var(--accent-primary) !important; }

.mob-u1fh3t {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative;
    flex-direction: column; align-items: center; justify-content: center;
}
.mob-u1fh3t span {
    display: block; width: 24px; height: 2px; background: var(--text-primary);
    border-radius: 2px; position: absolute; left: 8px;
    transition: transform 0.3s, opacity 0.3s;
}
.mob-u1fh3t span:nth-child(1) { top: 12px; }
.mob-u1fh3t span:nth-child(2) { top: 19px; }
.mob-u1fh3t span:nth-child(3) { top: 26px; }
.tog-33bovn span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.tog-33bovn span:nth-child(2) { opacity: 0; }
.tog-33bovn span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* === Hero: Split Layout === */
.her-p8clg8 {
    padding: 80px 0 60px;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}
.her-p8clg8::before {
    content: '';
    position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--accent-secondary) 12%, transparent) 0%, transparent 70%);
    pointer-events: none;
}
.her-x67pod {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.her-rezzis { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.her-rezzis a { color: var(--accent-primary); }
.cru-bjxb7z { margin: 0 8px; opacity: 0.5; }

.her-tpd4kn {
    font-size: 48px; font-weight: 800; line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.her-jlnuht {
    font-size: 18px; color: var(--text-secondary); line-height: 1.7;
    margin-bottom: 32px; max-width: 520px;
}
.her-v1w5cx { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.cta-vcrn9c {
    display: inline-flex; align-items: center; padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff; border-radius: var(--radius-md); font-weight: 700; font-size: 16px;
    box-shadow: 0 0 30px color-mix(in srgb, var(--accent-primary) 25%, transparent);
    transition: var(--transition);
}
.cta-vcrn9c:hover { transform: translateY(-2px); box-shadow: 0 0 40px color-mix(in srgb, var(--accent-primary) 40%, transparent); color: #fff; }
.cta-lyfawr {
    display: inline-flex; align-items: center; padding: 14px 36px;
    border: 2px solid var(--accent-primary); color: var(--accent-primary);
    border-radius: var(--radius-md); font-weight: 700; font-size: 16px;
    transition: var(--transition);
}
.cta-lyfawr:hover { background: var(--accent-primary); color: var(--bg-dark); }

.tru-c3oggl { display: flex; gap: 32px; justify-content: center; }
.tru-y5m57h { text-align: center; }
.tru-jyursw { display: block; font-size: 28px; font-weight: 800; color: var(--accent-gold); }
.tru-shmlqb { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

.her-8qfg3r {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.her-g7ovax {
    width: 100%; max-width: 540px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative; z-index: 1;
}
.her-rq5qjl {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-primary) 20%, transparent) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 0; filter: blur(40px);
}

/* === Table of Contents === */
.toc-jk1sp0 { padding: 0 0 20px; }
.toc-fib9sg {
    max-width: 820px; margin: 0 auto;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); overflow: hidden;
}
.toc-zr5vkv {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; background: none; border: none; cursor: pointer;
    color: var(--text-primary); font-size: 16px; font-weight: 700;
}
.toc-zr5vkv:hover { color: var(--accent-primary); }
.toc-yhizq5 {
    font-size: 12px; transition: transform 0.3s; color: var(--accent-primary);
}
.toc-x4f4lt .toc-yhizq5 { transform: rotate(180deg); }
.toc-2k8u2l {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 24px;
    list-style: none;
    display: flex; flex-direction: column;
}
.toc-x4f4lt .toc-2k8u2l {
    max-height: 600px; padding: 0 24px 20px;
}
.toc-2k8u2l li { display: block; }
.toc-3dgujh {
    display: block; padding: 7px 0 7px 18px; color: var(--text-secondary);
    font-size: 15px; border-bottom: 1px solid var(--border-color);
    transition: var(--transition); position: relative;
}
.toc-3dgujh::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-primary); opacity: 0.6;
}
.toc-3dgujh:last-child { border-bottom: none; }
.toc-3dgujh:hover { color: var(--accent-primary); }
.toc-3dgujh:hover::before { opacity: 1; }
.toc-53stw5 { padding-left: 34px; font-size: 14px; }
.toc-53stw5::before { width: 4px; height: 4px; left: 14px; opacity: 0.4; }

/* === Features Strip === */
.fea-wb01gg {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(26, 31, 58, 0.3);
}
.fea-ldw4x1 {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.fea-ddaec9 {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px; background: var(--bg-card); border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    opacity: 0; transform: translateY(20px);
}
.fea-ddaec9.sho-euo5h2 { opacity: 1; transform: translateY(0); }
.fea-ddaec9:hover { border-color: var(--accent-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fea-epthdz {
    flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px; color: #fff;
}
.fea-swahj0 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.fea-l2tow4 { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

/* === Article Content === */
.art-qh9o3w {
    padding: 80px 0;
}
.art-5y5no8 {
    max-width: 820px; margin: 0 auto;
    font-size: 17px; line-height: 1.8; color: var(--text-secondary);
}
.art-5y5no8 h2 {
    font-size: 30px; font-weight: 800; color: var(--text-primary);
    margin: 48px 0 20px; padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
}
.art-5y5no8 h3 {
    font-size: 22px; font-weight: 700; color: var(--text-primary);
    margin: 36px 0 14px;
}
.art-5y5no8 p { margin-bottom: 18px; }
.art-5y5no8 ul, .art-5y5no8 ol {
    margin: 16px 0 20px 24px; list-style: disc;
}
.art-5y5no8 ol { list-style: decimal; }
.art-5y5no8 li { margin-bottom: 8px; }
.art-5y5no8 a { color: var(--accent-primary); text-decoration: underline; }
.art-5y5no8 blockquote {
    border-left: 4px solid var(--accent-secondary);
    padding: 16px 24px; margin: 24px 0;
    background: var(--bg-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}
.con-1mvse6 {
    display: block; max-width: 100%; height: auto;
    margin: 32px auto; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* === Promo Section === */
.pro-1vcoa9 { padding: 0 0 80px; }
.pro-w6nkex {
    display: flex; align-items: center; justify-content: space-between;
    padding: 48px 56px;
    background: linear-gradient(135deg, var(--bg-card) 0%, color-mix(in srgb, var(--accent-secondary) 15%, transparent) 100%);
    border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    opacity: 0; transform: translateY(20px); transition: var(--transition);
}
.pro-w6nkex.sho-euo5h2 { opacity: 1; transform: translateY(0); }
.pro-ig8is5 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.pro-5sjetg { font-size: 16px; color: var(--text-secondary); }
.pro-cyib3n {
    flex-shrink: 0; padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff; border-radius: var(--radius-md); font-weight: 700; font-size: 16px;
    box-shadow: 0 0 24px color-mix(in srgb, var(--accent-primary) 20%, transparent);
    transition: var(--transition);
}
.pro-cyib3n:hover { transform: translateY(-2px); box-shadow: 0 0 36px color-mix(in srgb, var(--accent-primary) 35%, transparent); color: #fff; }

/* === FAQ === */
.faq-12du73 { padding: 80px 0; }
.blo-udzg7l {
    text-align: center; font-size: 36px; font-weight: 800;
    margin-bottom: 48px;
}
.faq-dlnqhx { max-width: 780px; margin: 0 auto; }
.faq-gjvikg {
    border: 1px solid var(--border-color); border-radius: var(--radius-md);
    margin-bottom: 12px; overflow: hidden;
    background: var(--bg-card);
    opacity: 0; transform: translateY(10px); transition: var(--transition);
}
.faq-gjvikg.sho-euo5h2 { opacity: 1; transform: translateY(0); }
.faq-138drg {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; background: none; border: none; cursor: pointer;
    color: var(--text-primary); font-size: 16px; font-weight: 600;
    text-align: left;
}
.faq-138drg:hover { color: var(--accent-primary); }
.faq-htcbh7 {
    font-size: 14px; transition: transform 0.3s; color: var(--accent-primary);
}
.faq-gdto8n .faq-htcbh7 { transform: rotate(180deg); }
.faq-eux147 {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-gdto8n .faq-eux147 {
    max-height: 400px; padding: 0 24px 20px;
}
.faq-eux147 p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* === Footer === */
.ftr-ri4e2a {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}
.ftr-itf1n2 {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
}
.ftr-ob3lvf { margin-bottom: 16px; }
.ftr-1gcmqu { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 320px; }
.ftr-u3n884 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.ftr-s5h9t6 li { margin-bottom: 10px; }
.ftr-s5h9t6 a { color: var(--text-secondary); font-size: 14px; }
.ftr-s5h9t6 a:hover { color: var(--accent-primary); }
.ftr-0x0f9u {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center; font-size: 13px; color: var(--text-secondary);
}

/* === Scroll Reveal === */
.sho-euo5h2 { opacity: 1 !important; transform: translateY(0) !important; }

/* === Responsive === */
@media (max-width: 1024px) {
    .her-x67pod { grid-template-columns: 1fr; gap: 40px; }
    .her-tpd4kn { font-size: 38px; }
    .her-8qfg3r { justify-content: center; }
    .her-g7ovax { max-width: 420px; }
    .fea-ldw4x1 { grid-template-columns: repeat(2, 1fr); }
    .ftr-itf1n2 { grid-template-columns: 1fr 1fr; }
    .pro-w6nkex { flex-direction: column; text-align: center; gap: 24px; padding: 36px; }
}

@media (max-width: 768px) {
    .top-ezu0m7 { display: none; }

    .nav-yz9kci {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10, 14, 39, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s;
        z-index: 99;
    }
    .nav-yz9kci.men-0jonvz { opacity: 1; pointer-events: all; }
    .nav-yz9kci a { font-size: 20px; color: var(--text-primary); }
    .mob-u1fh3t { display: flex; z-index: 101; }

    .her-p8clg8 { padding: 50px 0 40px; }
    .her-tjt7wu { text-align: center; }
    .her-tpd4kn { font-size: 30px; }
    .her-v1w5cx { flex-direction: column; align-items: center; }
    .cta-vcrn9c, .cta-lyfawr { text-align: center; justify-content: center; width: 100%; max-width: 320px; }
    .tru-c3oggl { gap: 20px; justify-content: center; }
    .tru-jyursw { font-size: 22px; }

    .fea-ldw4x1 { grid-template-columns: 1fr; }
    .fea-ddaec9 { padding: 20px; }

    .art-5y5no8 { font-size: 16px; }
    .art-5y5no8 h2 { font-size: 24px; }

    .blo-udzg7l { font-size: 28px; }

    .ftr-itf1n2 { grid-template-columns: 1fr; gap: 32px; }
}
