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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1f2937;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* Page Sections */
.page-section {
    display: none;
    min-height: 100vh;
    padding-top: 64px;
}

.page-section.active {
    display: block;
}

.section-light {
    background: linear-gradient(135deg, #ddd6fe, #fce7f3);
    padding: 5rem 0;
}

.section-white {
    background: white;
    padding: 4rem 0;
}

.section-dark {
    background: linear-gradient(135deg, #1f2937, #2563eb);
    color: white;
    padding: 4rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a, #1e40af, #7c3aed);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    display: block;
    color: #93c5fd;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Typography */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: #374151;
}

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

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #1e40af;
}

.btn-primary:hover {
    background: #f3f4f6;
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e40af;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Cards */
.card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title.blue { color: #1e40af; }
.card-title.purple { color: #7c3aed; }
.card-title.green { color: #059669; }
.card-title.orange { color: #ea580c; }
.card-title.teal { color: #0d9488; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature-card.blue { background: #dbeafe; }
.feature-card.purple { background: #e9d5ff; }
.feature-card.green { background: #d1fae5; }

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card.blue i { color: #1e40af; }
.feature-card.purple i { color: #7c3aed; }
.feature-card.green i { color: #059669; }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
}

/* Outcome Cards */
.outcome-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.outcome-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.outcome-card p {
    color: #bfdbfe;
}

/* Pillar Cards */
.pillar-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.pillar-card.blue { background: #dbeafe; }
.pillar-card.green { background: #d1fae5; }
.pillar-card.purple { background: #e9d5ff; }
.pillar-card.orange { background: #fed7aa; }

.pillar-card i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.pillar-card.blue i { color: #1e40af; }
.pillar-card.green i { color: #059669; }
.pillar-card.purple i { color: #7c3aed; }
.pillar-card.orange i { color: #ea580c; }

.pillar-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.timeline-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.timeline-number.blue { background: #3b82f6; }
.timeline-number.green { background: #10b981; }
.timeline-number.purple { background: #8b5cf6; }
.timeline-number.orange { background: #f59e0b; }

.timeline-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.timeline-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Timeline Cards */
.timeline-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.timeline-card.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.timeline-card.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.timeline-card.purple { background: linear-gradient(135deg, #e9d5ff, #ddd6fe); }
.timeline-card.teal { background: linear-gradient(135deg, #ccfbf1, #99f6e4); }

.timeline-duration {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-card.blue .timeline-duration { color: #1e40af; }
.timeline-card.green .timeline-duration { color: #059669; }
.timeline-card.purple .timeline-duration { color: #7c3aed; }
.timeline-card.teal .timeline-duration { color: #0d9488; }

.timeline-card h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-card p {
    font-size: 0.875rem;
    color: #374151;
}

/* Milestones */
.milestone-list {
    list-style: none;
    padding: 0;
}

.milestone-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.milestone-list i {
    color: #10b981;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.milestone-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.milestone-card.blue { background: #f0f9ff; }
.milestone-card.purple { background: #faf5ff; }
.milestone-card.green { background: #f0fdf4; }

.milestone-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.milestone-card.blue .milestone-icon { background: #2563eb; }
.milestone-card.purple .milestone-icon { background: #7c3aed; }
.milestone-card.green .milestone-icon { background: #059669; }

.milestone-icon i {
    color: white;
    font-size: 1.5rem;
}

.milestone-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.milestone-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Assessment */
.assessment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.score {
    font-weight: bold;
}

.score.blue { color: #2563eb; }
.score.green { color: #059669; }
.score.orange { color: #ea580c; }
.score.purple { color: #7c3aed; }

.readiness-score {
    text-align: center;
    padding: 1.5rem;
    background: #dbeafe;
    border-radius: 0.5rem;
}

.score-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.score-label {
    color: #374151;
    margin-bottom: 0.5rem;
}

.score-status {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    padding: 0.25rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.content-section {
    margin-bottom: 1rem;
}

.content-section h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.content-section p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.team-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.avatar.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.avatar.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.avatar.green { background: linear-gradient(135deg, #10b981, #059669); }
.avatar.orange { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.avatar.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.avatar.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.avatar.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.avatar.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.team-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.team-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.team-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.team-icon.orange { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.team-icon.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.team-icon.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.team-icon.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.team-icon.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.team-icon i {
    color: white;
    font-size: 1.5rem;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.team-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.team-description {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Approach */
.approach-item {
    text-align: center;
}

.approach-number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.approach-number.blue { background: linear-gradient(135deg, #3b82f6, #4f46e5); }
.approach-number.purple { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.approach-number.green { background: linear-gradient(135deg, #10b981, #14b8a6); }

.approach-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.approach-item p {
    color: #6b7280;
}

/* Alliance */
.alliance-section {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.alliance-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.alliance-section > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.alliance-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.5rem;
}

.alliance-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alliance-card p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
}

.cta-card {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.reason-item {
    text-align: center;
}

.reason-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.reason-number.blue { background: #3b82f6; }
.reason-number.purple { background: #8b5cf6; }
.reason-number.green { background: #10b981; }

.reason-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: #6b7280;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, #059669, #0d9488);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.footer p {
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 0;
        align-items: stretch;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 0.75rem;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-light,
    .section-white,
    .section-dark {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .team-card {
        padding: 1rem;
    }
    
    .team-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .avatar,
    .team-icon {
        align-self: center;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
