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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF UI Display', 'SF UI Text', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #121720;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
header {
    padding: 30px 0;
    background-color: #121720;
    border-bottom: 1px solid #374151;
    width: 100%;
}

.logo {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 40px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007CFF 0%, #6EC1E4 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 124, 255, 0.3);
}

.discount-text {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.code {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

.expires {
    color: #FF6B6B;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(255, 107, 107, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    display: inline-block;
    line-height: 1.2;
}

.lead {
    font-size: 18px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.4;
}

/* Feature Highlights */
.feature-highlights {
    margin: 0 auto;
    max-width: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: rgb(0, 124, 255);
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-item span {
    color: #d1d5db;
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-highlights {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .highlight-item {
        font-size: 15px;
    }
}

/* Download Page Layout */
.download-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.download-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.course-column {
    display: flex;
    align-items: center;
}

/* Download Section */
.download-section {
    background-color: #1F2937;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #374151;
    text-align: center;
}

.download-section h2 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
}

.download-section p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.download-button {
    display: inline-block;
    background-color: #007CFF;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    margin-bottom: 20px;
}

.download-button:hover {
    background-color: #0056CC;
    text-decoration: none;
    color: white;
}

/* Course Section */
.course-section {
    background-color: #1F2937;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #374151;
    text-align: center;
    width: 100%;
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #374151;
}

.course-section h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.course-title-link {
    text-decoration: none;
    color: inherit;
}

.course-title-link:hover {
    text-decoration: none;
    color: #ffffff;
}

.course-title-link h3 {
    margin: 0 0 15px 0;
}

.course-section p {
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-button {
    display: inline-block;
    background-color: #007CFF;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.course-button:hover {
    background-color: #0056CC;
    text-decoration: none;
    color: white;
}

/* Diagram Image */
.diagram-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.diagram-image.zoomed {
    transform: scale(1.5);
    position: relative;
    z-index: 10;
}

.diagram-caption {
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 60px;
    font-style: italic;
}

/* Responsive for Download Page */
@media (max-width: 1024px) {
    .download-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .course-column {
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .download-section {
        padding: 30px 20px;
    }
    
    .course-section {
        padding: 30px 20px;
    }
    
    .download-layout {
        gap: 30px;
        margin: 40px 0;
    }
}

/* Value Props Section */
.value-props {
    margin: 60px 0 40px;
    text-align: center;
}

.value-props h2 {
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
}

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

.value-item {
    background-color: #1F2937;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #374151;
    text-align: left;
}

.value-item h3 {
    color: #007CFF;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.value-item p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    background-color: #1F2937;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid #374151;
    margin: 40px 0;
    text-align: center;
}

.form-section h2 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
}

.form-section p {
    color: #9ca3af;
    margin-bottom: 30px;
}

.disclaimer {
    color: #6b7280 !important;
    font-size: 12px !important;
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    font-style: italic;
}

.unsubscribe-note {
    color: #9ca3af !important;
    font-size: 11px !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    opacity: 0.8;
}

/* ConvertKit Dark Theme Override */
.formkit-form[data-uid="461bab4e43"] {
    margin: 30px 0;
}

.formkit-form[data-uid="461bab4e43"] .formkit-input {
    background-color: #232323 !important;
    border: 1px solid #374151 !important;
    color: #e5e7eb !important;
    padding: 14px 18px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
}

.formkit-form[data-uid="461bab4e43"] .formkit-input:focus {
    border-color: #007CFF !important;
}

.formkit-form[data-uid="461bab4e43"] .formkit-submit {
    background-color: #007CFF !important;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s ease !important;
}

.formkit-form[data-uid="461bab4e43"] .formkit-submit:hover {
    background-color: #0056CC !important;
}

/* Benefits Section */
.benefits {
    margin: 60px 0 80px;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #ffffff;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit {
    background-color: #232323;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #374151;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #007CFF;
}

.benefit h3 {
    color: #007CFF;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
}

.benefit p {
    color: #9ca3af;
    line-height: 1.6;
}


/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
    margin: 60px 0 0 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #007CFF 0%, #6EC1E4 100%);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 30px rgba(0, 124, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 124, 255, 0.4);
    text-decoration: none;
    color: white;
}

/* Footer */
footer {
    background-color: #000000;
    color: #9ca3af;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #374151;
    width: 100%;
    margin-top: auto;
}

/* Buttons (for ConvertKit form styling) */
button, .formkit-submit {
    background-color: #007CFF;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover, .formkit-submit:hover {
    background-color: #0056CC;
}

/* Input fields (for ConvertKit form styling) */
input[type="email"], input[type="text"] {
    background-color: #232323;
    border: 1px solid #374151;
    color: #e5e7eb;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 16px;
}

input[type="email"]:focus, input[type="text"]:focus {
    outline: none;
    border-color: #007CFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .discount-text {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .popular-content {
        padding: 30px 20px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 25px 20px;
    }
}