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

:root {
    --burgundy: #830b48;
    --burgundy-dark: #5a0832;
    --gold: #d4af37;
    --gold-light: #f0d879;
    --light-pink: #fef5f8;
    --white: #ffffff;
    --dark-gray: #2d2d2d;
    --light-gray: #f8f8f8;
    --text-gray: #555555;
    --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);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
}

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

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

/* Typography */
h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-headline {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--burgundy);
}

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

/* Buttons */
.cta-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:active {
    transform: scale(0.98);
}

.primary-cta {
    background: var(--gold);
    color: var(--white);
}

.primary-cta:hover {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.secondary-cta {
    background: var(--burgundy);
    color: var(--white);
}

.secondary-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.gold-cta {
    background: var(--gold);
    color: var(--burgundy);
    font-size: 1.2rem;
    padding: 20px 50px;
}

.gold-cta:hover {
    background: var(--white);
    transform: scale(1.05);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '💝';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    right: -50px;
    top: -50px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

.hero-headline {
    font-size: 3.5rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.trust-element {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.5rem;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    font-weight: 600;
    color: var(--burgundy);
}

.trust-icon {
    background: var(--gold);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.countdown-inline {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-label {
    font-weight: 600;
    color: var(--burgundy);
}

.countdown-timer-inline {
    display: flex;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.countdown-timer-inline span {
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 1.1rem;
}

.scarcity-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    padding: 8px 15px;
    border-radius: 30px;
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    width: fit-content;
}

.fire-icon {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 400px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
    object-fit: cover;
}

/* Remove placeholder styles - using actual images now */

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Opportunity Section */
.opportunity {
    padding: 80px 0;
    background: var(--white);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.book-cover img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(131, 11, 72, 0.2);
    transition: transform 0.3s ease;
}

.book-cover img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.opportunity-list {
    list-style: none;
}

.opportunity-list li {
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: var(--dark-gray);
}

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

/* Done-For-You Section */
.done-for-you {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 3rem 0;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.mockup-preview {
    margin: 3rem 0;
    text-align: center;
}

.mockup-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.done-for-you .secondary-cta {
    display: block;
    margin: 2rem auto 0;
    width: fit-content;
}

/* Earnings Section */
.earnings {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
}

.earnings-calculator {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 3rem auto;
    max-width: 700px;
}

.earnings-example {
    text-align: center;
}

.earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--light-pink);
}

.earnings-row:last-of-type {
    border-bottom: none;
}

.calc-label {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.calc-result {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--burgundy);
    font-family: 'Montserrat', sans-serif;
}

.earnings-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-gray);
}

.commission-tiers {
    margin-top: 4rem;
}

.commission-tiers h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.tier-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

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

.tier-featured {
    background: linear-gradient(135deg, var(--burgundy) 0%, #a01558 100%);
    color: var(--white);
    transform: scale(1.05);
}

.tier-featured .tier-badge,
.tier-featured .tier-percentage,
.tier-featured .tier-amount,
.tier-featured .tier-requirement {
    color: var(--white);
}

.tier-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-percentage {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin: 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.tier-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 10px;
}

.tier-requirement {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.earnings .primary-cta {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Proof of Readiness Section */
.proof-section {
    padding: 80px 0;
    background: var(--white);
}

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

.proof-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.proof-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.proof-card h3 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 0.75rem;
}

.proof-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
}


/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 3rem 0;
}

.step-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: var(--light-pink);
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3.5rem;
    margin: 20px 0;
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-gray);
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.payment-note {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.how-it-works .primary-cta {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Who For Section */
.who-for {
    padding: 80px 0;
    background: var(--light-gray);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 3rem 0;
}

.criteria-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.criteria-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(131, 11, 72, 0.1);
}

.criteria-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.red-flag {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    font-weight: 600;
}

/* Urgency Section */
.urgency {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, #5a0832 100%);
    position: relative;
    overflow: hidden;
}

.urgency::before {
    content: '⏰';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    left: -50px;
    bottom: -50px;
}

.white-text {
    color: var(--white);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 3rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.countdown-label-text {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.urgency-points {
    text-align: center;
    margin: 3rem 0;
}

.urgency-points p {
    color: var(--white);
    font-size: 1.3rem;
    margin: 15px 0;
    font-weight: 500;
}

.urgency .gold-cta {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--burgundy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-pink);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    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;
    background: var(--light-gray);
}

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

.faq-answer p {
    padding: 25px 30px;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 50%, var(--light-pink) 100%);
    text-align: center;
}

.final-cta .section-headline {
    font-size: 3rem;
}

.final-cta .large-cta {
    margin: 2rem auto;
    display: block;
    width: fit-content;
}

.cta-details {
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(131, 11, 72, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--burgundy);
    font-size: 0.95rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    z-index: 999;
    display: none;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .cta-button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--burgundy);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--burgundy);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Google Form Container */
.google-form-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.google-form-container iframe {
    width: 100%;
    min-height: 500px;
    /* Height will be handled by the iframe attribute but CSS ensures responsiveness */
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-content h2 {
    margin-bottom: 1.5rem;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .section-headline {
        font-size: 2rem;
    }

    .section-subheadline {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

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

    .book-cover img {
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tier-featured {
        transform: scale(1);
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .sticky-cta {
        display: block;
    }

    .modal-content {
        padding: 30px 25px;
    }
}

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

    .section-headline {
        font-size: 1.7rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label-text {
        font-size: 0.8rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Adjust WhatsApp button position on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
