/* =========================================
   VARIABLES & GLOBALS
========================================= */
:root {
    --bg-color: #1a1a2e;
    --text-color: #e8e8f0;
    --text-muted: #9ba1b0;
    --primary: #6d4aff;
    --primary-hover: #8b5cf6;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --transition: 0.3s ease;
    --glow: 0 0 20px rgba(109, 74, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   TYPOGRAPHY & UTILITIES
========================================= */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.visibility-hidden {
    visibility: hidden;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--card-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: rgba(109, 74, 255, 0.1);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.hover-glow:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

/* =========================================
   HEADER & PROGRESS BAR
========================================= */
#read-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.header-cta {
    background: var(--primary);
    padding: 8px 16px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--primary-hover);
    box-shadow: var(--glow);
}

@media (max-width: 768px) {
    .nav-links, .header-cta {
        display: none;
    }
}

/* =========================================
   ANIMATIONS (Scroll Reveal)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =========================================
   BLOCK 1: HERO
========================================= */
.hero {
    padding: 160px 0 100px;
    position: relative;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(109, 74, 255, 0.15) 0%, rgba(26, 26, 46, 0) 60%);
    background-size: cover;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    margin-bottom: 40px;
}

.platforms-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.platform-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 80px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }
    .platforms-row { flex-wrap: wrap; gap: 15px; }
}

/* =========================================
   BLOCK 2: FEATURES
========================================= */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(109, 74, 255, 0.3);
    background: rgba(109, 74, 255, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   BLOCK 2.5: COUNTERS
========================================= */
.counters-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 30px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1;
}

.counter-label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.1rem;
}

/* =========================================
   BLOCK 3: STEPS
========================================= */
.steps-section {
    padding: 100px 0;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--card-border);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 18%;
}

.step-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.step:hover .step-marker {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--glow);
}

.step-content {
    font-size: 0.95rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .stepper {
        flex-direction: column;
        gap: 30px;
    }
    .stepper::before {
        top: 0;
        bottom: 0;
        left: 24px;
        width: 2px;
        height: auto;
    }
    .step {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    .step-marker {
        margin: 0;
        flex-shrink: 0;
    }
}

/* =========================================
   BLOCK 4: SECONDARY CTA
========================================= */
.secondary-cta {
    padding: 40px 0 80px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(109, 74, 255, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content p {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* =========================================
   BLOCK 5: PRICING
========================================= */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: rgba(109, 74, 255, 0.5);
    transform: translateY(-5px);
}

.pricing-card.popular {
    background: rgba(109, 74, 255, 0.05);
    border-color: var(--primary);
    transform: scale(1.05);
    padding: 50px 30px;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-card.popular .pricing-header h3 {
    color: var(--primary);
    font-size: 1.4rem;
}

.plan-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: normal;
}

.pricing-price {
    margin: 20px 0 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.period {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.pricing-total {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.pricing-savings {
    font-size: 0.9rem;
    height: 48px; /* Fixed height to align cards perfectly */
}

.old-price {
    text-decoration: line-through;
    color: #ff6b6b;
}

.savings-percent {
    color: #51cf66;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 12px;
    color: var(--text-color);
}

.pricing-card .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
        padding: 40px 30px;
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* =========================================
   BLOCK 5.5: CALCULATOR
========================================= */
.calculator-section {
    padding: 60px 0;
}

.calc-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calc-question {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.calc-periods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.calc-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-color);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.calc-btn:hover {
    border-color: var(--primary);
}

.calc-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--glow);
}

.calc-results {
    text-align: left;
    margin-bottom: 30px;
}

.calc-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.calc-row > span:first-child {
    width: 200px;
    color: var(--text-muted);
}

.bar-container {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    height: 12px;
    border-radius: 6px;
    margin: 0 15px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease;
}

.bar-base {
    background: #ff6b6b;
    width: 100%;
}

.bar-plan {
    background: var(--primary);
    width: 100%;
}

.calc-val {
    width: 80px;
    text-align: right;
    font-weight: 700;
}

.calc-savings-box {
    background: rgba(81, 207, 102, 0.1);
    color: #51cf66;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .calc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .bar-container {
        width: 100%;
        margin: 0;
    }
    .calc-val {
        width: auto;
    }
}

/* =========================================
   BLOCK 6: PLATFORMS
========================================= */
.platforms {
    padding: 80px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: rgba(109, 74, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.platform-card:hover .platform-logo {
    text-shadow: var(--glow);
    transform: scale(1.1);
}

.platform-logo {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: var(--transition);
}

.platform-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 48px;
}

/* =========================================
   BLOCK 6.5: SERVER MAP (ACCORDION)
========================================= */
.server-map {
    padding: 60px 0;
}

.map-box {
    max-width: 800px;
    margin: 0 auto;
}

.map-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.region-stats {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: normal;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-content p {
    padding: 20px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid var(--card-border);
}

@media (max-width: 768px) {
    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* =========================================
   BLOCK 7: POLL
========================================= */
.poll-section {
    padding: 80px 0;
}

.poll-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
}

.poll-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.poll-options {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-color);
    padding: 16px 20px;
    border-radius: 10px;
    text-align: left;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.poll-btn:hover {
    border-color: var(--primary);
    background: rgba(109, 74, 255, 0.05);
}

.poll-btn.active {
    background: rgba(109, 74, 255, 0.1);
    border-color: var(--primary);
    border-left: 4px solid var(--primary);
}

.poll-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.poll-result {
    display: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    animation: fadeIn 0.4s ease;
}

.poll-result.active {
    display: block;
}

.poll-result h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.poll-result p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .poll-container {
        flex-direction: column;
    }
}

/* =========================================
   BLOCK 8: COMPARISON
========================================= */
.comparison {
    padding: 80px 0;
}

.table-container {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    margin: 0 auto;
}

.compare-table th, .compare-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.compare-table th {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.compare-table td {
    font-size: 1.05rem;
}

.highlight-col {
    background: rgba(109, 74, 255, 0.08);
    color: #fff;
    font-weight: 600;
}

.compare-table th.highlight-col {
    color: var(--primary);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* =========================================
   BLOCK 9: REVIEWS
========================================= */
.reviews {
    padding: 80px 0;
}

.reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.reviews-grid::-webkit-scrollbar {
    height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: rgba(109, 74, 255, 0.5);
    border-radius: 4px;
}

.review-card {
    min-width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    scroll-snap-align: start;
}

.stars {
    margin-bottom: 12px;
}

.review-card h4 {
    margin-bottom: 10px;
}

.review-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* =========================================
   BLOCK 9.5: MARQUEE
========================================= */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-container {
    display: flex;
    width: fit-content;
    animation: marquee 35s linear infinite;
}

.marquee-content {
    white-space: nowrap;
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   BLOCK 10: GUARANTEE
========================================= */
.guarantee-section {
    padding: 100px 0;
}

.guarantee-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-box p {
    color: var(--text-muted);
    margin: 20px 0;
}

.guarantee-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--primary);
    font-weight: 600;
}

/* =========================================
   BLOCK 11: FAQ
========================================= */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

.faq-item.active .faq-content {
    max-height: 300px;
}

/* =========================================
   SEO TEXT
========================================= */
.seo-text {
    padding: 60px 0;
    background: rgba(0,0,0,0.2);
}

.seo-text article {
    max-width: 800px;
    margin: 0 auto;
    color: #8892b0;
    font-size: 0.95rem;
}

.seo-text h3 {
    color: #a8b2d1;
    font-size: 1.1rem;
    margin: 30px 0 10px;
}

.seo-text p {
    margin-bottom: 20px;
}

/* =========================================
   FINAL CTA & FOOTER
========================================= */
.final-cta {
    padding: 100px 0;
}

.final-box {
    text-align: center;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="rgba(109,74,255,0.1)" stroke-width="2" fill="none"/></svg>') center/cover;
    padding: 60px 20px;
}

.final-box h2 {
    font-size: 2.5rem;
}

.final-sub {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.final-tags {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

/* =========================================
   MOBILE STICKY CTA
========================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--card-border);
    z-index: 1000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 80px; /* Space for sticky CTA */
    }
}
