/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#first-buy-button-section {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center; /* Centers the button horizontally */
  box-sizing: border-box;
}

#first-buy-button-section img {
  max-width: 100%;    /* Ensures image shrinks on small screens */
  height: auto;       /* Maintains aspect ratio */
  display: block;     /* Removes bottom whitespace gaps */
  margin: 0 auto;     /* Backup centering */
}

#last-buy-button-section {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center; /* Centers the button horizontally */
  box-sizing: border-box;
}

#last-buy-button-section img {
  max-width: 100%;    /* Ensures image shrinks on small screens */
  height: auto;       /* Maintains aspect ratio */
  display: block;     /* Removes bottom whitespace gaps */
  margin: 0 auto;     /* Backup centering */
}

/* --- Keyframe Animations --- */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* --- Header & Banner Styles (Salespage 1) --- */
header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

/* Salespage 1 Specific Banner */
.urgent-banner.main-deal {
    background: #ef4444; /* Red Accent */
    color: white;
}

/* Upsell 1 (PRO) Specific Banner */
.urgent-banner.pro-deal {
    background: #10b981; /* Green Accent */
    color: white;
}

/* Upsell 2 (WL) Specific Banner */
.urgent-banner.whitelabel-deal {
    background: #f59e0b; /* Amber/Gold Accent */
    color: #1f2937;
}

.urgent-banner {
    padding: 12px 20px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* --- Hero Section (Salespage 1) --- */
.hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero.pro-upgrade, .hero.whitelabel-upgrade {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero .subheadline {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.highlight {
    color: #fbbf24;
    font-weight: bold;
}

.red-highlight {
    color: #ef4444;
    font-weight: bold;
}

/* --- Compliance / Disclaimer Box --- */
.disclaimer-box, .compliance-box {
    background: #fef3c7; /* Light Yellow */
    border: 2px solid #f59e0b; /* Amber */
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    font-size: 15px;
    color: #78350f; /* Dark Brown Text */
    text-align: left;
    max-width: 900px;
}

.disclaimer-box strong, .compliance-box strong {
    color: #d97706; /* Strong Amber */
}

/* Salespage 1 Price Highlight */
.price-highlight {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin: 40px auto;
    max-width: 700px;
    text-align: center;
}

.price-highlight .badge {
    background: #10b981;
    color: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.price-highlight .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 28px;
    margin-bottom: 10px;
}

.price-highlight .new-price {
    font-size: 56px;
    color: #6366f1;
    font-weight: bold;
    margin: 15px 0;
}

.price-highlight .savings {
    color: #10b981;
    font-size: 22px;
    font-weight: bold;
    margin-top: 15px;
}

/* --- CTA BUTTON / IMAGE STYLING --- */
.buy-button-img-wrapper {
    max-width: 450px;
    margin: 20px auto 5px;
    display: block;
    text-align: center;
}
.buy-button-img-wrapper img {
    max-width: 100%;
    height: auto;
    border: none;
    transition: transform 0.3s;
}
.buy-button-img-wrapper img:hover {
    transform: translateY(-3px);
}

/* --- Countdown Timer Section (Generic) --- */
.countdown-section {
    background: #ef4444;
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.countdown-title {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 20px 30px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(10px);
}

.countdown-item .number {
    font-size: 48px;
    font-weight: bold;
    display: block;
}

.countdown-item .label {
    font-size: 14px;
    text-transform: uppercase;
}

/* --- CTA Button (Salespage 1) --- */
.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1f2937;
    padding: 22px 55px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(251,191,36,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 20px 10px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251,191,36,0.6);
}

.cta-button.secondary {
    background: white;
    color: #6366f1;
}

/* --- Features Grid (Salespage 1) --- */
.features {
    background: white;
    padding: 80px 20px;
}

.features h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    color: #1f2937;
}

.features .subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(99,102,241,0.2);
    border-color: #6366f1;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    text-align: center;
}

.feature-card h3 {
    color: #6366f1;
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.8;
    text-align: center;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
}

/* --- Problem Section (Salespage 1) --- */
.problem-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.problem-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 30px;
    color: #ef4444;
}

.problem-section .subtitle {
    text-align: center;
    font-size: 22px;
    color: #4b5563;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ef4444;
}

.problem-card h3 {
    color: #ef4444;
    margin-bottom: 15px;
    font-size: 22px;
}

/* --- Solution Section (Salespage 1) --- */
.solution-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

.solution-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.solution-section p {
    font-size: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* --- How It Works (Salespage 1) --- */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    color: #1f2937;
}

.how-it-works .subtitle {
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.step {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    border: 3px solid #e5e7eb;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
}

.step-number {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 6px 20px rgba(99,102,241,0.4);
}

.step h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 26px;
}

.step p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

/* --- Value Stack (Salespage 1) --- */
.value-stack {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.value-stack h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1f2937;
}

.value-items {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.value-item h3 {
    color: #1f2937;
    font-size: 22px;
    flex: 1;
}

.value-item .value-price {
    color: #6366f1;
    font-size: 24px;
    font-weight: bold;
}

.total-value {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 35px rgba(99,102,241,0.3);
}

.total-value h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.total-value .old-total {
    font-size: 48px;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 20px;
}

.total-value .new-total {
    font-size: 72px;
    font-weight: bold;
    color: #fbbf24;
}

/* --- Guarantee Section (All Pages) --- */
.guarantee {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.guarantee h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1f2937;
}

.guarantee-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 50px;
    border-radius: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 35px rgba(16,185,129,0.3);
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.guarantee-box h3 {
    font-size: 36px;
    margin-bottom: 25px;
}

.guarantee-box p {
    font-size: 20px;
    line-height: 1.8;
}

/* --- FAQ Section (All Pages) --- */
.faq {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.faq h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1f2937;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #6366f1;
    margin-bottom: 15px;
    font-size: 22px;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 17px;
}

/* --- Final CTA (All Pages) --- */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    text-align: center;
}

.final-cta.whitelabel {
    background: #1f2937; /* Dark Gray/Black for WL CTA */
}

.final-cta h2 {
    font-size: 52px;
    margin-bottom: 25px;
}

.final-cta p {
    font-size: 26px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer (All Pages) --- */
footer {
    background: #1f2937;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

footer a {
    color: #fbbf24;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Video Section (Salespage 1) --- */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.play-button-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* --- Image styling (All Pages) --- */
.funnel-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 30px 0;
}

.step-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Upsell 1 (PRO) Specific Styles --- */
.hero.pro-upgrade header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.total-value-pro {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); /* RED ACCENT */
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 35px rgba(239,68,68,0.3);
}

.total-value-pro h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.total-value-pro .old-total {
    font-size: 48px;
    text-decoration: line-through;
    opacity: 1;
    color: white;
    margin-bottom: 20px;
}

.total-value-pro .new-total {
    font-size: 72px;
    font-weight: bold;
    color: #fbbf24;
}

/* Comparison Table */
.comparison-table {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}
.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
}
.comparison-table th {
    background-color: #f3f4f6;
    color: #1f2937;
    text-align: center;
    font-size: 20px;
}
.comparison-table td:nth-child(1) {
    font-weight: bold;
    color: #4b5563;
}
.comparison-table .starter-col {
    color: #9ca3af;
    text-align: center;
    font-size: 18px;
}
.comparison-table .pro-col {
    color: #10b981;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    background-color: #f0fdf4; /* Light Green background */
}
.comparison-table .whitelabel-col {
    color: #1d4ed8;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    background-color: #ebf8ff;
}
.comparison-table .check {
    color: #10b981;
    font-size: 24px;
    font-weight: bold;
}
.comparison-table .xmark {
    color: #ef4444;
    font-size: 20px;
    font-weight: bold;
}

.features-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-icon-lg {
    font-size: 64px;
    margin-bottom: 20px;
    color: #6366f1;
    text-align: center;
}

.feature-card-pro {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 2px solid #10b981;
    text-align: center;
}
.feature-card-pro h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 24px;
}
.feature-card-pro p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}

/* --- Upsell 2 (WHITE LABEL) Specific Styles --- */
.hero.whitelabel-upgrade header {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}
.feature-card-pro.whitelabel {
    background: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);
    border: 2px solid #1d4ed8;
}
.feature-card-pro.whitelabel .feature-icon-lg {
    color: #1d4ed8;
}
.profit-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    text-align: center;
}
.profit-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: white;
}
.profit-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.profit-card {
    background: rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.profit-card .price {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
}
.profit-card p {
    font-size: 18px;
    margin-top: 15px;
}
.income-disclaimer-notice {
    color: #d97706; /* Darker Amber/Orange */
    font-size: 18px;
    font-weight: bold;
    margin-top: -20px;
    margin-bottom: 30px;
    text-align: center;
}


/* --- No Thanks Styling (Upsells) --- */
.no-thanks-link {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #ef4444;
    text-decoration: underline;
    transition: color 0.3s;
}
.no-thanks-link:hover {
    color: #b91c1c;
}

/* No Thanks link inside the final CTA needs light text for visibility */
.final-cta .no-thanks-link {
    color: #fca5a5;
}
.final-cta .no-thanks-link:hover {
    color: #f87171;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero h2 {
        font-size: 24px;
    }
    .countdown-item {
        min-width: 70px;
        padding: 10px 15px;
    }
    .countdown-item .number {
        font-size: 32px;
    }
    .comparison-table th, .comparison-table td {
        font-size: 14px;
        padding: 10px;
    }
    .comparison-table .pro-col, .comparison-table .starter-col, .comparison-table .whitelabel-col {
        font-size: 16px;
    }
    .features h2, .guarantee h2, .faq h2, .final-cta h2, .profit-section h2 {
        font-size: 32px;
    }
    .features-grid, .features-grid-pro {
        grid-template-columns: 1fr;
    }
    .profit-card {
        min-width: 100%;
    }
    .price-highlight .new-price {
        font-size: 48px;
    }
    .total-value .new-total {
        font-size: 56px;
    }
    .total-value-pro .new-total {
        font-size: 56px;
    }
}