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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.nav-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #60a5fa;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-log-in {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-log-in:hover {
    background: #1e40af;
}

.btn-register {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-register:hover {
    transform: translateY(-1px);
}
/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:url('../images/head.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 80px 60px;
}

.hero-content {
    max-width: 700px;
    text-align: left;
    flex-shrink: 0;
}

.hero-image {
    max-width: 500px;
    margin-left: 60px;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description p {
    margin-bottom: 16px;
}

.highlight {
    color: #FCEE35;
}

.btn-apply {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-how-it-works {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-how-it-works:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
}

/* Incubator Section */
.incubator-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 40px;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.incubator-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #60a5fa;
    margin-bottom: 60px;
}

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

.info-card {
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s, border-color 0.2s;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.4);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.info-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.info-card ul li {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 20px;
    position: relative;
}

.info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #60a5fa;
}

.card-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.card-link:hover {
    color: #93c5fd;
}

.incubator-note {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}
/* Gain Section */
.gain-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #042044 100%);
    padding: 80px 40px;
}

.gain-header {
    text-align: center;
    margin-bottom: 16px;
}

.gain-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-should-link {
    display: none;
}

.gain-subtitle {
    font-size: 16px;
    color: #fde047;
    margin-bottom: 60px;
    text-align: center;
}

.weeks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.week-card {
    background: transparent;
    text-align: center;
}

.week-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1A168A 0%, #080624 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    margin: 0 auto 32px;
    box-shadow: 0 8px 32px rgba(55, 48, 163, 0.4);
}

.week-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.week-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.btn-learn-more {
    background: transparent;
    color: #fde047;
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 0;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.2s;
}

.btn-learn-more:hover {
    opacity: 0.8;
}

.btn-apply-now {
    background: linear-gradient(145deg, #1d2a64 0%, #11408c 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s;
}

.btn-faq-plus:hover {
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #0f172a 100%);
    padding: 80px 40px;
}

.section-container {
    text-align: center;
}

.newsletter-content {
    text-align: center;
    margin-bottom: 60px;
}

.newsletter-section h2 {
    font-size: 42px;
    font-weight: 700;
}

.what-do-link {
    display: none;
}

.btn-subscribe {
    background: linear-gradient(145deg, #1A168A 0%, #15116A 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(129, 140, 248, 0.4);
    transition: transform 0.2s;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 20px;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
}

.email-input {
    width: auto;
    min-width: 400px;
    padding: 16px 32px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 15px;
    outline: none;
    display: inline-block;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: #818cf8;
}
/* Footer */
footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 40px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.2s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-info h4,
.location-info h4,
.footer-column h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.contact-info p,
.location-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-apply-btn {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s;
}

.footer-apply-btn:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}