/* =============================================
   From Prompt To Profit - Professional Styles
   ============================================= */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-bg: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-cta: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff6b6b 100%);

    /* Header heights - used for calculating offsets */
    --urgency-height: 44px;
    --trust-height: 32px;
    --header-height: 70px;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* =============================================
   Fixed Header System - Clean Implementation
   ============================================= */

/* Urgency Banner - Always at top */
.urgency-banner {
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.urgency-banner p {
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.urgency-banner .separator {
    opacity: 0.6;
    margin: 0 4px;
}

.urgency-banner strong {
    font-weight: 800;
}

#countdown {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Trust Bar - Below urgency */
.trust-bar {
    background: #1f2937;
    color: white;
    padding: 8px 0;
    position: fixed;
    top: var(--urgency-height);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trust-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    font-size: 0.85rem;
}

.trust-items span {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.trust-items span:nth-child(1) { animation-delay: 0.1s; }
.trust-items span:nth-child(2) { animation-delay: 0.2s; }
.trust-items span:nth-child(3) { animation-delay: 0.3s; }
.trust-items span:nth-child(4) { animation-delay: 0.4s; }

.trust-items i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Main Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: calc(var(--urgency-height) + var(--trust-height));
    left: 0;
    right: 0;
    width: 100%;
    z-index: 998;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

/* When trust bar is hidden */
body.scrolled .header {
    top: var(--urgency-height);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: var(--header-height);
}

/* Logo */
.logo h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    background: linear-gradient(135deg, #2563eb 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Viewer Notification */
.viewer-notification {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 100;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideIn 0.5s ease-out;
}

.viewer-notification i {
    color: var(--success-color);
    margin-right: 8px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =============================================
   CTA Buttons - Conversion Optimized
   ============================================= */

.cta-button-small,
.cta-button,
.cta-button-primary {
    background: var(--gradient-cta);
    background-size: 200% 100%;
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cta-button-primary {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-button-primary.large {
    padding: 18px 36px;
    font-size: 1.15rem;
}

.cta-button-primary.mega {
    padding: 22px 44px;
    font-size: 1.2rem;
    flex-direction: column;
    gap: 6px;
}

.button-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(255, 107, 107, 0.6);
    }
}

.cta-button:hover,
.cta-button-primary:hover,
.cta-button-small:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.6);
    background-position: 100% 0;
}

/* Mobile CTA text toggle */
.mobile-text {
    display: none;
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
    background: var(--gradient-primary);
    color: white;
    padding-top: calc(var(--urgency-height) + var(--trust-height) + var(--header-height) + 60px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.launch-special {
    margin: 1.5rem 0;
}

.launch-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    font-size: 0.95rem;
}

.hero-cta {
    margin-top: 2rem;
}

.secure-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.95;
    margin-top: 1rem;
}

.scarcity-notice {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    padding: 14px 20px;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.scarcity-notice p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.scarcity-notice i {
    color: #fbbf24;
    margin-right: 8px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    color: #1f2937;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 3;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.live-indicator {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* =============================================
   Problem Section
   ============================================= */

.problem-agitation {
    padding: 80px 0;
    background: #111827;
    color: white;
}

.problem-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-agitation h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.strike {
    text-decoration: line-through;
    opacity: 0.6;
}

.problem-story {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.problem-story p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.problem-story p i {
    margin-right: 10px;
    opacity: 0.7;
}

.problem-emphasis {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #fbbf24;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-item i {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem-item p {
    opacity: 0.8;
}

.truth-bomb {
    text-align: center;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid #f59e0b;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.truth-bomb h3 {
    color: #f59e0b;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.truth-bomb p {
    font-size: 1.1rem;
}

/* =============================================
   Solution Section
   ============================================= */

.solution-intro {
    padding: 80px 0;
    background: white;
}

.breakthrough-moment {
    text-align: center;
    margin-bottom: 3rem;
}

.breakthrough-moment h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.subheadline {
    font-size: 1.15rem;
    color: #6b7280;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.before, .after {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.before {
    border-color: #fca5a5;
}

.after {
    border-color: #86efac;
}

.before h4, .after h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.before h4 {
    color: #dc2626;
}

.after h4 {
    color: #16a34a;
}

.before ul, .after ul {
    list-style: none;
}

.before li, .after li {
    padding: 8px 0;
    font-weight: 500;
    color: #4b5563;
}

.arrow {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* =============================================
   How It Works Section
   ============================================= */

.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1f2937;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding-top: 3.5rem;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateX(-50%) scale(1.1);
}

.step-item h3 {
    margin: 1rem 0;
    font-size: 1.25rem;
    color: #1f2937;
}

.step-image {
    width: 140px;
    height: 140px;
    margin: 1.5rem auto;
    object-fit: contain;
}

.step-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Results Timeline */
.results-timeline {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.results-timeline h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1f2937;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 2px;
}

.timeline-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    background: var(--success-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--success-color);
}

.time {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    display: block;
    padding-top: 45px;
    font-size: 0.95rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

/* Automation Visual */
.automation-visual {
    margin-top: 3rem;
    text-align: center;
}

.workflow-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* =============================================
   Product Showcase Section
   ============================================= */

.product-showcase {
    padding: 80px 0;
    background: white;
}

.showcase-content {
    text-align: center;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.blueprints-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #4b5563;
}

.product-types-container {
    max-width: 900px;
    margin: 0 auto;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.product-showcase-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.product-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.product-showcase-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.product-showcase-item span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.showcase-image-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.showcase-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* =============================================
   Automation Features Section
   ============================================= */

.automation-section {
    padding: 80px 0;
    background: #f8fafc;
}

.automation-features h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-5deg) scale(1.1);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* =============================================
   Platform Compatibility Section
   ============================================= */

.platform-compatibility {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.platform-compatibility h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1f2937;
}

.platform-logos {
    max-width: 550px;
    margin: 0 auto 2.5rem;
    height: auto;
}

.compatibility-main {
    max-width: 750px;
    width: 100%;
    height: auto;
    margin: 0 auto 3rem;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compatibility-thumbnails {
    margin-top: 3rem;
}

.compatibility-thumbnails h4 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.thumbnail-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    position: relative;
}

.thumbnail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-card:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    font-size: 2rem;
}

.thumbnail-overlay span {
    font-weight: 600;
}

.thumbnail-note {
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

/* =============================================
   What's Included Section
   ============================================= */

.whats-included {
    padding: 80px 0;
    background: #f8fafc;
}

.whats-included h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1f2937;
}

.value-badge {
    background: var(--success-color);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 12px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.item-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.item-icon i {
    font-size: 1.5rem;
}

.included-item:hover .item-icon {
    transform: rotate(-5deg) scale(1.1);
}

.included-item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.value {
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.included-item p {
    margin-top: 0.75rem;
    color: #6b7280;
}

.included-item ul {
    list-style: none;
    margin-top: 1rem;
}

.included-item ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #4b5563;
    font-size: 0.95rem;
}

.included-item ul li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.total-value {
    text-align: center;
    background: #1f2937;
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
}

.total-value h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.price-today {
    color: var(--success-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.savings {
    background: var(--success-color);
    padding: 10px 24px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    font-size: 1rem;
}

/* =============================================
   Pricing Section
   ============================================= */

.pricing {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pricing-urgency {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.02);
}

.pricing-badge {
    background: #ef4444;
    color: white;
    text-align: center;
    padding: 14px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.stock-warning {
    background: #fbbf24;
    color: #92400e;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-content {
    padding: 3rem;
    color: #1f2937;
}

.price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #9ca3af;
    display: block;
    margin-bottom: 8px;
}

.price-current {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #6b7280;
    margin-top: 12px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-cta {
    text-align: center;
}

.secure-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.pricing-faq {
    max-width: 600px;
    margin: 3rem auto 0;
}

.pricing-faq h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.mini-faq p {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mini-faq strong {
    display: block;
    margin-bottom: 4px;
}

/* =============================================
   FAQ Section
   ============================================= */

.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #1f2937;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* =============================================
   Final CTA Section
   ============================================= */

.final-cta {
    padding: 100px 0;
    background: #111827;
    color: white;
    text-align: center;
}

.final-warning {
    background: rgba(239, 68, 68, 0.2);
    border: 3px solid #ef4444;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 550px;
    margin: 0 auto 3rem;
}

.final-warning h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.countdown-final {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 2rem;
    color: #fbbf24;
}

.warning-text {
    font-size: 1.05rem;
    opacity: 0.9;
}

.final-message h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    max-width: 850px;
    margin: 0 auto 3rem;
}

.option {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.option:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.option.recommended {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success-color);
    transform: scale(1.03);
}

.option-number {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.option p {
    margin: 0;
    font-size: 1rem;
}

.final-cta-box {
    max-width: 650px;
    margin: 0 auto;
}

.final-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.final-secure {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.final-secure i {
    font-size: 2rem;
    color: var(--success-color);
}

.final-ps {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.final-ps a {
    color: #fbbf24;
    font-weight: 700;
}

/* =============================================
   Footer
   ============================================= */

.footer {
    background: #030712;
    color: white;
    padding: 60px 0 30px;
    flex-shrink: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.disclaimer {
    margin-top: 12px;
    font-size: 0.85rem;
    font-style: italic;
}

/* =============================================
   Exit Intent Popup
   ============================================= */

.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: popupIn 0.3s ease-out;
}

@keyframes popupIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-popup:hover {
    color: #374151;
}

.popup-header h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #ef4444;
}

.popup-countdown-display {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

#popupCountdown {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
}

.popup-headline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.popup-offer {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.popup-offer h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #92400e;
}

.popup-price {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.special-price {
    color: var(--success-color);
    font-size: 2rem;
    font-weight: 800;
}

.popup-savings {
    color: #6b7280;
    margin-bottom: 8px;
}

.popup-reminder {
    font-size: 0.95rem;
    color: #78716c;
    margin-bottom: 1.5rem;
}

.popup-cta {
    background: var(--success-color) !important;
    font-size: 1.15rem;
    padding: 16px 36px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.popup-urgency {
    font-weight: 600;
    color: #ef4444;
    margin-top: 1rem;
}

/* =============================================
   Mobile Sticky CTA
   ============================================= */

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-cta);
    padding: 12px 15px;
    z-index: 990;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: white;
    color: #ef4444;
    text-align: center;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.05rem;
}

/* =============================================
   Modal
   ============================================= */

.modal {
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #f3f4f6;
}

/* =============================================
   Animations
   ============================================= */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-fade-in {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Staggered animation delays for hero */
.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.launch-special { animation-delay: 0.4s; }
.hero-features { animation-delay: 0.5s; }
.hero-cta { animation-delay: 0.6s; }
.scarcity-notice { animation-delay: 0.7s; }
.hero-visual { animation-delay: 0.4s; }

/* Intersection Observer animations */
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.animated.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --urgency-height: 40px;
        --trust-height: 28px;
        --header-height: 60px;
    }

    /* Urgency Banner Mobile */
    .urgency-banner {
        padding: 8px 10px;
    }

    .urgency-banner p {
        font-size: 0.85rem;
        gap: 6px;
    }

    .urgency-banner .separator {
        display: none;
    }

    #countdown {
        font-size: 0.9rem;
        padding: 2px 8px;
    }

    /* Trust Bar Mobile */
    .trust-bar {
        padding: 6px 0;
    }

    .trust-items {
        gap: 1rem;
        font-size: 0.75rem;
    }

    /* Header Mobile */
    .header .container {
        padding: 0 15px;
        height: var(--header-height);
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }

    /* Mobile Navigation */
    .nav {
        display: none;
        position: fixed;
        top: calc(var(--urgency-height) + var(--trust-height) + var(--header-height));
        right: 0;
        width: 280px;
        height: calc(100vh - var(--urgency-height) - var(--trust-height) - var(--header-height));
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
    }

    body.scrolled .nav {
        top: calc(var(--urgency-height) + var(--header-height));
        height: calc(100vh - var(--urgency-height) - var(--header-height));
    }

    .nav.mobile-active {
        display: flex;
    }

    .nav a {
        padding: 18px 24px;
        border-bottom: 1px solid #f3f4f6;
        width: 100%;
        text-align: left;
        font-size: 1rem;
    }

    .nav .cta-button-small {
        margin: 20px;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Hero Mobile */
    .hero {
        padding-top: calc(var(--urgency-height) + var(--trust-height) + var(--header-height) + 30px);
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-stats-overlay {
        position: static;
        margin: 0 auto 1.5rem;
        display: inline-block;
    }

    .feature-item {
        justify-content: center;
    }

    .secure-text {
        justify-content: center;
    }

    .scarcity-notice {
        text-align: center;
    }

    /* CTA Mobile text */
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }

    /* Sections Mobile */
    .problem-agitation h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .steps-grid,
    .included-grid,
    .features-list {
        grid-template-columns: 1fr;
    }

    .product-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-showcase-item {
        padding: 1.25rem;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 1.5rem auto;
        display: block;
        text-align: center;
    }

    .timeline {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        text-align: left;
        padding-left: 40px;
    }

    .timeline-item::before {
        left: 0;
        transform: none;
    }

    .time {
        padding-top: 0;
    }

    .options {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .price-current {
        font-size: 3.5rem;
    }

    /* Mobile sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }

    main {
        padding-bottom: 80px;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Popup mobile */
    .popup-content {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }

    .popup-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --urgency-height: 36px;
        --trust-height: 24px;
        --header-height: 55px;
    }

    .urgency-banner p {
        font-size: 0.78rem;
    }

    .urgency-banner i:first-child,
    .urgency-banner i:last-child {
        display: none;
    }

    #countdown {
        font-size: 0.85rem;
    }

    .trust-items {
        gap: 0.6rem;
        font-size: 0.7rem;
    }

    .trust-items span {
        gap: 4px;
    }

    .trust-items i {
        font-size: 0.75rem;
    }

    .logo h2 {
        font-size: 1.05rem;
    }

    .logo-icon {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button-primary.large,
    .cta-button-primary.mega {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .product-showcase-grid {
        gap: 0.75rem;
    }

    .product-showcase-item {
        padding: 1rem;
    }

    .product-showcase-item i {
        font-size: 2rem;
    }

    .product-showcase-item span {
        font-size: 0.9rem;
    }

    .thumbnail-grid {
        gap: 0.75rem;
    }

    .pricing-content {
        padding: 2rem 1.5rem;
    }

    .price-current {
        font-size: 3rem;
    }
}

/* =============================================
   Accessibility & Performance
   ============================================= */

/* Focus states */
a:focus,
button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .cta-button,
    .cta-button-primary,
    .cta-button-small {
        border: 2px solid currentColor;
    }
}

/* Touch targets */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .cta-button-primary,
    .cta-button-small {
        min-height: 48px;
    }

    .mobile-menu-btn {
        min-width: 48px;
        min-height: 48px;
    }

    .nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    .urgency-banner,
    .trust-bar,
    .header,
    .mobile-sticky-cta,
    .exit-popup,
    .viewer-notification {
        display: none !important;
    }

    .hero {
        padding-top: 20px;
    }

    main {
        padding-bottom: 0;
    }
}
