:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --secondary-color: #f59e0b;
    --accent-color: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --gradient-1: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 80px 0 120px;
    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"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(245, 158, 11, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.cta-primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.cta-primary:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.cta-huge {
    padding: 22px 50px;
    font-size: 1.3rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    }
    100% {
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    }
}

.hero-guarantee {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-guarantee i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

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

.ebook-mockup {
    width: 350px;
    height: 450px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.mockup-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.ebook-mockup i {
    font-size: 5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.ebook-mockup p {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* For You Section */
.for-you {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.for-you-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.for-you-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.for-you-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.for-you-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Discover Section */
.discover {
    padding: 80px 0;
    background: var(--bg-light);
}

.discover-header {
    margin-bottom: 50px;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.discover-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.discover-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.discover-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.discover-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Preview */
.content-preview {
    padding: 80px 0;
    background: white;
}

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

.chapter-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.chapter-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.1);
    line-height: 1;
}

.chapter-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
}

.chapter-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

/* Transformations */
.transformations {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.transformation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.before-after {
    position: relative;
    height: 250px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.ba-placeholder {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.transformation-info {
    padding: 25px;
}

.transformation-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.transformation-info .role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.transformation-info .result {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.transformation-info .testimony {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-avatar {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* About Author */
.about-author {
    padding: 80px 0;
    background: var(--bg-light);
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.author-image {
    position: relative;
}

.author-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8rem;
    box-shadow: var(--shadow-lg);
}

.author-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.author-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.author-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.author-credentials {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 2;
}

.author-credentials i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.author-bio {
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat span {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Bonuses */
.bonuses {
    padding: 80px 0;
    background: var(--text-dark);
    color: white;
}

.bonuses .section-title {
    color: white;
}

.bonuses .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.bonus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.bonus-badge {
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.bonus-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-value {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.bonus-total {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.bonus-total p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.bonus-today {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.8rem !important;
}

/* Offer Section */
.offer {
    padding: 80px 0;
    background: var(--bg-light);
}

.offer-box {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.urgency-banner {
    background: var(--danger);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.offer-title {
    text-align: center;
    font-size: 2.5rem;
    padding: 40px 0 20px;
    color: var(--text-dark);
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 40px 60px 60px;
}

.price-box {
    background: var(--gradient-1);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.old-price-large {
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 20px;
}

.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.cents {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 10px;
}

.installments {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--secondary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transform: rotate(15deg);
}

.offer-includes {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.offer-includes h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-includes ul {
    list-style: none;
}

.offer-includes li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-includes li i {
    color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 2rem;
    color: var(--text-light);
}

.guarantee-box {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.guarantee-seal {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.guarantee-seal i {
    font-size: 1.8rem;
}

.guarantee-seal span {
    font-size: 0.7rem;
}

.guarantee-text h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.guarantee-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.urgency-timer {
    background: var(--danger);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.urgency-timer strong {
    font-size: 1.5rem;
    font-weight: 900;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    cursor: pointer;
    user-select: none;
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i:last-child {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-1);
    color: white;
}

.final-cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-message {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
}

.final-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
}

.comparison-column h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.sad i {
    color: var(--danger);
}

.happy i {
    color: var(--secondary-color);
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 12px 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-column li:last-child {
    border-bottom: none;
}

.final-guarantee {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-disclaimer .small {
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-benefits {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-placeholder {
        margin: 0 auto;
    }

    .author-bio {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding-left: 0;
        padding-top: 20px;
    }

    .offer-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .final-comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .for-you-grid,
    .discover-grid,
    .preview-grid,
    .transformation-grid,
    .testimonials-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .author-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-huge {
        padding: 18px 30px;
        font-size: 1.1rem;
    }

    .ebook-mockup {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 100px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .amount {
        font-size: 3.5rem;
    }
}
