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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.price-tag {
    display: block;
    max-width: fit-content;
    margin: 20px auto 0;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1e3a5f;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    transition: transform 0.3s ease;
}

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

.problem-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* What You Get Section */
.what-you-get {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.benefit-check {
    width: 30px;
    height: 30px;
    background: #138808;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 20px;
    background: #1e3a5f;
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.price-card {
    max-width: 500px;
    margin: 50px auto;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid #ff6b35;
}

.price-amount {
    font-size: 4em;
    color: #1e3a5f;
    font-weight: 700;
    margin: 20px 0;
}

.price-currency {
    font-size: 0.5em;
    vertical-align: super;
}

.price-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.value-points {
    text-align: left;
    margin: 30px 0;
}

.value-point {
    display: flex;
    align-items: center;
    margin: 15px 0;
    font-size: 1.05em;
}

.value-point::before {
    content: '✓';
    color: #138808;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.3em;
}

/* Trust & Social Proof Section */
.trust-section {
    padding: 80px 20px;
    background: white;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.metric-card {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-top: 4px solid #ff6b35;
    transition: transform 0.3s ease;
}

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

.metric-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.metric-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

/* Case Studies */
.case-studies {
    margin-top: 60px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #138808;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.case-study-tag {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-study-card h4 {
    color: #1e3a5f;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-study-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-result {
    background: #e8f5e9;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95em;
    color: #2e7d32;
    font-weight: 600;
}

/* Reader Insights */
.reader-insights {
    margin-top: 60px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insight-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.insight-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.insight-content h4 {
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.insight-content p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    margin-top: 60px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.badge-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.badge-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
}

.badge-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.badge-item h4 {
    color: #1e3a5f;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.badge-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Active Users Banner */
.active-users {
    margin-top: 60px;
    text-align: center;
}

.active-banner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    color: #1e3a5f;
    border: 2px solid #ff6b35;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #138808;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.8;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

footer a {
    color: #ff6b35;
    text-decoration: none;
    margin: 0 15px;
}

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

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 10px !important;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    header h1 {
        font-size: 1.3em !important;
    }

    .brand-logo {
        height: 40px;
    }

    .brand {
        gap: 8px;
    }

    .brand p {
        font-size: 0.75em;
    }

    .author-image {
        width: 120px;
        height: 120px;
    }

    .author-card {
        padding: 25px;
    }

    .authors-grid {
        gap: 25px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .section-title {
        font-size: 2em;
    }

    .price-amount {
        font-size: 3em;
    }

    /* Reduce spacing in social proof stats on mobile */
    .social-proof {
        padding: 60px 20px;
    }

    .stats-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2.5em;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 1em;
    }
}

/* Styles for legal pages (privacy, terms, refund) */
.header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    opacity: 0.9;
    font-size: 1.1em;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.legal-container h2 {
    color: #1e3a5f;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 3px solid #ff6b35;
    padding-bottom: 10px;
}

.legal-container h3 {
    color: #1e3a5f;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.legal-container p {
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    margin-bottom: 10px;
}

.effective-date {
    background: #fff3e0;
    border-left: 4px solid #ff6b35;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.important-notice {
    background: #fff3e0;
    border: 2px solid #ff6b35;
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.important-notice strong {
    color: #d84315;
    font-size: 1.2em;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.back-link:hover {
    text-decoration: underline;
}

/* Styles for inline elements */
.main-header {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand h1 {
    font-size: 1.5em;
    color: #1e3a5f;
    margin: 0;
    font-weight: 700;
}

.brand p {
    font-size: 0.85em;
    color: #666;
    margin: 0;
}

.header-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white !important;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}

.social-proof .section-title {
    color: white;
}

.price-card .price-title {
    font-size: 1.3em;
    color: #1e3a5f;
    font-weight: 600;
}

.price-card .secure-payment-info {
    margin-top: 20px;
    font-size: 0.95em;
    color: #666;
}

.notice-box {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.notice-box p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
}

.sub-heading {
    text-align: center;
    font-size: 2em;
    margin: 60px 0 40px;
    color: #1e3a5f;
}

.footer-links {
    margin-top: 20px;
}

.overwhelming-box {
    margin-top: 60px;
    padding: 40px;
    background: #fff3e0;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}
.overwhelming-box h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.4em;
}
.overwhelming-box p {
    font-size: 1.1em;
    color: #666;
}

/* Authors Section */
.authors-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.author-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.author-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.author-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #ff6b35;
}

.author-card h3 {
    color: #1e3a5f;
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 600;
}

.author-title {
    color: #ff6b35;
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.author-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.important-notice p {
    margin-top: 15px;
    margin-bottom: 0;
}