/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Highlight Elements */
.highlight {
    background: linear-gradient(120deg, #ff6b35 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.magic-highlight {
    background: linear-gradient(120deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.underline {
    text-decoration: underline;
    text-decoration-color: #ff6b35;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 1.3rem;
}

.cta-container {
    text-align: center;
    margin: 40px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin-bottom: 30px;
    color: white;
}

.subline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.callout-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 20px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.callout-icon {
    font-size: 1.5rem;
}

.callout-text {
    font-size: 1.1rem;
    text-align: left;
}

.punchline {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.problem-points {
    max-width: 800px;
    margin: 0 auto 40px;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.point-icon {
    font-size: 1.2rem;
    margin-top: 5px;
}

.pattern-interrupt {
    background: #1a1a2e;
    color: white;
    padding: 30px;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Magic White Box Section */
.magic-box {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.magic-box h2 {
    color: white;
    margin-bottom: 40px;
}

.magic-content {
    max-width: 800px;
    margin: 0 auto;
}

.magic-box-visual {
    margin: 40px 0;
}

.white-box {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    max-width: 400px;
    margin: 0 auto;
}

.white-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4f46e5;
}

.magic-benefits {
    margin: 40px 0;
}

.magic-benefits p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Confidence Section */
.confidence {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.confidence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.confidence-before, .confidence-after {
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.confidence-before {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
}

.confidence-after {
    background: #dcfce7;
    border-left: 4px solid #22c55e;
}

.confidence-before h3, .confidence-after h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.confidence-before ul, .confidence-after ul {
    list-style: none;
}

.confidence-before li, .confidence-after li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 10px;
}

/* Hidden Cost Section */
.hidden-cost {
    padding: 80px 0;
    background: #1a1a2e;
    color: white;
    text-align: center;
}

.hidden-cost h2 {
    color: white;
}

.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.cost-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cost-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Same Old Section */
.same-old {
    padding: 80px 0;
    background: #f1f5f9;
    text-align: center;
}

.same-old-content {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.same-old-content p {
    margin-bottom: 20px;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.testimonial {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #ff6b35;
}

/* Future Self Section */
.future-self {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.future-self h2 {
    color: white;
}

.future-scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.scenario {
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.scenario-a {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
}

.scenario-b {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
}

.scenario h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.scenario ul {
    list-style: none;
}

.scenario li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 10px;
}

/* Fork in the Road Section */
.fork-road {
    padding: 80px 0;
    background: #ff6b35;
    color: white;
    text-align: center;
}

.fork-road h2 {
    color: white;
}

.fork-content {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.fork-content p {
    margin-bottom: 25px;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.system-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .callout-box {
        flex-direction: column;
        text-align: center;
    }
    
    .confidence-grid,
    .future-scenarios {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid,
    .testimonials,
    .cost-breakdown {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .punchline {
        font-size: 1.1rem;
    }
    
    .pattern-interrupt {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    section {
        padding: 50px 0;
    }
}

/* Animation and Scroll Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
