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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    font-size: 16px;
}

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

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #475569;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-cta {
    margin-left: 16px;
}

/* Hero About */
.hero-about {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 20px;
    color: #64748b;
    line-height: 1.7;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.story-text {
    max-width: 600px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
    line-height: 1.2;
}

.story-paragraph {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-visual svg {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.story-image,
.mission-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: #f1f5f9;
    min-height: 300px;
    object-fit: cover;
}

/* Founders Section */
.founders-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-top: 16px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
}

.founder-card {
    display: flex;
    gap: 32px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.founder-image {
    flex-shrink: 0;
}

.founder-photo {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    background: #f1f5f9;
}

.founder-info {
    flex: 1;
}

.founder-name {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.founder-role {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: white;
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.value-title {
    font-size: 22px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.value-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
    align-items: center;
}

.mission-text {
    max-width: 700px;
}

.mission-paragraph {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-visual svg {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: white;
}

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

.stat-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Future Section */
.future-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.future-section .section-title {
    color: white;
    margin-bottom: 48px;
}

.future-text {
    max-width: 900px;
    margin: 0 auto;
}

.future-paragraph {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    flex: 2;
    justify-content: space-between;
    min-width: 600px;
}

.footer-section {
    min-width: 120px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: left;
}

.legal-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.last-updated {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 48px;
    text-align: center;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
}

.policy-section p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        min-width: auto;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 24px;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .founder-photo {
        width: 100px;
        height: 100px;
    }
    
    .legal-content {
        padding: 60px 0;
    }
}