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

/* Accessibility Helpers */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hidden {
    display: none;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cta-subtext {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: #2d3748;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-header {
    background: #f8f9fa;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    font-weight: 600;
    color: #495057;
}

.mockup-content {
    padding: 2rem;
}

.progress-bar {
    background: #e9ecef;
    height: 8px;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    border-radius: 4px;
    transition: width 2s ease;
}

.progress-fill-65 {
    width: 65%;
}

.learning-path {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.path-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.path-step.completed {
    background: #d4edda;
    color: #155724;
}

.path-step.active {
    background: #fff3cd;
    color: #856404;
}

.path-step i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

/* Problem Section */
.problem {
    background: #f8f9fa;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-4px);
}

.problem-item i {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.problem-item h3 {
    color: #2d3748;
    font-size: 1.1rem;
}

.problem-statement {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
}

/* Guide Section */
.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guide-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.guide-features {
    list-style: none;
    margin: 2rem 0;
}

.guide-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.guide-features i {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.guide-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.guide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

/* Plan Section */
.plan {
    background: #f8f9fa;
}

.plan-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.step-content h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #718096;
    font-size: 1rem;
}

.step-arrow {
    color: #667eea;
    font-size: 1.5rem;
}

.plan-bonus {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

/* Mid CTA Section */
.mid-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.mid-cta h2 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.mid-cta .cta-button.primary {
    background: white;
    color: #667eea;
}

.mid-cta .cta-button.primary:hover {
    background: #f8f9fa;
}

.mid-cta .cta-subtext {
    color: rgba(255, 255, 255, 0.8);
}

/* Success Section */
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-item {
    background: #f0fff4;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c6f6d5;
    transition: transform 0.3s ease;
}

.success-item:hover {
    transform: translateY(-4px);
}

.success-item i {
    font-size: 3rem;
    color: #38a169;
    margin-bottom: 1rem;
}

.success-item p {
    color: #2d3748;
    font-weight: 500;
    margin: 0;
}

.success-statement {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
}

/* Social Proof Section */
.social-proof {
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #2d3748;
    font-size: 1.1rem;
}

.testimonial {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #718096;
    font-weight: 600;
}

/* Waitlist Section */
.waitlist {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.waitlist-description {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid #4c51bf;
    outline-offset: 2px;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Enhanced button focus styles */
.cta-button:focus {
    outline: 3px solid #4c51bf;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #c3e6cb;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    margin-bottom: 1rem;
    color: #155724;
}

.success-message p {
    margin: 0;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-text p {
    color: #a0aec0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Hide mobile break on desktop and larger screens */
.mobile-break {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .dashboard-mockup {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
      .plan-steps {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .benefits-grid,    .problem-grid,
    .success-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 80vh;
    }
    
    /* Show mobile break on small screens */
    .mobile-break {
        display: inline;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-description { animation-delay: 0.3s; }
.cta-button { animation-delay: 0.4s; }
.cta-subtext { animation-delay: 0.5s; }
