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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #0f172a; 
    background: #ffffff;    
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* background: linear-gradient(135deg, #1e293b 0%, #312e81 100%); */
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
}

.launch-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .focus {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 20px 40px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.honesty-bar {
    border-top: 3px solid #f59e0b;
    /* background: #fef3c7;
    border-bottom: 3px solid #f59e0b; */
    /* background: #fffbeb; */
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
    padding: 25px 20px;
    text-align: center;
}

.honesty-bar h3 {
    color: #92400e;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.honesty-bar p {
    color: #78350f;
    font-size: 1.05rem;
    line-height: 1.7;
}

.honesty-bar strong {
    color: #b45309;
}

section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: #059669;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem {
    background: #f0fdf4;
    /* border-left: 4px solid #475569; */
}

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

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.problem-card h3 {
    color: #e53e3e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.solution {
    background: #f0fdf4;
    /* background: #f8fafc; */
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.solution-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.solution-card h3 {
    color: #059669;
    /* color: #065f46; */
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.mvp-section {
    /* background: linear-gradient(135deg, #1e293b 0%, #334155 100%); */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mvp-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.mvp-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    /* color: #a5f3fc; */
    color: #e0e7ff;
}

.mvp-card .number {
    font-size: 4rem;
    font-weight: 800;
    color: #67e8f9;
    /* color: #a5b4fc; */
    display: block;
    margin: 20px 0;
}

.mvp-card p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.waiting-list-section {
    background: #f8f9fa;
    text-align: center;
}

.early-adopter-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.early-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid #fcd34d;
}

/* ----------Price--------- */

.price-section{
    background: #f0fdf4;
}

.price-section .container{
    width: 90%;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-strike {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 2rem;
}

.early-price {
    font-size: 4rem;
    font-weight: 800;
    /* color: #667eea; */
    color: #4f46e5;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #c0c2c4;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #10b981;
    color: white;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.why-trust {
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.trust-card {
    padding: 30px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
}

.trust-card h3 {
    /* color: #667eea; */
    color: #312e81;
    margin: 20px 0 15px;
    font-size: 1.4rem;
}

.trust-icon {
    font-size: 3rem;
}

.creator-section {
    background: linear-gradient(135deg, #077552 0%, #065e45 100%);
    /* background: linear-gradient(135deg, #064e3b 0%, #022c22 100%); */
    color: white;
}

.creator-section .section-subtitle{
    color: #aadfcf;
}

.creator-box {
    max-width: 700px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.creator-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.requirement-list {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #34d399;
}

.requirement-list h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.requirement-list ul {
    list-style: none;
    padding-left: 0;
}

.requirement-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.requirement-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6ee7b7;
    font-weight: bold;
    font-size: 1.3rem;
}

/* FORM */
.cta-section{
    background: #f0fdf4;
}

.cta-section .container{
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-box h1{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.verification-note{
    text-align: center;
}

.success-message {
    display: none;
    background: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: 600;
}

.counter {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 10px;
    font-weight: 600;
}

#student-form label{
    color: #667eea;
}


footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .early-adopter-box,
    .creator-box {
        padding: 30px 20px;
    }
}