@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

a {
    color: #1a56db;
    text-decoration: underline;
}

a:hover {
    color: #1e40af;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== LAYOUT ===== */
.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #000;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #000;
}

p {
    margin-bottom: 16px;
}

strong, b {
    font-weight: 700;
    color: #000;
}

em, i {
    font-style: italic;
}

/* ===== HOOK LINE ===== */
.hook-line {
    font-size: 1rem;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

/* ===== AUTHOR INTRO ===== */
.author-intro {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    padding: 20px;
    background: #f9fafb;
    border-left: 4px solid #dc2626;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #334155);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.author-meta p {
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.author-meta .author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #000;
}

.author-meta .author-title {
    color: #6b7280;
    font-size: 0.85rem;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
    flex-shrink: 0;
}

/* ===== CONTENT IMAGES ===== */
.content-image {
    width: 100%;
    border-radius: 8px;
    margin: 24px 0;
    border: 1px solid #e5e7eb;
}

.product-image {
    width: 100%;
    max-width: 500px;
    margin: 24px auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* ===== TESTIMONIAL IMAGES ===== */
.testimonial-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.testimonial-images img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    object-fit: cover;
}

@media (max-width: 640px) {
    .testimonial-images {
        grid-template-columns: 1fr;
    }
}

/* ===== DIVIDERS ===== */
hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 40px 0;
}

hr.thick {
    border-top: 3px solid #000;
    margin: 48px 0;
}

/* ===== FREE TIPS BOX ===== */
.tips-box {
    background: #fffbeb;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 28px 24px;
    margin: 32px 0;
}

.tips-box h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.tips-box ol {
    padding-left: 20px;
}

.tips-box li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tips-box li strong {
    color: #92400e;
}

/* ===== CTA BUTTON ===== */
.cta-block {
    text-align: center;
    margin: 40px 0;
}

.cta-btn {
    display: inline-block;
    background: #dc2626;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.45);
    color: #fff !important;
}

.cta-btn-secondary {
    background: #16a34a;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
}

.cta-btn-secondary:hover {
    background: #15803d;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
}

.cta-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

/* ===== TESTIMONIAL QUOTE ===== */
.testimonial {
    margin: 28px 0;
    padding: 20px 24px;
    background: #f0fdf4;
    border-left: 4px solid #16a34a;
    font-style: italic;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial .author {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 700;
    color: #000;
    font-size: 0.9rem;
}

/* ===== STORY SECTION ===== */
.story-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px 28px;
    margin: 32px 0;
}

.story-section h3 {
    margin-top: 0;
    color: #000;
}

/* ===== PRODUCT REVEAL ===== */
.product-box {
    border: 3px solid #000;
    border-radius: 8px;
    padding: 32px 28px;
    margin: 40px 0;
    text-align: center;
}

.product-box h2 {
    margin-top: 0;
    font-size: 1.6rem;
}

.product-box .subtitle {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 24px;
}

.module-list {
    text-align: left;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.module-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.module-list li:last-child {
    border-bottom: none;
}

.module-list .check {
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    background: #fffbeb;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 28px 24px;
    margin: 32px 0;
}

.bonus-section h3 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 20px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #fef3c7;
}

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

.bonus-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-text strong {
    display: block;
    color: #000;
    font-size: 0.95rem;
}

.bonus-text span {
    font-size: 0.85rem;
    color: #6b7280;
}

.bonus-value {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px dashed #f59e0b;
    font-weight: 700;
    color: #92400e;
    font-size: 1rem;
}

/* ===== PRICING ===== */
.pricing-box {
    border: 3px solid #dc2626;
    border-radius: 8px;
    padding: 32px 28px;
    margin: 40px 0;
    text-align: center;
    position: relative;
}

.pricing-box::before {
    content: 'FLASH SALE';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: #fff;
    padding: 4px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.pricing-original {
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-current {
    font-size: 2.8rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.pricing-save {
    font-size: 0.95rem;
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-items {
    text-align: left;
    margin: 20px 0;
}

.pricing-items .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-items .item .check {
    color: #16a34a;
    font-weight: 700;
}

/* ===== GUARANTEE ===== */
.guarantee-box {
    background: #f0fdf4;
    border: 2px solid #16a34a;
    border-radius: 8px;
    padding: 28px 24px;
    margin: 32px 0;
    text-align: center;
}

.guarantee-box .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.guarantee-box h3 {
    color: #166534;
    margin-top: 0;
    margin-bottom: 12px;
}

.guarantee-box p {
    color: #374151;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== PS SECTIONS ===== */
.ps-section {
    margin-top: 40px;
}

.ps-section p {
    font-size: 0.95rem;
}

.ps-label {
    font-weight: 800;
    color: #000;
    font-size: 1rem;
}

/* ===== SOCIAL PROOF BAR ===== */
.proof-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 32px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.proof-item {
    text-align: center;
}

.proof-item .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

.proof-item .label {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ===== PAIN POINTS LIST ===== */
.pain-list {
    list-style: none;
    margin: 20px 0;
}

.pain-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: #374151;
}

.pain-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== SKILL LIST ===== */
.skill-list {
    list-style: none;
    margin: 20px 0;
}

.skill-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: #374151;
}

.skill-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== RESULT LIST ===== */
.result-list {
    list-style: none;
    margin: 20px 0;
}

.result-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}

.result-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* ===== MINIMAL FOOTER ===== */
.footer-minimal {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    line-height: 1.8;
}

.footer-minimal a {
    color: #9ca3af;
    text-decoration: underline;
}

.footer-minimal a:hover {
    color: #6b7280;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b7280;
    font-size: 0.85rem;
    text-decoration: none;
}

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

/* ===== VIDEO EMBED ===== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 24px 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== URGENCY TEXT ===== */
.urgency {
    color: #dc2626;
    font-weight: 700;
}

.highlight {
    background: #fef08a;
    padding: 2px 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .page {
        padding: 24px 16px 60px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .cta-btn {
        display: block;
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .proof-bar {
        gap: 20px;
    }

    .pricing-current {
        font-size: 2.2rem;
    }

    .author-intro {
        flex-direction: column;
        text-align: center;
    }
}
