:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #0099ff;
    --bg-dark: #0a0e27;
    --bg-card: #141b3d;
    --text-light: #e8eeff;
    --text-muted: #8892b8;
    --accent-red: #ff3366;
    --accent-yellow: #ffcc00;
}

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

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
    animation: fadeInDown 0.8s ease;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.nav-tabs {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease 0.2s both;
}

.nav-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Sora', sans-serif;
    position: relative;
}

.nav-tab:hover {
    color: var(--text-light);
}

.nav-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Intro Section */
.intro-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
}

/* Questionnaire Styles */
.questionnaire {
    max-width: 900px;
    margin: 0 auto;
}

.question-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
    animation: slideUp 0.6s ease;
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.question-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.question-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-right: 1rem;
    font-family: 'Space Mono', monospace;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.option.selected {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
}

.option.selected::before {
    opacity: 0.1;
}

.option-content {
    position: relative;
    z-index: 1;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    margin-top: 2rem;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Results & Ranking Styles */
.results {
    display: none;
}

.results.show {
    display: block;
    animation: fadeIn 0.8s ease;
}

.ranking-list {
    max-width: 100%;
    margin: 2rem 0;
}

.ranking-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.ranking-item.rank-1 {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.ranking-item.rank-2 {
    border-color: var(--secondary);
}

.ranking-item.rank-3 {
    border-color: var(--accent-yellow);
}

.ranking-header {
    display: grid;
    grid-template-columns: 60px 1fr auto auto auto;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    align-items: center;
}

.rank-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    flex-shrink: 0;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #ffb347);
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-quick-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ranking-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.ranking-price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

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

.expand-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.ranking-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.ranking-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ranking-item.expanded .ranking-details {
    max-height: 2000px;
}

.details-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.detail-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
}

.detail-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.match-score {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

/* Social Proof Section */
.social-proof {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Space Mono', monospace;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

.trust-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-card);
    margin-top: 5rem;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(0, 255, 136, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .nav-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .question-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .question-title {
        font-size: 1.2rem;
    }

    .question-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }

    .options {
        grid-template-columns: 1fr;
    }

    .option {
        padding: 1.25rem;
    }

    .btn-primary {
        width: 100%;
        padding: 1rem 2rem;
    }

    .ranking-header {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .rank-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .ranking-name {
        font-size: 1.1rem;
    }

    .ranking-quick-info {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .ranking-score,
    .ranking-price,
    .btn-cta {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.5rem;
    }

    .ranking-price {
        text-align: left;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .details-content {
        padding: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-section {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .ranking-header {
        grid-template-columns: 40px 1fr;
    }

    .rank-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .ranking-name {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.3rem;
    }
}
:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #0099ff;
    --bg-dark: #0a0e27;
    --bg-card: #141b3d;
    --text-light: #e8eeff;
    --text-muted: #8892b8;
    --accent-red: #ff3366;
    --accent-yellow: #ffcc00;
}

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

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 153, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

header {
    text-align: center;
    padding: 3rem 0 2rem;
    animation: fadeInDown 0.8s ease;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.nav-tabs {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease 0.2s both;
}

.nav-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Sora', sans-serif;
    position: relative;
}

.nav-tab:hover {
    color: var(--text-light);
}

.nav-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Intro Section */
.intro-section {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: center;
}

/* Questionnaire Styles */
.questionnaire {
    max-width: 900px;
    margin: 0 auto;
}

.question-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 136, 0.1);
    animation: slideUp 0.6s ease;
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.question-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.question-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-right: 1rem;
    font-family: 'Space Mono', monospace;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.option.selected {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
}

.option.selected::before {
    opacity: 0.1;
}

.option-content {
    position: relative;
    z-index: 1;
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.option-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    margin-top: 2rem;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

/* Results & Ranking Styles */
.results {
    display: none;
}

.results.show {
    display: block;
    animation: fadeIn 0.8s ease;
}

.ranking-list {
    max-width: 100%;
    margin: 2rem 0;
}

.ranking-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.ranking-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.ranking-item.rank-1 {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.ranking-item.rank-2 {
    border-color: var(--secondary);
}

.ranking-item.rank-3 {
    border-color: var(--accent-yellow);
}

.ranking-header {
    display: grid;
    grid-template-columns: 60px 1fr auto auto auto;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    align-items: center;
}

.rank-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Space Mono', monospace;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    flex-shrink: 0;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #ffb347);
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-quick-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ranking-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.ranking-price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

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

.expand-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.ranking-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.ranking-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.ranking-item.expanded .ranking-details {
    max-height: 2000px;
}

.details-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.detail-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
}

.detail-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.detail-list {
    list-style: none;
}

.detail-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.match-score {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
}

/* Social Proof Section */
.social-proof {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Space Mono', monospace;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: 'Space Mono', monospace;
}

.trust-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--bg-card);
    margin-top: 5rem;
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(0, 255, 136, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .nav-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .question-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .question-title {
        font-size: 1.2rem;
    }

    .question-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1rem;
    }

    .options {
        grid-template-columns: 1fr;
    }

    .option {
        padding: 1.25rem;
    }

    .btn-primary {
        width: 100%;
        padding: 1rem 2rem;
    }

    .ranking-header {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .rank-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .ranking-name {
        font-size: 1.1rem;
    }

    .ranking-quick-info {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .ranking-score,
    .ranking-price,
    .btn-cta {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.5rem;
    }

    .ranking-price {
        text-align: left;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .details-content {
        padding: 1rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-section {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .ranking-header {
        grid-template-columns: 40px 1fr;
    }

    .rank-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .ranking-name {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.3rem;
    }
}

/* ========================================
   MODERN 2026 STYLES - Content, FAQ, Lexique
   ======================================== */

/* SEO Content - Modern 2026 Style */
.seo-content {
    max-width: 1000px;
    margin: 5rem auto 0;
    padding: 0;
}

.content-section {
    margin-bottom: 5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.content-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 3rem 0 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.content-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.content-section h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin: 2rem 0 1rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(232, 238, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.intro-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    font-weight: 400;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 153, 255, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.highlight-box h4 {
    margin-top: 0;
    font-size: 1.3rem;
}

.numbered-list {
    padding-left: 0;
    margin: 2rem 0;
    counter-reset: list-counter;
}

.numbered-list li {
    margin-bottom: 2rem;
    line-height: 1.9;
    color: rgba(232, 238, 255, 0.8);
    padding-left: 3.5rem;
    position: relative;
    counter-increment: list-counter;
}

.numbered-list li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    color: var(--bg-dark);
}

.numbered-list li strong {
    color: var(--text-light);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* FAQ Styles - Modern 2026 */
.faq-section {
    margin: 6rem 0;
    padding: 4rem 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateX(5px);
    box-shadow: -5px 0 30px rgba(0, 255, 136, 0.15);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 153, 255, 0.05));
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 2.5rem 2rem 2.5rem;
    margin: 0;
    color: rgba(232, 238, 255, 0.75);
    line-height: 1.9;
    font-weight: 300;
    font-size: 1.02rem;
}

/* Lexique Styles - Modern 2026 */
.lexique-section {
    margin: 6rem 0 4rem;
    padding: 4rem 0;
    position: relative;
}

.lexique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.lexique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lexique-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lexique-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 153, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lexique-item:hover {
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15);
}

.lexique-item:hover::before {
    opacity: 1;
}

.lexique-item h4 {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.lexique-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 238, 255, 0.75);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Mobile adaptations for modern sections */
@media (max-width: 768px) {
    .content-section {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .content-section h3 {
        padding-left: 1rem;
    }

    .numbered-list li {
        padding-left: 3rem;
    }

    .numbered-list li::before {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .lexique-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lexique-item {
        padding: 1.5rem;
    }
}
