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

:root {
    --dark-bg: #1a0b2e;
    --darker-bg: #0f0520;
    --neon-pink: #ff006e;
    --amber-gold: #ffbe0b;
    --deep-purple: #7209b7;
    --electric-blue: #3a86ff;
    --text-light: #f8f9fa;
    --text-gray: #b8b8d1;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-pink);
    text-decoration: none;
}

.logo img {
    width: 45px;
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--neon-pink);
}

.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(114, 9, 183, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--amber-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--deep-purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--neon-pink);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(5, 13, 26, 0.8) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 110, 0.1);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.25);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--neon-pink);
}

.card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(114, 9, 183, 0.15) 0%, rgba(255, 190, 11, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 110, 0.25);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--neon-pink);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
}

.image-container {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.2);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.2);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(5, 13, 26, 0.6) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 110, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member h4 {
    font-size: 20px;
    color: var(--neon-pink);
    margin-bottom: 8px;
}

.team-member p {
    color: var(--text-gray);
    font-size: 14px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(5, 13, 26, 0.6) 100%);
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 110, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--neon-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-gray);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
}

.form-wizard {
    max-width: 700px;
    margin: 60px auto;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(5, 13, 26, 0.8) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 15px;
}

.wizard-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 0, 110, 0.2);
    z-index: -1;
}

.wizard-step:first-child::before {
    left: 50%;
}

.wizard-step:last-child::before {
    right: 50%;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 110, 0.2);
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.wizard-step.active .step-number {
    background: var(--neon-pink);
    color: var(--darker-bg);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.wizard-step.completed .step-number {
    background: var(--amber-gold);
    color: var(--darker-bg);
}

.step-label {
    font-size: 14px;
    color: var(--text-gray);
}

.wizard-step.active .step-label {
    color: var(--neon-pink);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-pink);
}

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

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
}

.btn-secondary:hover {
    background: rgba(255, 0, 110, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--deep-purple) 100%);
    color: white;
}

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

footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 0, 110, 0.1);
}

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

.footer-section h3 {
    color: var(--neon-pink);
    margin-bottom: 20px;
    font-size: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--neon-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 0, 110, 0.1);
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .form-wizard {
        padding: 30px 20px;
    }
}