/* CSS Crítico & Premium Theme */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --bg-dark: #020617;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #f97316;
    /* Orange-500 */
    --primary-hover: #ea580c;
    /* Orange-600 */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-main: radial-gradient(circle at top center, #1e293b 0%, #020617 100%);
    --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.text-orange {
    color: var(--primary);
    font-weight: 700;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

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

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: #fff;
    line-height: 1.2;
}

/* Shared Components */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-glow);
}

/* Section Styles */
section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

/* 1. Video Section */
.video-section {
    padding-top: 0;
    background: var(--gradient-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vsl-wrapper {
    width: 100%;
    max-width: 800px;
    /* Increased for better desktop view, adjust as needed */
    margin: 0 auto;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        padding-top: 20px;
    }

    .vsl-wrapper {
        max-width: 100%;
    }
}

/* 2. Features Section */
.features-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child {
    border-bottom: none;
}

.check-icon {
    min-width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.feature-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 600;
    line-height: 1.6;
}

/* Lead Section */
.lead-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.lead-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.lead-problem {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 8px;
}

.lead-text-bold {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
}

.lead-text-italic {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    font-style: italic;
    margin-bottom: 8px;
}

.lead-spacer {
    height: 25px;
}

.lead-callout {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.lead-callout p {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.lead-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 50px 0;
    border-radius: 2px;
}

.lead-solution-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.lead-intro {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.lead-benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lead-benefits-list li {
    font-size: 1.2rem;
    color: #0f172a;
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.6;
}

.lead-benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
}

.lead-benefits-list strong {
    color: var(--primary);
    font-weight: 800;
}

.lead-transform-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.lead-transform-list li {
    font-size: 1.1rem;
    color: #1e293b;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
}

.lead-result-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 30px 0 20px 0;
}

.lead-results-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.lead-results-list li {
    font-size: 1.15rem;
    color: #0f172a;
    padding: 15px 0 15px 40px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
}

.lead-results-list li:last-child {
    border-bottom: none;
}

.lead-results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
}

.lead-results-list strong {
    color: #ef4444;
    font-weight: 800;
}

.lead-final {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    border: 2px solid #fbbf24;
}

.lead-final-text {
    font-size: 1.3rem;
    color: #78350f;
    font-weight: 600;
    margin-bottom: 15px;
}

.lead-final-bold {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.4;
}

.lead-final-sub {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.highlight-orange {
    color: var(--primary);
    font-weight: 900;
}

.proof-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.proof-images-grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.proof-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proof-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.proof-closing {
    margin-top: 50px;
    text-align: center;
}

.proof-closing-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 25px;
}

.proof-closing-bold {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .lead-box {
        padding: 40px 30px;
    }

    .lead-solution-title {
        font-size: 1.6rem;
    }

    .lead-callout p {
        font-size: 1.2rem;
    }

    .lead-transform-list {
        grid-template-columns: 1fr;
    }

    .proof-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Comparison Section */
.comparison-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.comparison-table {
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.8fr;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

.comparison-winner.comparison-row {
    grid-template-columns: 1.2fr 3.8fr;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.15));
    border: 2px solid var(--primary);
    box-shadow: inset 0 0 30px rgba(249, 115, 22, 0.1), 0 0 40px rgba(249, 115, 22, 0.2);
    margin: -2px;
    position: relative;
    z-index: 10;
}

@keyframes glowMove {
    0% {
        filter: brightness(1);
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
    }

    50% {
        filter: brightness(1.3);
        box-shadow: 0 0 60px rgba(249, 115, 22, 0.4);
    }

    100% {
        filter: brightness(1);
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
    }
}

.comparison-winner.comparison-row {
    animation: glowMove 3s infinite ease-in-out;
}

.winner-benefits-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 30px 40px;
    gap: 40px;
}

.winner-benefits-wrapper .benefit-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    text-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    text-align: left;
    line-height: 1.4;
    white-space: nowrap;
}

.winner-benefits-wrapper .check-svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary));
    margin: 0;
    flex-shrink: 0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, #f97316, #ea580c);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: #fff;
    padding: 20px 0;
    border-radius: 12px 12px 0 0;
    margin: -40px -40px 20px -40px;
}

.comparison-header .comparison-col {
    padding: 0 20px;
}

.comparison-bad {
    background: rgba(249, 115, 22, 0.02);
    transition: all 0.3s ease;
}

.comparison-bad:hover {
    background: rgba(249, 115, 22, 0.05);
}

.comparison-winner {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.1));
    border: 2px solid rgba(249, 115, 22, 0.5);
    margin: -2px;
    position: relative;
}

.comparison-winner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.comparison-col {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title-icon {
    color: var(--primary);
    margin-right: 12px;
    vertical-align: middle;
    filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.5));
}

.icon-caminho {
    color: #cbd5e1;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon-caminho.winner-icon {
    color: var(--primary);
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
}

.result-icon {
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
    color: #fca5a5;
}

.check-svg {
    color: var(--primary);
    margin-right: 6px;
    flex-shrink: 0;
}

.comparison-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-label.winner {
    font-size: 1.3rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.4;
}

.comparison-result {
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 20px;
}

.benefit-item {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .comparison-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px 20px;
        justify-content: flex-start;
    }

    .comparison-col:last-child {
        border-bottom: none;
    }

    .comparison-icon-col {
        display: none;
    }

    .comparison-header .comparison-col {
        display: none;
    }

    .comparison-header .comparison-col:first-child {
        display: flex;
    }
}

/* 3. Steps Section (Unified Dark) */
.steps-section {
    background-color: #0b1121;
    /* Slightly lighter dark */
    color: #fff;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.step-card {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.step-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.1));
    color: var(--primary);
    font-weight: 900;
    font-size: 0.9rem;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.1);
}

.step-title {
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 25px;
    min-height: 3.5rem;
    color: #0f172a;
    line-height: 1.3;
}

.step-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-content {
    text-align: left;
    margin-top: 20px;
}

.step-intro {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 12px;
}

.step-sub-intro {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-points-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.step-points-list li {
    font-size: 0.95rem;
    color: #1e293b;
    padding: 6px 0 6px 25px;
    position: relative;
    line-height: 1.4;
    border-bottom: 1px solid #f1f5f9;
}

.step-points-list li:last-child {
    border-bottom: none;
}

.step-points-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.step-points-list.negative li::before {
    content: '✕';
    color: #ef4444;
}

.step-points-list.positive li::before {
    content: '✓';
    color: #10b981;
}

.step-conclusion {
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #cbd5e1;
}

.step-conclusion p {
    font-size: 0.95rem;
    color: #334155;
    margin: 0;
    line-height: 1.5;
}

.step-conclusion.highlight {
    background: #fff7ed;
    border-left-color: var(--primary);
}

.step-conclusion.highlight p {
    color: #9a3412;
}

/* 4. Testimonial Section */
.testimonial-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-glass);
}

.testimonial-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Glow effect behind testimonial */
.testimonial-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.5), transparent);
}

@media (min-width: 768px) {
    .testimonial-box {
        grid-template-columns: 1.4fr 1fr;
    }
}

.testimonial-video {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.testimonial-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff;
}

.testimonial-text {
    color: var(--text-muted);
}

.testimonial-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-description strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .testimonial-description {
        font-size: 1rem;
        gap: 15px;
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 25px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* 5. Bonus Section */
.bonus-section {
    background-color: #0b1121;
    padding-bottom: 80px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.bonus-header {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-glass);
}

.bonus-body {
    background-color: #ffffff;
    padding: 30px;
    color: #1e293b;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-agents-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 350px;
}

.bonus-agents-list li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-align: left;
}

.bonus-agents-list li:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.agent-icon {
    font-size: 1.4rem;
    background: #fff7ed;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #ffedd5;
}

.agent-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.05rem;
}

.bonus-price-bar {
    background-color: #B91C1C;
    /* Solid Dark Red */
    color: #ffffff;
    padding: 15px;
    font-size: 2rem;
    /* Increased size to match reference image impact */
    font-weight: 800;
    text-transform: uppercase;
    width: 100%;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    border-radius: 24px;
    /* Added rounded corners */
}

/* Offer Section */
.offer-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.offer-box {
    background: #000;
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
    position: relative;
}

.stack-image {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.offer-headline {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #fff;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.offer-item:last-child {
    border-bottom: none;
}

.item-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #f1f5f9;
}

.item-check {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.item-value {
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.95rem;
}

.pricing-block {
    margin-top: 30px;
}

.price-anchor {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.scratched-price {
    text-decoration: line-through;
    color: #ef4444;
    opacity: 0.8;
    font-weight: 600;
}

.final-price-label {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.big-price {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin: 15px 0;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.big-price small {
    font-size: 2.2rem;
    font-weight: 600;
    color: #cbd5e1;
}

.cta-green {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-size: 1.3rem;
    padding: 22px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    display: block;
    width: 100%;
    text-transform: uppercase;
    margin-top: 30px;
    border: 1px solid #4ade80;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.cta-green:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
}

/* Instructor Section */
.instructor-section {
    background: linear-gradient(180deg, #020617 0%, #172554 100%);
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
}

.instructor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .instructor-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.instructor-content {
    text-align: left;
    z-index: 10;
}

.instructor-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.instructor-title strong {
    font-weight: 900;
    color: var(--primary);
}

.instructor-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    max-width: 650px;
}

.instructor-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    display: block;
    border: 1px solid var(--border-glass);
}

/* Worth it Section */
.worth-it-section {
    background-color: #0b1121;
    padding: 100px 0;
    color: #fff;
}

.worth-it-box {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    text-align: left;
    backdrop-filter: blur(10px);
}

.worth-it-content {
    padding: 40px;
}

.worth-it-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.q-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.worth-it-text h4 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
    color: #020617;
}

.worth-it-text p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
}

.worth-it-highlight {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
}

.orange-footer-bar {
    background: linear-gradient(90deg, #ea580c, #c2410c);
    color: #fff;
    padding: 30px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .worth-it-highlight {
        font-size: 1.5rem;
    }

    .orange-footer-bar {
        font-size: 1.8rem;
    }

    .big-price {
        font-size: 3.5rem;
    }
}

/* Closing Section */
.closing-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-glass);
}

.closing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.closing-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.closing-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #020617;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.paths-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .paths-container {
        grid-template-columns: 1fr 1fr;
    }
}

.path-card {
    background: #f8fafc;
    /* Very light slate */
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.path-card.active {
    border-color: var(--primary);
    background: #fff7ed;
    /* Light orange tint */
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
    transform: scale(1.02);
}

.path-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.path-card.active .path-num {
    color: var(--primary);
}

.path-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #475569;
}

.path-card.active .path-text {
    color: #0f172a;
    font-weight: 600;
}

.closing-punchline {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.punchline-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.4;
}

.punchline-highlight {
    color: var(--primary);
    display: block;
    font-size: 2rem;
    font-weight: 900;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.cta-premium {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 24px 48px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.cta-premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-premium:active {
    transform: scale(0.98);
}

/* Hero Statement Styles */
.hero-statement {
    background-color: var(--bg-dark);
    padding-bottom: 20px;
    padding-top: 40px;
}

.statement-box {
    max-width: 100%;
    margin: 0 auto;
}

.statement-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pill-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 2px solid #ef4444;
    border-radius: 50px;
    padding: 8px 30px;
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.3);
    margin-top: 15px;
    font-size: 2.8rem;
    line-height: 1;
}

.statement-sub {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-simple-copy {
    max-width: 800px;
    margin: 40px auto 0;
}

.hero-copy-main,
.hero-copy-sub {
    color: #cbd5e1;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

.white-text {
    color: #fff;
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}

.highlight-bg {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(234, 88, 12, 0.2));
    padding: 2px 10px;
    border-radius: 6px;
    border-bottom: 2px solid var(--primary);
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .statement-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .pill-highlight {
        font-size: 1.8rem;
        padding: 5px 20px;
        white-space: normal;
        margin-top: 10px;
        border-radius: 20px;
    }

    .statement-sub {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 30px;
    }

    .hero-simple-copy {
        margin-top: 30px;
    }

    .hero-copy-main,
    .hero-copy-sub {
        font-size: 1.05rem;
    }
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.guarantee-box-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    border: 1px solid var(--border-glass);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .guarantee-box-premium {
        flex-direction: row;
        text-align: left;
        padding: 60px;
    }
}

.guarantee-seal {
    width: 240px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #431407;
    /* Dark brown/red for emphasis, or standard dark #020617 */
}

.guarantee-content p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee-content strong {
    color: #020617;
    display: block;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
    border-top: 1px solid var(--border-glass);
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-question {
    padding: 20px;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    line-height: 1.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 300px;
    /* Arbitrary large height for animation */
}

/* Comparison Footer Banner - Elegant Redesign (No Shadows) */
.comparison-footer-banner {
    margin: 60px auto 0 auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-title mark {
    background: transparent;
    color: var(--primary);
}

.banner-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.banner-point {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.banner-point:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.point-check {
    width: 44px;
    height: 44px;
    background: #fff7ed;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

.point-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 4px;
}

.point-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.point-text strong {
    color: var(--primary);
    display: block;
    font-size: 1.3rem;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .comparison-footer-banner {
        padding: 40px 20px;
        margin-top: 40px;
        border-radius: 24px;
    }

    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.2;
        background: linear-gradient(to right, #fff, #94a3b8);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .banner-points {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .banner-point {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 12px;
    }

    .point-check {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto;
    }

    .point-text {
        font-size: 1.2rem;
    }

    .point-text strong {
        display: block;
        font-size: 1.25rem;
        margin-top: 3px;
    }

    .point-description {
        font-size: 0.9rem;
        margin-top: 5px;
    }
}

/* Examples Section */
.examples-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.examples-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    max-width: 1200px;
    /* Wider to accommodate grid */
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.examples-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f172a;
    /* Dark text for white bg */
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.example-card {
    background: #f8fafc;
    /* Light gray card */
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.example-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.example-icon {
    width: 50px;
    height: 50px;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.example-card:hover .example-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.example-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    /* Dark Text */
    margin-bottom: 12px;
    line-height: 1.3;
}

.example-card p {
    font-size: 1rem;
    color: #475569;
    /* Muted Dark Text */
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.example-footer {
    font-size: 0.9rem;
    color: #334155;
    background: #f1f5f9;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-top: auto;
}

.example-footer strong {
    color: var(--primary);
    font-weight: 700;
}

.example-demo-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .examples-box {
        padding: 30px 20px;
    }
}

@media (max-width: 900px) {
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .examples-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .example-card {
        padding: 30px;
    }
}

/* Hero Social Proof - break out of narrow parent */
.hero-social-proof {
    width: calc(100vw - 40px);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Grid Row for Testimonials */
.hero-grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media (max-width: 640px) {
    .proof-images-grid-2-cols {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) {
    .hero-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .hero-grid-row {
        grid-template-columns: repeat(3, 1fr);
    }
}