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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #fdfcfb;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.program-header {
    font-size: 16px;
    font-weight: 600;
    color: #e29578;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
}

.logo-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
    margin-top: 2px;
}

.cta-button {
    background: #2d3748;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.cta-button:hover {
    background: #1a202c;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: white;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a202c;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero content layout */
.hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto 48px;
}

/* Divider styling */
.section-divider {
    width: 100px;
    height: 2px;
    background: #e29578;
    margin: 40px auto;
    border: none;
}

.hero-description {
    flex: 0 0 380px;
    font-size: 18px;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

.cohort-info {
    background: #fdf8f3;
    border: 1px solid #f1dcc9;
    border-radius: 16px;
    padding: 32px;
    border-left: 4px solid #e29578;
    flex: 0 0 380px;
}

.cohort-info h3 {
    color: #1a202c;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.cohort-info p {
    color: #4a5568;
    font-size: 16px;
}

/* Minimal geometric decorations */
.hero-decoration {
    position: absolute;
    top: 5%;
    right: 2%;
    width: 180px;
    height: 180px;
    opacity: 0.4;
    z-index: -1;
}

/* Ensure text content stays above decorations */
.hero .container {
    position: relative;
    z-index: 1;
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-alt {
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: #1a202c;
    letter-spacing: -0.025em;
}

/* Meet Your Coach Section */
.about-card {
    background: white;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.about-card p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.coach-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    margin-bottom: 24px;
    object-fit: cover; /* This ensures the image fills the circle properly */
    object-position: center; /* Centers the image within the circle */
}

/* Target Audience */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
}

.target-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.target-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.target-item h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.target-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    position: relative;
}

.feature-card h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #e29578;
}

.feature-card:hover h4 {
    color: #e29578;
}

.feature-highlight {
    /* Remove permanent highlight - only show on hover now */
}

.feature-highlight h4 {
    color: #1a202c;
}

/* Icons for features */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-group { background: #fdf8f3; }
.icon-design { background: #fdf8f3; }
.icon-coaching { background: #fef3f0; }
.icon-support { background: #fdf8f3; }
.icon-community { background: #fdf8f3; }
.icon-evolving { background: #fdf8f3; }

/* Pricing Structure Section */
.pricing-structure {
    background: #fdf8f3;
    border-top: 1px solid #f1dcc9;
    border-bottom: 1px solid #f1dcc9;
    padding: 60px 0;
}

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

.pricing-breakdown h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 32px;
}

.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-detail {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.pricing-detail h4 {
    font-weight: 600;
    color: #e29578;
    margin-bottom: 8px;
    font-size: 18px;
}

.pricing-detail p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 14px;
}

.pricing-note {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Always 2 columns */
    gap: 32px;
    margin-top: 48px;
}

/* Add responsive behavior for mobile */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}

.testimonial-full-width {
    grid-column: 1 / -1; /* Span all columns */
    max-width: 800px; /* Optional: limit max width for better readability */
    margin: 0 auto; /* Center the testimonial */
}

.testimonial-bubble {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 4px solid #e29578;
}

.testimonial-bubble::before {
    content: '"';
    font-size: 60px;
    color: #e29578;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a202c;
    font-size: 14px;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.success-story {
    background: #fdf8f3;
    border-radius: 16px;
    padding: 32px;
    border-top: 4px solid #e29578;
}

.success-story h4 {
    color: #1a202c;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 600;
}

.success-story p {
    color: #4a5568;
    line-height: 1.6;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 48px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-answer {
    color: #4a5568;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 48px;
}

.timeline-item {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e29578;
}

.timeline-week {
    font-weight: 600;
    color: #e29578;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.timeline-title {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    font-size: 18px;
}

.timeline-description {
    color: #4a5568;
    line-height: 1.6;
}

/* Application Process */
.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.application-step {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.step-title {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    font-size: 18px;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 14px;
}

/* Pricing Section */
/* Pricing Section - UPDATED */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Removed overflow: hidden and shimmer animation */
}

/* Remove the shimmer animation that was blocking clicks */
/* .pricing-card::before - REMOVED */

.price {
    font-size: 56px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.price-period {
    color: #4a5568;
    font-size: 18px;
    margin-bottom: 30px;
}

.pricing-description {
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.large-cta {
    background: #e29578;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 280px;
    position: relative; /* Ensure it's above any background elements */
    z-index: 10;
}

.large-cta:hover {
    background: #d18769;
    transform: translateY(-1px);
}

/* Footer */
footer {
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    margin-top: 80px;
    background: white;
}

.footer-content {
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .target-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-card,
    .pricing-card {
        padding: 32px 24px;
    }
    
    .cohort-info {
        margin: 32px auto;
        padding: 24px;
    }

    .hero-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .cohort-info {
        flex: none;
    }
}

@media (max-width: 900px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
}

/* Subtle animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
