/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    padding-top: 80px; /* Account for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-cta {
    background-color: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #b91c1c;
}

/* Typography */
h1, h2, h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #374151;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px 0;
}

.button-center {
    text-align: center;
}

.cta-button.primary {
    background-color: #dc2626;
    color: white;
    border: 2px solid #dc2626;
}

.cta-button.primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: white;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.cta-button.secondary:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.cta-button.final {
    background-color: #dc2626;
    color: white;
    border: 2px solid #dc2626;
    font-size: 1.25rem;
    padding: 20px 40px;
    display: block;
    max-width: 500px;
    margin: 2rem auto;
}

.cta-button.final:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-headline {
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #374151;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.problem-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: #dc2626;
    font-size: 1.1rem;
}

.problem-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Learning Section */
.learning-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.day-card {
    background: #fef2f2;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid #dc2626;
    text-align: left;
}

.day-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.day-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.day-card ul {
    list-style: none;
    padding-left: 0;
}

.day-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.day-card li:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}/* Why Different Section */
.why-different-section {
    padding: 80px 0;
    background-color: #f9fafb;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkmark {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    color: #374151;
}

/* Details Section */
.details-section {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-item {
    text-align: center;
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #fee2e2;
}

.detail-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.detail-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    margin: 0;
    font-weight: 600;
    color: #374151;
}

.limited-seats {
    text-align: center;
    margin: 2rem 0;
}

.limited-seats p {
    font-size: 1.2rem;
    color: #dc2626;
    margin: 0;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.proof-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.proof-item, .bonus-item {
    background: white;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.proof-image, .bonus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.proof-item p, .bonus-item p {
    font-size: 1.1rem;
    margin: 0;
    color: #374151;
}

.bonus-item {
    background: #fef2f2;
    border: 2px solid #fee2e2;
}

/* Registration Section */
.registration-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
}

.registration-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fef2f2;
}

.scarcity-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: white;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.registration-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .problem-section,
    .learning-section,
    .why-different-section,
    .details-section,
    .social-proof-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .days-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid,
    .features-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        max-width: 400px;
        margin: 1rem auto;
    }
    
    .registration-section h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Mobile Image Styles */
    .hero-image img {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .problem-image,
    .day-image,
    .proof-image,
    .bonus-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .day-image {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .day-card,
    .detail-item,
    .proof-item,
    .bonus-item {
        padding: 1.5rem;
    }
    
    .cta-button.final {
        font-size: 1.1rem;
        padding: 16px 24px;
    }
    
    /* Extra Small Mobile Image Styles */
    .hero-image img {
        height: 180px;
    }
    
    .problem-image,
    .day-image,
    .proof-image,
    .bonus-image {
        height: 120px;
    }
    
    .day-card,
    .problem-item,
    .proof-item,
    .bonus-item {
        padding: 1rem;
    }
}