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

:root {
    --bg-primary: #fafafa;
    --accent-green: #4CAF50;
    --accent-green-dark: #45a049;
    --accent-green-light: #81c784;
    --accent-orange: #ff6b35;
    --text-white: #ffffff;
    --text-blue: #0066cc;
    --text-blue-dark: #004499;
    --text-dark-gray: #2d2d2d;
    --text-gray: #666666;
    --input-bg: #f5f5f5;
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-dark-gray);
    line-height: 1.7;
    font-size: 18px;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-blue);
}

h1.hero-headline {
    font-size: 2.75rem !important;
}

.section-headline {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-headline.center {
    text-align: center;
}

.section-headline.small {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #ffffff 100%);
}

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

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #ff8c5a);
    color: var(--text-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-headline {
    font-size: 2.75rem !important;
    margin-bottom: 1rem;
    color: var(--text-blue);
    line-height: 1.1;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover {
    max-width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    color: var(--text-white);
    box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.5);
}

.cta-button.secondary {
    background: var(--text-blue);
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

.cta-button.secondary:hover {
    background: var(--text-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    text-align: center;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.problem-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    display: flex;
    flex-direction: column;
}

.problem-intro {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-text-para {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-section strong {
    color: var(--text-blue);
    font-weight: 700;
}

.problem-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stress-trader-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Solution Teaser Section */
.solution-teaser-section {
    padding: 4rem 0;
    background-color: var(--bg-primary);
}

.solution-teaser-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-teaser-text {
    display: flex;
    flex-direction: column;
}

.solution-teaser-para {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark-gray);
    margin: 0;
}

.solution-teaser-section strong {
    color: var(--text-blue);
    font-weight: 700;
}

.solution-teaser-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-teaser-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.trading-chart {
    max-width: 100%;
    height: auto;
    display: block;
}

.insight-image {
    max-width: 100%;
    height: auto;
    display: block;
}


.testimonials-image {
    margin-bottom: 3rem;
    text-align: center;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background-image: url('images/insight.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 250, 0.85);
    z-index: 0;
}

.solution-section .container {
    position: relative;
    z-index: 1;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.solution-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.solution-text em {
    color: var(--text-blue);
    font-style: normal;
}

.book-preview {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border-color: var(--accent-green);
    grid-column: span 2;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark-gray);
}

.testimonial-source {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.testimonial-source a {
    color: var(--text-blue);
    text-decoration: none;
}

.testimonial-source a:hover {
    text-decoration: underline;
}

/* About the Author Section */
.about-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #4a148c 0%, #0066cc 100%);
}

.about-section .section-headline {
    color: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}

.about-content p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Value Section */
.value-section {
    padding: 5rem 0 2rem;
    background-color: var(--bg-primary);
}

.value-intro {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-gray);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    width: 72px;
    height: 72px;
    stroke-width: 2.5;
}

.feature-icon i svg {
    stroke: #4CAF50 !important;
    color: #4CAF50 !important;
    width: 100% !important;
    height: 100% !important;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-blue);
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.bonus-box {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 90, 0.05));
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.bonus-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bonus-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-blue);
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
}

.bonus-content p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

.value-transition {
    text-align: center;
    margin: 40px 0 20px;
    padding: 20px;
    background: #fff3e0;
    border-radius: 12px;
    border: 2px solid #ff9800;
}

.transition-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 8px;
}

.transition-subtext {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-dark-gray);
}

.value-note {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.pricing-comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.pricing-comparison {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.value-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    border-top: 2px solid var(--text-blue);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-weight: 700;
}

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

.price-value {
    color: var(--text-blue);
    font-weight: 600;
}

.current-pricing {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.1));
    border-radius: 12px;
    border: 2px solid var(--text-blue);
}

.old-price {
    font-size: 2rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.pricing-note {
    font-size: 1.125rem;
    color: var(--text-dark-gray);
}

/* Bonuses Section */
.bonuses-section {
    padding: 2rem 0 5rem;
    background-color: #ffffff;
}

.bonuses-intro {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-blue);
    margin-bottom: 1rem;
}

.bonuses-description {
    font-size: 1.125rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
    color: var(--text-dark-gray);
}

.bonuses-value-note {
    font-size: 1.125rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--text-dark-gray);
}

.bonuses-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bonus-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.bonus-image-placeholder {
    width: 85%;
    min-height: 250px;
    background-color: var(--bg-primary);
    border: 2px dashed var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.bonus-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    font-style: italic;
}

.bonus-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bonus-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-blue);
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bonus-title i {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
    color: var(--accent-green);
    flex-shrink: 0;
}

.bonus-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin: 0;
    font-style: italic;
}

.bonus-content .bonus-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    text-align: left;
}

.bonus-value {
    font-size: 1rem;
    color: var(--text-blue);
    margin: 0;
    padding-top: 0.5rem;
    border-top: 2px solid var(--accent-green);
}

.bonuses-summary {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.1));
    border: 2px solid var(--text-blue);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.bundle-mockup-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bundle-mockup {
    max-width: 100%;
    height: auto;
    display: block;
}

.bonuses-value-breakdown {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.bonus-value-item {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark-gray);
    margin-bottom: 0.75rem;
}

.bonus-value-item:last-of-type {
    margin-bottom: 1.5rem;
}

.bonuses-total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-blue);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--text-blue);
}

.bonuses-combined-value {
    font-size: 1.625rem;
    line-height: 1.8;
    color: var(--text-dark-gray);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.stack-recap {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--text-dark-gray);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 102, 204, 0.1));
    border-radius: 8px;
    border: 2px solid var(--text-blue);
}

.stack-recap strong {
    color: var(--text-blue);
    font-weight: 700;
}

.bonuses-delivery {
    text-align: center;
    padding: 2rem 0 0;
    margin-top: 2rem;
    border-top: 2px solid var(--text-blue);
}

.bonuses-delivery-note {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark-gray);
    margin-bottom: 1rem;
}

.bonuses-delivery .cta-button {
    margin-top: 1.5rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    border: 3px solid var(--accent-green);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-headline {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-blue);
}

.guarantee-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-dark-gray);
}

.guarantee-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-blue);
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--text-blue), var(--text-blue-dark));
    color: var(--text-white);
    text-align: center;
}

.cta-headline {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-section .cta-note {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Work Sans', sans-serif;
}

.faq-question:hover {
    color: var(--text-blue-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #ffffff;
    border-top: 2px solid var(--border-light);
}

.footer-ps {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark-gray);
    font-style: italic;
}

.footer-links {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.footer-links a {
    color: var(--text-blue);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-cred {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-dark-gray);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.disclaimer strong {
    color: var(--text-dark-gray);
    font-weight: 700;
}

.disclaimer strong:first-child {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-blue);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .solution-content,
    .problem-content,
    .solution-teaser-content,
    .pricing-comparison-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-headline {
        font-size: 2.25rem !important;
    }
    
    .hero-subheadline {
        font-size: 1.5rem;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
    
    
    .cta-headline {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section,
    .problem-section,
    .solution-teaser-section,
    .solution-section,
    .testimonials-section,
    .about-section,
    .value-section,
    .bonuses-section,
    .guarantee-section,
    .cta-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .bonus-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bonus-image-placeholder {
        min-height: 200px;
    }
    
    .bonuses-summary {
        padding: 2rem;
    }
    
    .hero-headline {
        font-size: 2.25rem !important;
    }
}
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .cta-headline {
        font-size: 1.75rem;
    }
    
    .new-price {
        font-size: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        grid-column: span 1;
    }
}
