
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 60, 114, 0.85) 0%,
        rgba(42, 82, 152, 0.75) 50%,
        rgba(13, 110, 253, 0.8) 100%
    );
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 4rem 0;
}

.hero-text {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff 0%, #e3f2fd 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.hero-btn.primary {
    background: linear-gradient(45deg, #ff6b6b 0%, #feca57 100%);
    color: white;
    border: 2px solid transparent;
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #feca57;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Block 2 */
.tech-evolution-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.tech-evolution-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.evolution-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.evolution-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.evolution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #718096;
    margin: 0;
    font-size: 0.95rem;
}

.evolution-visual {
    position: relative;
}

.evolution-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visual-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

.metric-cards {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.metric-card {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.2rem;
}

.timeline-container {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 1rem;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0 0%, #667eea 100%);
    z-index: 1;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 4px solid white;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
}

.timeline-content {
    text-align: center;
    max-width: 180px;
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-event {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .evolution-title {
        font-size: 2rem;
    }
    
    .metric-cards {
        justify-content: center;
    }
    
    .visual-overlay {
        position: static;
        margin-top: 1rem;
    }
    
    .timeline-track {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-track::before {
        top: 0;
        bottom: 0;
        left: 25px;
        right: auto;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, #e2e8f0 0%, #667eea 100%);
    }
    
    .timeline-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .timeline-marker {
        margin-bottom: 0;
        margin-right: 1.5rem;
    }
    
    .timeline-content {
        text-align: left;
        max-width: none;
        flex: 1;
    }
}

/* Block 3 */
.ai-system-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
}

.ai-system-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e7ff 50%, transparent 100%);
}

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

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.optimization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.optimization-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.optimization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.optimization-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    border-radius: 12px;
    object-fit: cover;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.card-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.progress-indicator {
    position: relative;
    background: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 4px;
    width: 87%;
    position: relative;
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 8px;
    display: block;
}

.metric-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.metric-unit {
    font-size: 0.9rem;
    color: #64748b;
}

.security-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-badge.success {
    background: #d1fae5;
    color: #065f46;
}

.stat-badge.warning {
    background: #fef3c7;
    color: #92400e;
}

.energy-meter {
    position: relative;
    background: #f1f5f9;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 73%;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border-radius: 6px;
    transition: width 1s ease;
}

.efficiency-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
    margin-top: 8px;
    display: block;
}

.showcase-visual {
    position: relative;
}

.showcase-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.visual-overlays {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
}

.data-stream {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a202c;
}

.stream-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.stream-1 .stream-indicator {
    background: #10b981;
}

.stream-2 .stream-indicator {
    background: #3b82f6;
}

.stream-3 .stream-indicator {
    background: #f59e0b;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.learning-pathway {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.pathway-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 40px;
}

.pathway-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.pathway-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, #10b981 50%, #e2e8f0 50%, #e2e8f0 100%);
    z-index: 1;
}

.pathway-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.pathway-step.completed .step-number {
    background: #10b981;
    color: white;
}

.pathway-step.current .step-number {
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.pathway-step.upcoming .step-number {
    background: #e2e8f0;
    color: #64748b;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 992px) {
    .optimization-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .pathway-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .pathway-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .ai-system-showcase {
        padding: 60px 0;
    }
    
    .optimization-card {
        padding: 25px;
    }
    
    .learning-pathway {
        padding: 30px 20px;
    }
}

/* Block 4 */
.order-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(83, 52, 131, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form-header {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.form-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(83, 52, 131, 0.8) 0%, rgba(15, 52, 96, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.form-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
    line-height: 1.5;
}

.form-body {
    padding: 50px 40px;
}

.enrollment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(83, 52, 131, 0.3);
}

.stat-icon img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    filter: brightness(1.2) contrast(1.1);
}

.stat-number {
    display: block;
    color: #64ffda;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.enrollment-form {
    margin-bottom: 40px;
}

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

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #64ffda;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #64ffda 0%, #533483 100%);
    width: 0;
    transition: width 0.3s ease;
}

.form-input:focus + .input-accent {
    width: 100%;
}

.specialization-selector {
    margin-bottom: 40px;
}

.selector-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.track-options {
    display: grid;
    gap: 16px;
}

.track-option {
    position: relative;
}

.track-radio {
    display: none;
}

.track-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-label:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 255, 218, 0.5);
}

.track-radio:checked + .track-label {
    background: rgba(100, 255, 218, 0.15);
    border-color: #64ffda;
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
}

.track-label img {
    width: 56px;
    height: 56px;
    filter: brightness(1.2);
}

.track-name {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.track-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #64ffda 0%, #533483 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(100, 255, 218, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.particle-stream {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item img {
    width: 32px;
    height: 32px;
    filter: brightness(1.3);
}

.badge-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-body {
        padding: 30px 24px;
    }
    
    .enrollment-stats {
        grid-template-columns: 1fr;
    }
    
    .track-label {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .security-badges {
        gap: 16px;
    }
}
