@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap');
:root {
    --obsidian: #0A0A0E;
    --obsidian-light: #12121A;
    --aurora: #00FFA3;
    --aurora-dim: rgba(0, 255, 163, 0.15);
    --violet: #8B5CF6;
    --violet-dim: rgba(139, 92, 246, 0.15);
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(139, 92, 246, 0.15);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--obsidian);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--violet), var(--aurora));
    color: var(--obsidian);
    box-shadow: 0 0 20px var(--violet-dim);
}
.btn-primary:hover {
    box-shadow: 0 0 30px var(--aurora-dim);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--aurora);
    color: var(--aurora);
}
.btn-outline:hover {
    background: var(--aurora-dim);
}
.tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: var(--violet-dim);
    color: var(--violet);
    border: 1px solid rgba(139, 92, 246, 0.3);
}
.section {
    padding: 100px 0;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
    text-align: center;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 64px;
}
.highlight-green { color: var(--aurora); }
.highlight-violet { color: var(--violet); }
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 14, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 40px;
    width: auto;
}
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}
.nav-links a:hover {
    color: var(--aurora);
}
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--obsidian));
    z-index: -1;
}
.hero-content {
    max-width: 800px;
}
.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff, var(--aurora));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.card {
    background: var(--obsidian-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 163, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.card-icon {
    font-size: 2.5rem;
    color: var(--aurora);
    margin-bottom: 24px;
}
.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.image-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.image-block::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--violet-dim), transparent);
    pointer-events: none;
}
.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--violet-dim);
    border: 1px solid var(--violet);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--violet);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.stat-card {
    text-align: center;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}
.stat-value {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--aurora);
    margin-bottom: 8px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.team-member {
    background: var(--obsidian-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--glass-border);
}
.team-name { font-size: 1.3rem; margin-bottom: 4px; }
.team-role { color: var(--aurora); font-size: 0.9rem; margin-bottom: 16px; }
.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 16px;
    position: relative;
}
.quote-icon {
    position: absolute;
    top: 32px; right: 32px;
    font-size: 3rem;
    color: var(--violet-dim);
    line-height: 1;
}
.review-text {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-muted);
}
.review-author { font-weight: 600; color: #fff; }
.accordion-item {
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 16px;
}
.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}
.accordion-content.active {
    max-height: 500px;
    padding-bottom: 24px;
}
.application-wrapper {
    background: var(--obsidian-light);
    border-radius: 24px;
    padding: 64px;
    border: 1px solid rgba(0, 255, 163, 0.2);
    position: relative;
    overflow: hidden;
}
.application-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, var(--violet-dim) 0%, transparent 50%);
    pointer-events: none;
}
.form-steps {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
.step-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    transition: all 0.3s ease;
}
.step-dot.active {
    background: var(--aurora);
    box-shadow: 0 0 10px var(--aurora);
}
.form-group-custom {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}
.form-group-custom.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-question {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 32px;
    text-align: center;
}
.input-custom {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    padding: 16px 0;
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}
.input-custom:focus {
    border-bottom-color: var(--aurora);
}
.form-nav-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
footer {
    background: var(--obsidian-light);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: #fff;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
}
.footer-links a:hover {
    color: var(--aurora);
}
.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}
@media (max-width: 992px) {
    .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
}
