/* StreamPrime - Funnel Netflix */
:root {
    --bg-dark: #141414;
    --bg-card: #1f1f1f;
    --accent: #E50914;
    --accent-hover: #f40612;
    --text: #ffffff;
    --text-muted: #b3b3b3;
    --border: #333;
}

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

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Netflix Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    padding: 2rem 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

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

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
}

.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12rem 2rem 4rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, var(--bg-dark) 100%);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero .tagline {
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.plans-section {
    padding: 6rem 2rem;
}

.plans-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}

.plan-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.plan-card.featured {
    border-color: var(--accent);
    position: relative;
}

.plan-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
}

.plan-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.plan-card .duration {
    color: var(--text-muted);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.plan-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.plan-card .price span {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-card .btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
}

.trust-section {
    padding: 4rem 2rem;
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 1.4rem;
}

.footer {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.3rem;
    border-top: 1px solid var(--border);
}

.checkout-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
}

.checkout-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.checkout-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.plan-option:hover {
    border-color: var(--text-muted);
}

.plan-option.selected {
    border-color: var(--accent);
}

.plan-option input {
    display: none;
}

.plan-option .plan-name {
    font-weight: 600;
}

.plan-option .plan-price {
    color: var(--accent);
    font-weight: 600;
}

.payment-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
}

.payment-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}

.payment-card h2 {
    margin-bottom: 2rem;
}

.payment-card .amount {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.qr-code {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.payment-address {
    word-break: break-all;
    font-size: 1.3rem;
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.copy-btn {
    margin-top: 1rem;
    font-size: 1.4rem;
}

.status-waiting {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(229, 9, 20, 0.1);
    border-radius: 4px;
    color: var(--text-muted);
}

.thank-you-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.thank-you-card {
    max-width: 550px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.thank-you-card h2 {
    margin-bottom: 2rem;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.credentials-box {
    text-align: left;
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.credentials-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.credentials-box .cred-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.credentials-box .cred-row:last-child {
    border-bottom: none;
}

.credentials-box .cred-label {
    color: var(--text-muted);
    font-size: 1.4rem;
}

.credentials-box .cred-value {
    font-family: monospace;
    font-size: 1.4rem;
}

/* ===== HIGH-CONVERTING FUNNEL STYLES ===== */
.highlight { color: var(--accent); }
.btn-sm { padding: 0.8rem 1.5rem; font-size: 1.4rem; }
.btn-lg { padding: 1.5rem 3.5rem; font-size: 1.8rem; }
.btn-block { width: 100%; display: block; text-align: center; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.9; box-shadow: 0 0 20px rgba(229,9,20,0.5); } }
.btn-glow { box-shadow: 0 4px 20px rgba(229,9,20,0.3); }
.btn-glow:hover { box-shadow: 0 6px 30px rgba(229,9,20,0.5); }

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: rgba(20,20,20,0.98);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.sticky-cta .btn { width: 100%; text-align: center; }

.hero-premium { position: relative; overflow: hidden; min-height: 85vh; }
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(229,9,20,0.15) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0,0,0,0.6) 0%, var(--bg-dark) 70%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.badge-urgency {
    display: inline-block;
    background: rgba(229,9,20,0.2);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-premium h1 { font-size: 4.2rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.8rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    color: var(--text-muted);
}
.hero-stats strong { color: var(--text); }
.hero-guarantee { font-size: 1.4rem; color: var(--text-muted); margin-top: 1.5rem; }

.trust-bar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 1.4rem;
}
.trust-item { color: var(--text-muted); }

.comparison-section {
    padding: 6rem 2rem;
    background: var(--bg-card);
}
.comparison-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.comparison-card {
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border);
}
.comparison-bad { background: rgba(255,255,255,0.02); }
.comparison-good { border-color: var(--accent); background: rgba(229,9,20,0.08); position: relative; }
.comparison-good .best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 4px;
}
.comparison-card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.price-old { font-size: 2.4rem; color: var(--text-muted); }
.price-old small { font-size: 1.2rem; }
.total-bad, .total-good { font-size: 1.4rem; margin: 0.5rem 0 1.5rem; }
.comparison-card ul { list-style: none; }
.comparison-card li { padding: 0.4rem 0; font-size: 1.4rem; color: var(--text-muted); }
.comparison-good li { color: var(--text); }
.price-new { font-size: 2.6rem; color: var(--accent); font-weight: 700; }

.plans-premium { padding: 6rem 2rem; }
.plans-premium .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 4rem; font-size: 1.6rem; }
.plan-card-pro {
    position: relative;
    padding: 2.5rem;
    border-radius: 12px;
}
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #ff3d3d);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
}
.plan-savings { color: #4ade80; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 1.3rem;
    color: var(--text-muted);
}
.price-value { font-size: 3.2rem; }
.price-total { font-size: 1.3rem; color: var(--text-muted); font-weight: 400; }

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-card);
}
.testimonials-section h2 { text-align: center; font-size: 2.8rem; margin-bottom: 4rem; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.testimonial-stars { color: #fbbf24; font-size: 1.4rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 1.4rem; line-height: 1.6; margin-bottom: 1rem; }
.testimonial-author { font-size: 1.2rem; color: var(--text-muted); }

.faq-section { padding: 6rem 2rem; }
.faq-section h2 { text-align: center; font-size: 2.8rem; margin-bottom: 4rem; }
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.faq-item p { font-size: 1.4rem; color: var(--text-muted); line-height: 1.6; }

.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}
.cta-section h2 { font-size: 3rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.6rem; color: var(--text-muted); margin-bottom: 2rem; }

.plan-card.featured::before { content: none; }

@media (max-width: 768px) {
    .sticky-cta { display: block; }
    .hero-premium h1 { font-size: 2.6rem; }
    .hero-sub { font-size: 1.5rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .comparison-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .trust-items { flex-direction: column; align-items: center; }
}
