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

:root {
    --primary-color: #FF385C;
    --secondary-color: #00A699;
    --dark-gray: #222222;
    --medium-gray: #484848;
    --light-gray: #767676;
    --extra-light-gray: #F7F7F7;
    --border-color: #DDDDDD;
    --success-green: #00A699;
    --warning-orange: #FF9500;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
}

.logo-dollar {
    color: var(--primary-color);
    font-weight: 800;
    margin-right: 8px;
}

.logo-text {
    color: var(--dark-gray);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: normal;
}

.cta-button:hover {
    background: #E31C5F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B6B 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 56, 92, 0.3);
    animation: navBannerPulse 3s ease-in-out infinite;
}

@keyframes navBannerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 56, 92, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(255, 56, 92, 0.6);
    }
}

.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(to bottom, var(--extra-light-gray) 0%, var(--white) 100%);
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--success-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-gray);
    margin-bottom: 24px;
    text-align: center;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 600;
    font-style: italic;
}

.hero-description {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Retro Flip Clock Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #333;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-number {
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 12px 8px;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Courier New', monospace;
    min-width: 50px;
    text-align: center;
    text-shadow: 
        0 0 10px #ff6b35,
        0 0 20px #ff6b35,
        0 0 30px #ff4500;
    box-shadow: 
        inset 0 -2px 0 #444,
        inset 0 2px 0 #111,
        0 0 15px rgba(255,107,53,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
    z-index: 1;
}

.countdown-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.countdown-label {
    font-size: 11px;
    color: #ff6b35;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #ff6b35;
}

.countdown-separator {
    color: #ff6b35;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 10px #ff6b35;
    margin: 0 8px;
    align-self: flex-start;
    margin-top: 12px;
}

@keyframes flipIn {
    0% {
        transform: rotateX(-90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.countdown-number.flip {
    animation: flipIn 0.6s ease-in-out;
}

/* Pre-order Box */
.preorder-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.price-comparison {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    position: relative;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 4px;
}

.price-current {
    font-size: 36px;
    font-weight: 800;
    color: var(--success-green);
}

.price-regular {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-gray);
    text-decoration: line-through;
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--warning-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.main-cta {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.bonus-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 14px;
}

.icon {
    width: 20px;
    height: 20px;
    color: var(--success-green);
}

/* Book Mockup */
.book-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.book-cover {
    width: 280px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

.book-cover:hover {
    transform: rotateY(-8deg) rotateX(1deg) scale(1.02);
}

/* Book Front Cover */
.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: 4px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

/* Override for SaaS Playbook style - make the actual book cover orange */
.book-cover.saas-playbook-style::before {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

/* Book Spine */
.book-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, #0a0f1a 0%, #1a2332 100%);
    transform: rotateY(-90deg);
    transform-origin: right center;
    border-radius: 0 0 0 4px;
    box-shadow: 
        -5px 0 15px rgba(0, 0, 0, 0.3),
        inset 1px 0 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Override spine for SaaS Playbook style */
.book-cover.saas-playbook-style::after {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%) !important;
    box-shadow: 
        -5px 0 15px rgba(0, 0, 0, 0.3),
        inset 1px 0 0 rgba(255, 255, 255, 0.2) !important;
}

/* Book Content Container */
.book-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* CLEAN SAAS PLAYBOOK STYLE - START FRESH */
.book-cover.saas-playbook-style::before {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    box-shadow: none !important;
    border: none !important;
}

.book-cover.saas-playbook-style::after {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%) !important;
}

.book-cover.saas-playbook-style .book-content {
    background: transparent !important;
    padding: 35px 25px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.book-cover.saas-playbook-style .book-content * {
    color: #1f2937 !important;
    text-shadow: none !important;
}

.book-cover.saas-playbook-style .book-top {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.book-cover.saas-playbook-style .book-small-text {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin: 0 0 8px 0 !important;
    display: block !important;
}

.book-cover.saas-playbook-style .book-main-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    text-align: center !important;
    margin: 30px 0 !important;
    line-height: 0.9 !important;
    display: block !important;
    color: #ffffff !important;
}

.book-cover.saas-playbook-style .book-quote-simple {
    font-size: 11px !important;
    font-style: italic !important;
    text-align: center !important;
    margin: 25px 15px 8px 15px !important;
    line-height: 1.4 !important;
    display: block !important;
}

.book-cover.saas-playbook-style .book-quote-author-simple {
    font-size: 9px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin: 0 15px 25px 15px !important;
    display: block !important;
}

.book-cover.saas-playbook-style .book-bottom {
    text-align: center !important;
    margin-top: 30px !important;
}

.book-cover.saas-playbook-style .book-author-large {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    display: block !important;
    letter-spacing: 0.5px !important;
}

.book-cover.saas-playbook-style .book-subtitle-small {
    font-size: 9px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    display: block !important;
    letter-spacing: 0.3px !important;
}

.book-cover.saas-playbook-style .book-brain-waves {
    text-align: center !important;
    margin: 30px 0 !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.book-cover.saas-playbook-style .book-brain-waves svg {
    width: 140px !important;
    height: 40px !important;
    opacity: 0.9 !important;
}

.book-cover.saas-playbook-style .book-subtitle-text {
    font-size: 16px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: #ffffff !important;
    margin: 0 15px !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
}


/* Book Cover Image Styling */
.book-cover-image {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.book-image {
    width: 450px;
    height: 600px;
    object-fit: contain;
    transform: rotateY(-15deg) rotateX(2deg);
    transition: transform 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    max-width: 450px;
    max-height: 600px;
}

.book-image:hover {
    transform: rotateY(-8deg) rotateX(1deg) scale(1.02);
}

/* Removed dark overlay - clean orange background only */

/* Remove all overlays and shading for clean look */
.book-cover.saas-playbook-style .book-content::before {
    display: none !important;
}

.book-cover.saas-playbook-style .book-content::after {
    display: none !important;
}

.book-cover.saas-playbook-style .book-cover::before {
    display: none !important;
}

.book-header {
    padding: 40px 30px 0;
    text-align: center;
}

.book-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
    line-height: 0.9;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.book-hook {
    font-size: 16px;
    color: #e2e8f0;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0;
    padding: 0 10px;
}

.book-middle {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
}

.book-icon {
    width: 120px;
    height: 120px;
    opacity: 0.9;
    animation: brainPulse 3s ease-in-out infinite;
}

.book-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
}

@keyframes brainPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.book-subtitle {
    font-size: 24px;
    color: #fbbf24;
    text-align: center;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.book-footer {
    padding: 0 30px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.book-url {
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.book-author {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 600;
    text-align: center;
}

/* Benefits Section - Completely Rebuilt */
.benefits {
    padding: 80px 0;
    background: var(--white);
    width: 100%;
    clear: both;
    display: block;
    position: relative;
    z-index: 100;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 48px 0;
    color: var(--dark-gray);
    max-width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.benefit-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-gray);
    line-height: 1.3;
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    flex-grow: 1;
}

/* Community Section */
.community {
    padding: 80px 0;
    background: var(--extra-light-gray);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--dark-gray);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--success-green);
}

/* Discord Card */
.discord-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.discord-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.discord-logo {
    width: 48px;
    height: 48px;
    background: #5865F2;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-logo svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.discord-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-gray);
}

.discord-coming-soon {
    margin-bottom: 32px;
    text-align: center;
}

.coming-soon-text {
    font-size: 16px;
    color: var(--medium-gray);
    font-weight: 500;
    background: var(--extra-light-gray);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--success-green);
}

.discord-join-btn {
    width: 100%;
    background: #5865F2;
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.discord-join-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B6B 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.final-cta-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 20px;
}

.final-cta-btn:hover {
    background: var(--extra-light-gray);
}

.price-note {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--white);
    color: var(--dark-gray);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-gray);
}

.footer-logo .logo-dollar {
    color: var(--primary-color);
}

.footer-logo .logo-text {
    color: var(--dark-gray);
}

.footer p {
    color: var(--medium-gray);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits {
        padding: 60px 0;
    }
    
    .book-cover {
        width: 280px;
        height: 420px;
    }
    
    .book-title {
        font-size: 32px;
    }
    
    .book-hook {
        font-size: 14px;
    }
    
    .book-subtitle {
        font-size: 16px;
    }
    
    .release-date-banner {
        font-size: 26px;
        padding: 18px 32px;
        letter-spacing: 1px;
        max-width: 500px;
    }
    
    .release-date-banner::after {
        font-size: 16px;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        position: static;
        width: 100%;
        z-index: auto;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }
    
    .nav-banner {
        order: 1;
        width: 100%;
        text-align: center;
        margin: 8px 0;
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero {
        padding: 40px 0 60px;
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .countdown-container {
        display: none;
    }
    
    .savings-badge {
        display: none !important;
    }
    
    .preorder-box .savings-badge {
        display: none !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 16px;
    }
    
    .savings-badge {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }
    
    .book-image {
        width: 250px !important;
        height: 350px !important;
        max-width: 250px !important;
        max-height: 350px !important;
    }
    
    .preorder-box {
        padding: 20px;
        margin-top: 30px;
    }
    
    .main-cta {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .benefits {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .benefit-card {
        padding: 20px;
        margin-bottom: 0;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    .benefit-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .coming-soon-text {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .book-cover {
        width: 240px;
        height: 360px;
        padding: 24px;
    }
    
    .book-title {
        font-size: 28px;
    }
    
    .book-hook {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .book-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .book-url {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .release-date-banner {
        font-size: 16px;
        padding: 14px 20px;
        margin-bottom: 32px;
        letter-spacing: 0.5px;
        border-radius: 12px;
        max-width: 320px;
    }
    
    .release-date-banner::after {
        font-size: 12px;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .preorder-box {
        padding: 24px;
    }
    
    .price-current {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

/* Success/Cancel Pages */
.success-page, .cancel-page {
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Fix for mobile on success/cancel pages */
@media (max-width: 768px) {
    .success-page, .cancel-page {
        padding: 20px 0 60px;
        margin-top: 0;
    }
}

.success-content, .cancel-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon, .cancel-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    display: block;
}

.success-title, .cancel-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 16px;
}

.success-description, .cancel-description {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-details, .cancel-details {
    background: var(--extra-light-gray);
    padding: 32px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: left;
}

.success-details h3, .cancel-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: center;
}

.cancel-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 16px;
    margin-top: 24px;
}

.success-list, .cancel-list {
    list-style: none;
    padding: 0;
}

.success-list li, .cancel-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.success-list li:last-child, .cancel-list li:last-child {
    border-bottom: none;
}

.check-icon, .benefit-icon {
    width: 20px;
    height: 20px;
    color: #4CAF50;
    flex-shrink: 0;
}

.success-actions, .cancel-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cancel-benefits {
    margin-top: 24px;
}

.cancel-benefits p {
    margin-bottom: 16px;
    color: var(--medium-gray);
}

/* Mobile responsive for success/cancel pages */
@media (max-width: 768px) {
    .success-page, .cancel-page {
        padding: 20px 0 60px !important;
        margin-top: 0 !important;
    }
    
    .success-title, .cancel-title {
        font-size: 36px;
    }
    
    .success-description, .cancel-description {
        font-size: 16px;
    }
    
    .success-details, .cancel-details {
        padding: 24px;
        margin-bottom: 32px;
    }
    
    .success-actions, .cancel-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .success-icon, .cancel-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
}