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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 200;
    letter-spacing: -0.03em;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #1a1a1a;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: #1a1a1a;
}

.cta-button {
    background: #1a1a1a;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.highlight {
    color: #1a1a1a;
    font-weight: 400;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-locations {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.location-item i {
    color: #1a1a1a;
    font-size: 1rem;
}

.btn {
    padding: 1.125rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    border: 1px solid #1a1a1a;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 0;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* Value Propositions Section */
.value-props {
    padding: 120px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.value-prop-card {
    background: #fafafa;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.value-prop-card:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-prop-card:hover .value-prop-icon {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.value-prop-icon i {
    font-size: 2rem;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-prop-card:hover .value-prop-icon i {
    color: white;
}

.value-prop-card h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.value-prop-card p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
    font-size: 1.125rem;
}

/* Opportunities Section */
.opportunities {
    padding: 120px 0;
    background: #fafafa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.opportunity-card {
    background: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.opportunity-card.featured {
    border-color: #1a1a1a;
    position: relative;
}

.opportunity-card.featured::before {
    content: "Featured";
    position: absolute;
    top: -12px;
    left: 40px;
    background: #1a1a1a;
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.opportunity-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.opportunity-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.opportunity-card h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.opportunity-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.opportunity-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.opportunity-features li {
    padding: 0.75rem 0;
    color: #666;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.opportunity-features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 120px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: left;
}

.stat h4 {
    font-size: 2rem;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat p {
    color: #666;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: #fafafa;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.image-placeholder i {
    font-size: 3rem;
    color: #1a1a1a;
}

/* Apply Section */
.apply {
    padding: 120px 0;
    background: #fafafa;
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.apply-info h3 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 3rem;
    color: #1a1a1a;
    letter-spacing: -0.03em;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-item i {
    color: #1a1a1a;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.benefit-item h4 {
    font-size: 1.375rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.apply-form {
    background: white;
    padding: 3rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 400;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
    font-family: inherit;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
    background: white;
}

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

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #f5f5f5;
    font-weight: 300;
    letter-spacing: -0.01em;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-locations {
        justify-content: center;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .apply-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .opportunity-card {
        padding: 2rem;
    }
    
    .value-prop-card {
        padding: 2rem;
    }
    
    .apply-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .opportunity-card {
        padding: 1.5rem;
    }
    
    .value-prop-card {
        padding: 1.5rem;
    }
    
    .apply-form {
        padding: 1.5rem;
    }
}

