/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #fed700;
    --primary-alt: #ebb304;
    --background: #101010;
    --background-alt: #202938;
    --card-background: #384152;
    --text: #fffeff;
    --muted-text: #c3c8d5;
    --border: #202938;
    --accent: #02c39a;
    --danger: #e63946;
    --success: #4caf50;
    --chip: #111827;
    
    --font-heading: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius-card: 18px;
    --radius-button: 8px;
    
    --shadow-card: 0 18px 45px rgba(0,0,0,0.55);
    --shadow-hover: 0 22px 55px rgba(0,0,0,0.7);
    
    --max-width: 1200px;
    --section-spacing: 80px;
    --grid-gap: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--muted-text);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-alt);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-button);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--primary);
    color: var(--background);
}

.btn-primary:hover {
    background: var(--primary-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--background-alt);
    color: var(--text);
    border: 1px solid var(--card-background);
}

.btn-secondary:hover {
    background: var(--card-background);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-cta {
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(254, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hero-column {
    display: flex;
    flex-direction: column;
}

.hero-column-left {
    text-align: left;
}

.hero-column-right {
    text-align: left;
    justify-content: flex-start;
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 20px;
    background: var(--card-background);
    border-radius: var(--radius-button);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--muted-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--card-background);
    border-radius: var(--radius-card);
    width: 100%;
}

.rating-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rating-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.rating-out-of {
    font-size: 24px;
    color: var(--muted-text);
}

.rating-label {
    font-size: 14px;
    color: var(--muted-text);
    display: block;
    margin-bottom: 4px;
}

.rating-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    border-radius: var(--radius-button);
    font-size: 12px;
    font-weight: 600;
    color: var(--background);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 32px;
}

.badge {
    padding: 10px 20px;
    background: var(--chip);
    border: 1px solid var(--border);
    border-radius: var(--radius-button);
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-ctas .btn {
    width: auto;
    max-width: none;
    padding: 12px 24px;
    font-size: 16px;
}

.hero-ctas .btn.btn-large {
    padding: 12px 24px;
    font-size: 16px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.trust-item {
    font-size: 14px;
    color: var(--muted-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

/* Sections */
.section {
    padding: var(--section-spacing) 0;
}

.section-alt {
    background: var(--background-alt);
}

.section-card {
    background: var(--card-background);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--muted-text);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: start;
}

.column-60 {
    grid-column: span 1;
}

.column-50 {
    grid-column: span 1;
}

.column-40 {
    grid-column: span 1;
}

.prose {
    color: var(--muted-text);
    line-height: 1.8;
}

.prose p {
    margin-bottom: 1.5rem;
}

.intro-blocks {
    margin-bottom: 48px;
}

/* Pros Cons Card */
.pros-cons-card {
    background: var(--card-background);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.pros-cons-title {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text);
}

.pros-section,
.cons-section {
    margin-bottom: 24px;
}

.pros-title,
.cons-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.pros-title {
    color: var(--success);
}

.cons-title {
    color: var(--danger);
}

.pros-list,
.cons-list {
    list-style: none;
    padding-left: 0;
}

.pros-list li,
.cons-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--muted-text);
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: bold;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: var(--grid-gap);
}

.cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card {
    background: var(--card-background);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.card-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text);
}

.card-items {
    list-style: none;
    padding-left: 0;
}

.card-items li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--muted-text);
}

.card-items li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-background);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.vip-table th {
    background: var(--background-alt);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    border-bottom: 2px solid var(--border);
}

.vip-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--muted-text);
}

.vip-table tr:last-child td {
    border-bottom: none;
}

.vip-table tr:hover {
    background: rgba(254, 215, 0, 0.05);
}

.table-intro,
.table-note {
    color: var(--muted-text);
    margin-bottom: 24px;
    text-align: center;
}

.table-note {
    margin-top: 24px;
    font-style: italic;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    background: var(--card-background);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.feature-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-item-title {
    font-size: 24px;
    color: var(--text);
    margin: 0;
}

.feature-tag {
    padding: 6px 16px;
    background: var(--chip);
    border-radius: var(--radius-button);
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.feature-description {
    color: var(--muted-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-tip {
    padding: 20px;
    background: var(--background-alt);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    margin-top: 20px;
}

.tip-title {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.tip-text {
    color: var(--muted-text);
    margin: 0;
}

.closing-text {
    text-align: center;
    color: var(--muted-text);
    font-style: italic;
    margin-top: 48px;
}

/* Split Columns */
.split-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    margin-top: 48px;
}

.split-column {
    background: var(--card-background);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.split-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.highlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.chip {
    padding: 8px 16px;
    background: var(--chip);
    border: 1px solid var(--primary);
    border-radius: var(--radius-button);
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.bullets-block {
    margin: 24px 0;
}

.bullets-label {
    display: block;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 12px;
}

.bullets-list {
    list-style: none;
    padding-left: 0;
}

.bullets-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--muted-text);
    line-height: 1.8;
}

.bullets-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.subheading {
    font-size: 20px;
    margin: 24px 0 16px;
    color: var(--text);
}

.note {
    padding: 16px 20px;
    border-radius: var(--radius-card);
    margin: 24px 0;
    background: var(--background-alt);
    border-left: 4px solid var(--primary);
}

.note-warning {
    border-left-color: var(--danger);
    background: rgba(230, 57, 70, 0.1);
}

.note strong {
    color: var(--text);
}

/* Testimonials */
.testimonials-intro,
.testimonials-summary {
    text-align: center;
    color: var(--muted-text);
    width: 100%;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin: 48px 0;
}

.testimonial-card {
    background: var(--card-background);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    color: var(--muted-text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-name {
    color: var(--text);
    font-weight: 600;
}

.author-location {
    color: var(--muted-text);
    font-size: 14px;
}

.testimonials-closing {
    text-align: center;
    color: var(--muted-text);
    font-style: italic;
    margin-top: 32px;
}

/* FAQ */
.faq-intro {
    text-align: center;
    color: var(--muted-text);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    align-items: start;
}

.accordion-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--card-background);
    border-radius: var(--radius-card);
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    align-self: start;
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--background-alt);
}

.accordion-icon {
    font-size: 24px;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 32px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 32px 24px;
}

.accordion-content p {
    color: var(--muted-text);
    line-height: 1.8;
    margin: 0;
}

/* CTA Banner */
.section-cta {
    background: linear-gradient(135deg, var(--background-alt) 0%, var(--card-background) 100%);
}

.cta-banner {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--card-background);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}

.cta-title {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text);
}

.cta-text-blocks {
    margin-bottom: 32px;
}

.cta-text-blocks p {
    color: var(--muted-text);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--muted-text);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--chip);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    margin-top: var(--section-spacing);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(1.2) contrast(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.footer-link {
    color: var(--muted-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.footer-badge {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badge:hover {
    opacity: 1;
}

.footer-disclaimer {
    text-align: center;
    color: var(--muted-text);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-column,
    .split-columns {
        grid-template-columns: 1fr;
    }
    
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion {
        grid-template-columns: 1fr;
    }
    
    .accordion-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        flex-direction: column;
        padding: 24px;
        border-top: 1px solid var(--border);
        gap: 16px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .header-cta {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-column-left,
    .hero-column-right {
        text-align: center;
    }
    
    .hero-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-rating {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .hero-trust {
        align-items: center;
    }
    
    .vip-table {
        font-size: 14px;
    }
    
    .vip-table th,
    .vip-table td {
        padding: 12px 8px;
    }
    
    .cta-banner {
        padding: 40px 24px;
    }
    
    .feature-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }
    
    .pros-cons-card,
    .feature-card,
    .split-column {
        padding: 24px;
    }
}

