.laser-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F172A 0%, #1863DC 100%);
    overflow: hidden;
    margin-top: 80px;
}

.laser-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-60px) translateY(-60px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-4xl) 0;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(24, 99, 220, 0.2);
    border: 1px solid rgba(24, 99, 220, 0.3);
    border-radius: var(--radius-full);
    color: #00C7BE;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 600px;
}

.hero-stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00C7BE;
    margin-bottom: var(--space-xs);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1863DC;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: var(--space-lg);
}

.text-highlight {
    background: linear-gradient(135deg, #1863DC, #00C7BE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    margin-bottom: var(--space-5xl);
}

.tech-visual {
    position: relative;
}

.tech-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1863DC, #00C7BE);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tech-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.tech-image .tech-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: 0.5s;
}

.badge-value {
    font-size: 1.5rem;
    color: #1863DC;
}

.badge-label {
    font-size: 0.75rem;
    color: #64748B;
}

.tech-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: var(--space-lg);
}

.tech-content p {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.tech-features {
    display: grid;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #F1F5F9;
    border-radius: var(--radius-lg);
    border-left: 4px solid #1863DC;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #1863DC;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.125rem;
}

.feature-text strong {
    display: block;
    color: #0F172A;
    margin-bottom: var(--space-xs);
}

.feature-text span {
    color: #64748B;
    font-size: 0.9375rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.material-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(24, 99, 220, 0.1);
    transition: all var(--transition-base);
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #1863DC;
}

.material-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, #1863DC, #00C7BE);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.material-icon i {
    font-size: 2rem;
    color: var(--white);
}

.material-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: var(--space-md);
}

.material-card p {
    color: #64748B;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.application-card {
    background: #F1F5F9;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    gap: var(--space-xl);
    transition: all var(--transition-base);
}

.application-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.application-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1863DC, #00C7BE);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.application-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: var(--space-sm);
}

.application-content p {
    color: #64748B;
    line-height: 1.6;
}

.specs-container {
    max-width: 1000px;
    margin: var(--space-2xl) auto 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.spec-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border-top: 4px solid #1863DC;
}

.spec-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.spec-card h4 i {
    color: #1863DC;
}

.spec-list {
    list-style: none;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid #F1F5F9;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #64748B;
    font-size: 0.9375rem;
}

.spec-value {
    font-weight: 600;
    color: #0F172A;
}

.process-timeline {
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
}

.process-timeline-item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.process-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + var(--space-lg));
    background: linear-gradient(to bottom, #1863DC, #00C7BE);
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1863DC, #00C7BE);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: #F1F5F9;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: #64748B;
    line-height: 1.6;
}

.section-dark {
    background: #0F172A;
    color: var(--white);
}

.section-dark .section-subtitle {
    color: #00C7BE;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.cta-box {
    background: linear-gradient(135deg, #1863DC, #00C7BE);
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl);
    text-align: center;
    margin-top: var(--space-2xl);
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-box p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background: var(--white);
    color: #1863DC;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
    .tech-showcase {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .laser-hero {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .application-card {
        flex-direction: column;
    }
}