/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    background: #0b0b10;
    color: #e8e6f0;
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: #f5a623; text-decoration: none; transition: color .25s; }
a:hover { color: #ffd580; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; }

/* Palette */
:root {
    --bg-primary: #0b0b10;
    --bg-sidebar: #111120;
    --bg-card: #16162a;
    --bg-card-hover: #1e1e3a;
    --accent: #f5a623;
    --accent-dark: #d38e00;
    --accent-light: #ffd580;
    --gold: #daa520;
    --text: #e8e6f0;
    --text-muted: #9896a8;
    --border: #2a2a44;
    --gradient-cta: linear-gradient(135deg, #f5a623 0%, #d38e00 100%);
    --gradient-hero: linear-gradient(135deg, #0b0b10 0%, #1a1a35 100%);
    --shadow-card: 0 4px 24px rgba(0,0,0,.45);
    --shadow-glow: 0 0 30px rgba(245,166,35,.15);
    --radius: 12px;
    --radius-sm: 8px;
    --sidebar-width: 260px;
    --header-height: 64px;
}

/* Typography */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    padding-left: 18px;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 28px;
    background: var(--gradient-cta);
    border-radius: 3px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 700px;
}

/* Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-sidebar);
    border-right: 1px solid var(--border);
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform .3s ease;
}
.sidebar-logo {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-logo img {
    max-width: 170px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.sidebar-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sidebar-nav { padding: 16px 0; flex: 1; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    color: var(--text-muted);
    font-size: .95rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all .25s;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: #fff;
    background: rgba(245,166,35,.06);
    border-left-color: var(--accent);
}
.sidebar-nav a i { font-size: 1.15rem; width: 22px; text-align: center; }
.sidebar-nav .nav-label {
    display: block;
    padding: 20px 24px 8px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}
.sidebar-cta {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.sidebar-cta .btn-cta {
    width: 100%;
    padding: 12px;
    background: var(--gradient-cta);
    border: none;
    border-radius: var(--radius-sm);
    color: #0b0b10;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    text-align: center;
    display: block;
    transition: transform .2s, box-shadow .2s;
}
.sidebar-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Main */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-width: 0;
}

/* Header */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 90;
    height: var(--header-height);
    background: rgba(11,11,16,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}
.top-bar .burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar-right .btn-outline {
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-weight: 600;
    font-size: .875rem;
    background: transparent;
    cursor: pointer;
    transition: all .25s;
}
.top-bar-right .btn-outline:hover {
    background: var(--accent);
    color: #0b0b10;
}
.top-bar-right .btn-filled {
    padding: 8px 20px;
    background: var(--gradient-cta);
    border: none;
    border-radius: var(--radius-sm);
    color: #0b0b10;
    font-weight: 700;
    font-size: .875rem;
    cursor: pointer;
    transition: transform .2s;
}
.top-bar-right .btn-filled:hover { transform: translateY(-1px); }

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.55);
}
.hero-slide-content {
    position: relative;
    z-index: 3;
    padding: 40px 48px;
    max-width: 640px;
}
.hero-slide-content .badge {
    display: inline-block;
    background: var(--accent);
    color: #0b0b10;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.hero-slide-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-slide-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px;
}
.hero-slide-content .btn-slide {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gradient-cta);
    color: #0b0b10;
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    transition: transform .2s, box-shadow .2s;
}
.hero-slide-content .btn-slide:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}
.slider-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}
.slider-arrows {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    transform: translateY(-50%);
    pointer-events: none;
}
.slider-arrows button {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(11,11,16,.6);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrows button:hover {
    background: var(--accent);
    color: #0b0b10;
    border-color: var(--accent);
}

/* Features Banner */
.features-banner {
    padding: 24px 0 8px;
}
.features-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Section Banner */
.section-banner {
    display: block;
    margin-bottom: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.section-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.section-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Content */
.content-area { padding: 0 32px 60px; }
.section-block {
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}
.section-block:last-child { border-bottom: none; }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(245,166,35,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.card p { font-size: .92rem; color: var(--text-muted); }

/* Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: .92rem;
}
.info-table th,
.info-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.info-table th {
    background: var(--bg-card);
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
}
.info-table td { color: var(--text); }
.info-table tr:hover td { background: rgba(245,166,35,.03); }
.info-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Features */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: border-color .25s;
}
.feature-item:hover { border-color: var(--accent); }
.feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.feature-item span { font-size: .92rem; }

/* Simulator */
.simulator-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.sim-inputs { display: flex; flex-direction: column; gap: 16px; }
.sim-field {
    display: flex;
    align-items: center;
    gap: 12px;
}
.sim-field label {
    min-width: 110px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
}
.sim-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color .25s;
}
.sim-input:focus { border-color: var(--accent); }
.sim-rate {
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 52px;
    text-align: right;
}
.sim-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.sim-result-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    text-align: center;
    transition: border-color .25s;
}
.sim-result-card.highlight {
    border-color: var(--accent);
    background: rgba(245,166,35,.06);
}
.sim-label {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.sim-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.sim-result-card.highlight .sim-value { color: var(--accent); }

@media (max-width: 768px) {
    .simulator-box { grid-template-columns: 1fr; gap: 24px; }
    .sim-field { flex-wrap: wrap; }
    .sim-field label { min-width: 100%; }
}

/* Trust Score */
.trust-score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.trust-item { padding: 4px 0; }
.trust-bar-wrap { display: flex; flex-direction: column; gap: 6px; }
.trust-label {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    justify-content: space-between;
}
.trust-bar {
    width: 100%;
    height: 10px;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.trust-fill {
    height: 100%;
    background: var(--gradient-cta);
    border-radius: 10px;
    position: relative;
    transition: width 1.2s ease;
}
.trust-fill::after {
    content: attr(data-score) '/10';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .65rem;
    font-weight: 700;
    color: #0b0b10;
    white-space: nowrap;
}
.trust-overall {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 32px;
    padding: 28px 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
}
.trust-overall-score {
    text-align: center;
    flex-shrink: 0;
}
.trust-big-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    display: block;
}
.trust-big-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}
.trust-overall-text h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
}
.trust-overall-text p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .trust-score-grid { grid-template-columns: 1fr; }
    .trust-overall { flex-direction: column; text-align: center; }
    .trust-big-num { font-size: 2.8rem; }
}

/* FAQ */
.faq-list { margin-top: 20px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    padding: 16px 20px;
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .25s;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question i { transition: transform .3s; color: var(--accent); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 16px 20px;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}
.stat-box {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .25s, transform .25s;
}
.stat-box:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.stat-box .stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}
.stat-box .stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
.pros-col, .cons-col {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
}
.pros-col h3, .cons-col h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pros-col h3 { color: #34c759; }
.cons-col h3 { color: #ff6b6b; }
.pros-col li, .cons-col li {
    padding: 6px 0;
    font-size: .92rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}
.pros-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34c759;
    font-weight: 700;
}
.cons-col li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
    counter-reset: step;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    counter-increment: step;
    transition: transform .25s, border-color .25s;
}
.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.step-card::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-cta);
    color: #0b0b10;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50%;
    margin: 0 auto 16px;
}
.step-card h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}
.step-card p { font-size: .88rem; color: var(--text-muted); }

/* Rating */
.rating-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }

/* Footer */
.site-footer {
    background: var(--bg-sidebar);
    border-top: 1px solid var(--border);
    padding: 40px 32px;
    margin-left: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col h4 {
    color: var(--accent);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: .88rem;
    padding: 4px 0;
    transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: #fff; padding-left: 6px; }
.footer-bottom {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: .82rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.footer-bottom p { margin-bottom: 6px; }
.footer-payments {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.footer-payments i { font-size: 1.8rem; color: var(--text-muted); }

/* Mobile overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 99;
}
.sidebar-overlay.active { display: block; }

/* CTA */
.cta-banner {
    background: var(--gradient-cta);
    border-radius: var(--radius);
    padding: 40px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}
.cta-banner h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0b0b10;
}
.cta-banner p { color: rgba(11,11,16,.75); font-size: .95rem; margin-top: 4px; }
.cta-banner .btn-dark {
    display: inline-block;
    padding: 14px 32px;
    background: #0b0b10;
    color: var(--accent);
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: .95rem;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
}
.cta-banner .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

/* Comparison */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: .9rem;
}
.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.comparison-table th {
    background: var(--bg-card);
    color: var(--accent);
    font-weight: 600;
}
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; }
.comparison-table .highlight-col {
    background: rgba(245,166,35,.06);
}
.comparison-table tr:hover td { background: rgba(245,166,35,.03); }

/* Two columns */
.two-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 20px;
}
.two-col-text p { font-size: .95rem; color: var(--text-muted); }

/* Section text */
.section-text {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 900px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    :root { --sidebar-width: 220px; }
    .hero-slide-content h2 { font-size: 1.8rem; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .top-bar .burger { display: block; }
    .top-bar { padding: 0 16px; }
    .content-area { padding: 0 16px 40px; }
    .hero-slider { height: 340px; }
    .hero-slide-content { padding: 24px; }
    .hero-slide-content h2 { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .features-list { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .two-col-text { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .cta-banner { flex-direction: column; text-align: center; }
    .site-footer { padding: 32px 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-slider { height: 280px; }
    .hero-slide-content h2 { font-size: 1.25rem; }
    .hero-slide-content p { font-size: .9rem; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-box .stat-num { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .top-bar-right .btn-outline { display: none; }
}