:root {
    --primary: #2ECC71;
    /* High-converting green */
    --primary-dark: #27AE60;
    --secondary: #0D9488;
    /* Premium Teal */
    --accent: #F39C12;
    /* High-contrast CTA orange */
    --accent-dark: #E67E22;
    --dark: #1F2937;
    --darker: #111827;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --text-muted: #6B7280;
    --surface: rgba(255, 255, 255, 0.05);
    --glass: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--darker);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.btn {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #b91c1c, #dc2626);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Reference Specific Hero (Mobile First) */
.hero-mobile-target {
    position: relative;
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--darker);
    overflow: hidden;
}

.background-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.overlay-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    margin-top: 40px;
}

.teal-box {
    background: rgba(13, 148, 136, 0.9);
    border-radius: 20px 20px 0 0;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.teal-box h1 {
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
    text-transform: none;
}

.top-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Times New Roman', serif;
}

.promo-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.ebook-showcase {
    position: relative;
    padding-top: 20px;
}

.ebook-mockup-alt {
    position: relative;
    width: 180px;
    margin: 0 auto;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
}

.ebook-mockup-alt img {
    width: 100%;
    height: auto;
    filter: brightness(0.5);
    border-bottom: 8px solid #D4AF37;
    /* Gold bottom edge like reference */
}

.ebook-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.ebook-text h4 {
    font-size: 1.1rem;
}

.ebook-text h5 {
    font-size: 0.8rem;
    color: #eee;
}

.ebook-text h6 {
    font-size: 0.9rem;
}

.seal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: #C0392B;
    border-radius: 50%;
    border: 3px dashed white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.seal-badge span:first-child {
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1;
}

.seal-badge span:last-child {
    font-weight: 700;
    font-size: 0.7rem;
}

.white-card {
    background: white;
    border-radius: 0 0 20px 20px;
    padding: 30px 25px;
    color: #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.checkmark-list {
    list-style: none;
    margin-bottom: 25px;
}

.checkmark-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
}

.checkmark-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    background: #F1C40F;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
}

.btn-orange {
    display: block;
    width: 100%;
    padding: 18px 10px;
    background: #E67E22;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 0 #D35400;
    transition: transform 0.1s;
}

.btn-orange:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #D35400;
}

.helper-text {
    font-size: 0.75rem;
    color: #777;
    margin-top: 15px;
    text-align: center;
}

.logo-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    opacity: 0.8;
}

.strip-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
}

/* Desktop Adjustment */
@media (min-width: 992px) {
    .overlay-container {
        max-width: 500px;
        margin-top: 80px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

.cta-group {
    margin-bottom: 30px;
}

.cta-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* eBook Mockup Styling */
.ebook-container {
    perspective: 1000px;
}

.ebook-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.ebook-mockup:hover {
    transform: rotateY(-5deg) rotateX(0deg);
}

.ebook-mockup img {
    width: 100%;
    height: auto;
    border-radius: 4px 20px 20px 4px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    filter: brightness(0.4);
}

.ebook-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    pointer-events: none;
}

.ebook-title-overlay h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.ebook-title-overlay p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-item img {
    width: 18px;
    height: 18px;
}

/* Logo Grid */
.as-seen-on {
    background: var(--surface);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.as-seen-on p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Outfit';
}

/* Benefits */
.benefits {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Preview Section */
.preview {
    padding: 100px 0;
    background: var(--surface);
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mockup-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.preview-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.checklist {
    list-style: none;
    margin: 30px 0;
}

.checklist li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.stars {
    color: #F1C40F;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-card .user {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

/* How it Works */
.how-it-works {
    padding: 100px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.4);
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)),
        url('https://images.unsplash.com/photo-1547592166-23ac45744acd?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
}

.cta-box {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-box p {
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.guarantee {
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #000;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: var(--white);
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-badges {
        justify-content: center;
    }

    .preview-layout {
        grid-template-columns: 1fr;
    }

    .preview-img {
        order: 2;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .btn {
        width: 100%;
    }

    .logo-grid {
        gap: 20px;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.reveal.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.reveal.active .reveal-item:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.active .reveal-item:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.active .reveal-item:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.active .reveal-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* Enhanced Hero Animation */
.hero-text h1,
.hero-text .subheadline,
.hero-text .badge,
.hero-text .cta-group,
.hero-text .trust-badges {
    opacity: 0;
    transform: translateX(-30px);
    animation: revealIn 0.8s forwards;
}

.hero-text .badge {
    animation-delay: 0.1s;
}

.hero-text h1 {
    animation-delay: 0.2s;
}

.hero-text .subheadline {
    animation-delay: 0.3s;
}

.hero-text .cta-group {
    animation-delay: 0.4s;
}

.hero-text .trust-badges {
    animation-delay: 0.5s;
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glassmorphism Refinement */
.benefit-card,
.testimonial-card,
.cta-box {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
}

/* Premium Button Glow */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 100%;
}