/* CSS Variables */
:root {
    --bg-dark: #0a0a12;
    --bg-card: #161622;
    --primary: #00ff88;
    /* Neon Green */
    --secondary: #ffd700;
    /* Gold */
    --accent: #2d2d3f;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gradient-main: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --shadow-glow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
    /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.highlight {
    color: var(--secondary);
    font-weight: 800;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a2e 0%, var(--bg-dark) 70%);
}

.badge {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 15px;
    opacity: 0.8;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.05);
}

.video-placeholder:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Scarcity Counter */
.scarcity-counter {
    margin: -30px auto 40px;
    /* Pull it up closer to video */
    max-width: 400px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    padding: 15px;
    border-radius: 10px;
    color: #ff4444;
    font-weight: 700;
    text-align: center;
}

.scarcity-counter i {
    margin-right: 5px;
    animation: flicker 2s infinite;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ff4444;
    width: 80%;
    border-radius: 4px;
    transition: width 1s ease;
}

@keyframes flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

.cta-button.large {
    font-size: 1.8rem;
    padding: 25px 60px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.guarantee {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.guarantee i {
    color: var(--primary);
    margin-right: 5px;
}

/* Dynamic CTA Block Link */
.dynamic-cta-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.dynamic-cta-link:hover {
    transform: scale(1.02);
}

.dynamic-cta-link:hover .cta-button {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.5);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-dark);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(0, 255, 136, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #0f0f1a;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
    /* Center vertically for scaling */
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tier-2 {
    background: linear-gradient(145deg, #1a1a25 0%, #111 100%);
    transform: scale(1.05);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.price .small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: start;
}

.features li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 5px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 15px;
    border: 2px solid var(--text-muted);
    color: var(--text-main);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--primary);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-dark);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.user {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(to top, #000 0%, #0a0a12 100%);
}

.footer h2 {
    margin-bottom: 20px;
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--primary);
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .tier-2 {
        transform: scale(1);
    }

    .cta-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.2rem;
    }
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 100px 0;
    min-height: 80vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    background: #0a0a12;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-detail-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 15px;
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-text strong {
    color: #fff;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-muted);
}

/* Accordion Styles */
.faq-section {
    padding: 60px 0;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    border-top: 1px solid transparent;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

/* Content Structure Upgrades */
.decision-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 15px;
}

.decision-verdict {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.decision-verdict.legit {
    color: #00ff88;
}

.decision-verdict.scam {
    color: #ff4444;
}

.decision-rating {
    background: var(--secondary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.decision-list {
    margin: 20px 0;
    padding-left: 20px;
}

.decision-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.decision-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 2px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-box,
.cons-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-box h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.cons-box h3 {
    color: #ff4444;
    margin-bottom: 15px;
}

.pros-box ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pros-box ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00ff88;
    position: absolute;
    left: 0;
    top: 2px;
}

.cons-box ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.cons-box ul li::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff4444;
    position: absolute;
    left: 0;
    top: 2px;
}

/* =========================================
   STITCH PREMIUM DESIGN SYSTEM (Main Template)
   ========================================= */

/* Premium Hero */
.hero-premium {
    background: radial-gradient(circle at top center, #1a1a2e 0%, #0a0a12 60%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Fixes CTA button alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Forces all children to center */
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-headline-gold {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subhead-neon {
    font-size: 1.25rem;
    color: #00ff88;
    font-weight: 500;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 1;
}

/* Premium Trust Stack */
.trust-stack-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    width: 100%;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #a0a0b0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: #ffd700;
    color: #fff;
    background: rgba(255, 215, 0, 0.05);
}

.trust-badge i {
    color: #ffd700;
}

/* Premium Comparison Table */
.comparison-container-premium {
    background: #111;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow-x: auto;
}

.stitch-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.stitch-table th {
    text-align: left;
    padding: 20px;
    color: #888;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #222;
}

.stitch-table td {
    padding: 20px;
    background: #161622;
    color: #fff;
    font-weight: 500;
}

.stitch-table tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #a0a0b0;
}

.stitch-table tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Icons in Table */
.stitch-table .fa-check,
.stitch-table .fa-check-circle {
    color: #00ff88;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.stitch-table .fa-times,
.stitch-table .fa-times-circle {
    color: #444;
    font-size: 1.2rem;
}

/* Decision Box Premium */
.decision-box-premium {
    background: rgba(255, 215, 0, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    margin-bottom: 40px;
}

.decision-box-premium::before {
    content: 'EXECUTIVE SUMMARY';
    position: absolute;
    top: -12px;
    left: 30px;
    background: #0a0a12;
    padding: 0 10px;
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Content Structure Upgrades */
.decision-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 15px;
}

.decision-verdict {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.decision-verdict.legit {
    color: #00ff88;
}

.decision-verdict.scam {
    color: #ff4444;
}

.decision-rating {
    background: var(--secondary);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.decision-list {
    margin: 20px 0;
    padding-left: 20px;
}

.decision-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.decision-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 2px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-box,
.cons-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-box h3 {
    color: #00ff88;
    margin-bottom: 15px;
}

.cons-box h3 {
    color: #ff4444;
    margin-bottom: 15px;
}

.pros-box ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pros-box ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00ff88;
    position: absolute;
    left: 0;
    top: 2px;
}

.cons-box ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.cons-box ul li::before {
    content: '\f057';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ff4444;
    position: absolute;
    left: 0;
    top: 2px;
}