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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #F65156;
    color: white;
}

.btn-primary:hover {
    background-color: #e03c42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(246, 81, 86, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #F65156;
    border-color: #F65156;
}

.btn-secondary:hover {
    background-color: #F65156;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: #F65156;
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #F65156;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
}

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

.hero-text h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #F65156;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

.quick-win {
    background-color: #fff5f5;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.quick-win h4 {
    color: #F65156;
}

.cta-banner {
    background: linear-gradient(135deg, #F65156 0%, #e03c42 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background-color: #fff8f8;
}

.creator {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 50px;
}

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

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

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

.feature-icon {
    font-size: 2.5rem;
    color: #F65156;
    margin-bottom: 20px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.small-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

/* Different Section */
.different-section {
    padding: 80px 0;
    background-color: #fff;
}

.cycle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.cycle-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff8f8;
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #F65156;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.method-explanation {
    background-color: #fff5f5;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
    text-align: center;
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background-color: #fff8f8;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.transformation-card {
    padding: 40px;
    border-radius: 15px;
}

.transformation-card.before {
    background-color: #fff5f5;
    border: 2px solid #ffcccc;
}

.transformation-card.after {
    background-color: #f0fff4;
    border: 2px solid #c6f6d5;
}

/* Audience Section */
.audience-section {
    padding: 80px 0;
    background-color: #fff;
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

.audience-note {
    background-color: #fff5f5;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.reason {
    background: #fff8f8;
    padding: 25px;
    border-radius: 10px;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background-color: #fff8f8;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.result-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.result-icon {
    font-size: 2.5rem;
    color: #F65156;
    margin-bottom: 20px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.timeline-step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
}

.timeline-marker {
    background-color: #F65156;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.addons {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
}

.addon-note {
    font-style: italic;
    color: #666;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #fff;
}

.pricing-card {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    border: 2px solid #F65156;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F65156;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.price {
    margin: 20px 0;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #F65156;
}

.period {
    font-size: 1.2rem;
    color: #666;
}

.launch-price {
    color: #666;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding-left: 30px;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F65156;
    font-weight: bold;
}

.guarantee {
    background-color: #fff5f5;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

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

.limited-spots {
    max-width: 800px;
    margin: 50px auto 0;
}

.spots-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff5f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.spots-alert i {
    color: #F65156;
    font-size: 1.5rem;
}

.spots-counter {
    text-align: center;
}

.spots-number {
    font-size: 2rem;
    font-weight: 700;
    color: #F65156;
}

.spots-bar {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 400px;
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    background: linear-gradient(90deg, #F65156 0%, #e03c42 100%);
    border-radius: 5px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F65156 0%, #e03c42 100%);
    color: white;
}

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

.final-cta-content h2 {
    color: white;
}

.final-call {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff8f8;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background-color: #fff8f8;
}

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

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

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

/* Closing Section */
.closing-section {
    padding: 80px 0;
    background-color: #fff;
}

.closing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.closing-cta {
    margin-top: 40px;
}

.closing-note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-nav h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #F65156;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #e03c42;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .problem-content,
    .audience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid,
    .cycle-grid,
    .results-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transformation-grid,
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-cta,
    .final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid,
    .cycle-grid,
    .results-grid,
    .reasons-grid,
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .problem-section,
    .solution-section,
    .different-section,
    .transformation-section,
    .audience-section,
    .results-section,
    .pricing-section,
    .final-cta-section,
    .faq-section,
    .closing-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .transformation-card,
    .pricing-card {
        padding: 25px;
    }
    
    .cta-banner,
    .method-explanation,
    .addons,
    .guarantee {
        padding: 25px;
    }
}