/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ai-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 0, 255, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 0, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.title-sub {
    display: block;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 10px;
    opacity: 0.9;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #00ffff;
}

.feature-item i {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.free-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    padding: 10px 20px;
    border-radius: 25px;
    color: #00ff00;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-dashboard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.ai-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.dashboard-content {
    position: relative;
    z-index: 1;
}

.chart-placeholder {
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
    border-radius: 1px;
    animation: chartGrow 2s ease-out infinite;
}

@keyframes chartGrow {
    0% { width: 0; }
    100% { width: calc(100% - 40px); }
}

.data-points {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    animation: pointPulse 2s infinite;
}

.point-1 { left: 25%; bottom: 30px; animation-delay: 0s; }
.point-2 { left: 50%; bottom: 50px; animation-delay: 0.5s; }
.point-3 { left: 75%; bottom: 20px; animation-delay: 1s; }

@keyframes pointPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    50% { transform: scale(1.5); box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

.ai-insights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Activity Introduction */
.activity-intro {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.section-header p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.intro-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intro-card:hover::before {
    opacity: 1;
}

.intro-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.card-icon i {
    font-size: 2rem;
    color: #000;
}

.intro-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.intro-card p {
    color: #cccccc;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.feature-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-module:last-child {
    margin-bottom: 0;
}

.right-image {
    grid-template-areas: "content image";
}

.right-image .feature-content {
    grid-area: content;
}

.right-image .feature-image {
    grid-area: image;
}

.left-image {
    grid-template-areas: "image content";
}

.left-image .feature-content {
    grid-area: content;
}

.left-image .feature-image {
    grid-area: image;
}

.feature-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.feature-content p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ffffff;
}

.feature-list i {
    color: #00ff00;
    font-size: 1.2rem;
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.image-placeholder i {
    font-size: 4rem;
    color: #00ffff;
    position: relative;
    z-index: 1;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Activity Terms */
.activity-terms {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.term-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.term-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.term-icon i {
    font-size: 1.5rem;
    color: #000;
}

.term-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.term-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Qualification Form */
.qualification-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.qualification-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 0, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    pointer-events: none;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.1);
    overflow: hidden;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

/* Left Side - Illustration */
.form-illustration {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    border-right: 1px solid rgba(0, 255, 255, 0.2);
}

.illustration-content {
    text-align: center;
    width: 100%;
}

.checklist-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checklist-header {
    margin-bottom: 30px;
}

.checklist-header i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.checklist-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.checklist-items {
    margin-bottom: 30px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.checklist-item.completed i {
    color: #4CAF50;
}

.checklist-item:not(.completed) i {
    color: rgba(255, 255, 255, 0.5);
}

.checklist-item span {
    font-size: 1rem;
    font-weight: 600;
}

.assessment-character {
    margin-top: 20px;
}

.assessment-character i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Right Side - Form */
.form-content {
    padding: 60px 40px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.form-header {
    margin-bottom: 40px;
    flex-shrink: 0;
}

.beta-badge {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.beta-badge i {
    color: #000;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-text {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 600;
}

.progress-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #ffffff;
}

.current-step {
    color: #00ffff;
    font-size: 1.1rem;
}

.separator {
    color: #888;
}

.total-steps {
    color: #cccccc;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 33.33%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Form Steps */
.step-form {
    position: relative;
    min-height: 450px;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: stretch;
}

.form-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
    pointer-events: none;
    min-height: 400px;
}

.form-step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.step-content h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.step-description {
    color: #cccccc;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-option {
    cursor: pointer;
    display: block;
}

.step-option input[type="radio"] {
    display: none;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.step-option input[type="radio"]:checked + .option-card::before {
    left: 100%;
}

.option-card:hover {
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.step-option input[type="radio"]:checked + .option-card {
    border-color: #00ffff;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.15));
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.option-card i {
    font-size: 1.5rem;
    color: #00ffff;
    min-width: 30px;
}

.option-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.option-card p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
    margin-top: 5px;
}

/* Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 40px;
    gap: 20px;
    position: relative;
    z-index: 10;
    clear: both;
    flex-shrink: 0;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
}

.next-btn {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.next-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.next-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666666;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.5;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.result-message {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-content i {
    font-size: 4rem;
    color: #00ff00;
    margin-bottom: 20px;
}

.result-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff00;
    margin-bottom: 15px;
}

.result-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
}

.get-started-btn {
    background: linear-gradient(45deg, #00ff00, #00aa00);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-contact p {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .feature-module {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .feature-module .feature-content {
        order: 2;
    }
    
    .feature-module .feature-image {
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    
    /* Reset grid template areas for mobile */
    .right-image,
    .left-image {
        grid-template-areas: unset;
        display: flex;
        flex-direction: column;
    }
    
    .image-placeholder {
        height: 250px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .image-placeholder img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: inherit !important;
    }
    
    .feature-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .feature-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-list li {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    /* Multi-step form mobile optimization */
    .qualification-form {
        padding: 50px 0;
        min-height: auto;
    }
    
    .qualification-form .container {
        padding: 0 10px;
    }
    
    .form-wrapper {
        display: flex;
        flex-direction: column;
        margin: 10px;
        max-width: 100%;
        min-height: auto;
        border-radius: 15px;
    }
    
    .form-illustration {
        order: 2;
        padding: 30px 20px;
        border-right: none;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
        border-radius: 0 0 15px 15px;
    }
    
    .form-content {
        order: 1;
        padding: 30px 20px;
        border-radius: 15px 15px 0 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .checklist-container {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .checklist-header {
        margin-bottom: 20px;
    }
    
    .checklist-header i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .checklist-header h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .checklist-items {
        margin-bottom: 20px;
    }
    
    .checklist-item {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    .assessment-character {
        margin-top: 15px;
    }
    
    .assessment-character i {
        font-size: 2.5rem;
    }
    
    .form-header {
        margin-bottom: 30px;
    }
    
    .beta-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.4;
    }
    
    .progress-container {
        margin-bottom: 10px;
    }
    
    .progress-text {
        font-size: 0.8rem;
    }
    
    .progress-indicator {
        font-size: 0.9rem;
    }
    
    .current-step {
        font-size: 1rem;
    }
    
    .progress-bar {
        height: 4px;
        margin-bottom: 30px;
    }
    
    .step-form {
        min-height: 350px;
    }
    
    .step-content h2 {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .options-container {
        gap: 12px;
    }
    
    .option-card {
        padding: 15px 12px;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    
    .option-card i {
        font-size: 1.3rem;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .option-text {
        flex: 1;
    }
    
    .option-card h4 {
        font-size: 0.95rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .option-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .form-navigation {
        margin-top: 30px;
        padding-top: 0;
        gap: 12px;
        flex-direction: row;
    }
    
    .nav-btn {
        flex: 1;
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: auto;
    }
    
    .back-btn {
        flex: 0.6;
    }
    
    .next-btn {
        flex: 1.4;
    }
    
    .result-message {
        margin-top: 30px;
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .result-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .result-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .get-started-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.6rem;
    }
    
    /* Features section mobile optimization */
    .features-section {
        padding: 60px 0;
    }
    
    .feature-module {
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .image-placeholder {
        height: 200px;
        border-radius: 15px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
    
    /* Extra small mobile optimizations */
    .qualification-form .container {
        padding: 0 5px;
    }
    
    .form-wrapper {
        margin: 5px;
        border-radius: 12px;
    }
    
    .form-content {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .form-illustration {
        padding: 20px 15px;
    }
    
    .step-content h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .option-card {
        padding: 12px 10px;
        gap: 10px;
    }
    
    .option-card i {
        font-size: 1.2rem;
    }
    
    .option-card h4 {
        font-size: 0.9rem;
    }
    
    .option-card p {
        font-size: 0.75rem;
    }
    
    .beta-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        margin-bottom: 15px;
    }
    
    .nav-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .checklist-container {
        padding: 15px 10px;
    }
    
    .checklist-header h3 {
        font-size: 1rem;
    }
    
    .checklist-item {
        font-size: 0.85rem;
        padding: 8px 0;
    }
}
