/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.slide-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,27,44,.75), rgba(99,159,232,.40));
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
}

.slide-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-pretitle {
    color: #d9e7fb;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.hero-pretitle span {
    color: var(--kom-orange);
}

.slide h1,
.slide h2 {
    color: var(--kom-white);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    text-shadow: 0 3px 16px rgba(9,14,22,.35);
    margin-bottom: 24px;
}

.hero-desc {
    color: var(--kom-white);
    font-size: clamp(18px, 1.2vw, 21px);
    font-weight: 500;
    max-width: 760px;
    margin: 0 auto 32px;
    text-shadow: 0 1px 8px rgba(9,14,22,.22);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--kom-white);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--kom-orange);
    border-color: var(--kom-orange);
    color: var(--kom-white);
}

/* Progress Bar Navigation */
.slider-progress {
    display: flex;
    gap: 8px;
    align-items: center;
}

.progress-bar {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.progress-bar:hover {
    background: rgba(255,255,255,0.5);
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--kom-white);
    border-radius: 2px;
    transition: none;
}

.progress-bar.active .progress-fill {
    animation: progressFill var(--hero-slide-duration, 6000ms) linear forwards;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

.progress-bar.completed .progress-fill {
    width: 100%;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider.is-reduced-motion .slide {
        transition: none;
    }

    .hero-slider.is-reduced-motion .progress-fill {
        animation: none;
    }

    .hero-slider.is-reduced-motion .slider-motion-toggle {
        display: none;
    }
}

/* ============================================
   SECTION TITLES - BADGE PLEIN
   ============================================ */
.section-tag {
    margin-bottom: 16px;
}

.section-tag span {
    display: inline-block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--kom-blue-strong);
    padding: 5px 10px;
    border-radius: 4px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-top: 0;
}

.section-header .section-desc,
.section-header p.section-desc {
    color: var(--kom-muted);
    font-size: 17px;
    line-height: 1.6;
    margin-top: 16px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--kom-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--kom-white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--kom-blue-strong);
    line-height: 1;
}

.badge-number sup {
    font-size: 1.5rem;
}

.badge-text {
    display: block;
    font-size: 14px;
    color: var(--kom-muted);
    margin-top: 4px;
}

.about-content {
    position: relative;
}

.about-content h2 {
    margin-bottom: 20px;
}

.home-about-title {
    font-size: 43px;
    line-height: 1.2;
}

.home-about-title-accent {
    color: var(--kom-blue-strong);
}

.about-content > p {
    font-size: 18px;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    margin-bottom: 32px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--kom-ink-soft);
}

.check-list i {
    color: var(--kom-blue-strong);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.check-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.check-content strong {
    color: var(--kom-ink);
    line-height: 1.35;
}

.check-content span {
    color: var(--kom-ink-soft);
    line-height: 1.4;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-actions .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kom-blue-soft);
    border-radius: 50%;
    color: var(--kom-blue-strong);
    font-size: 20px;
}

.social-link:hover {
    background: var(--kom-blue-strong);
    color: var(--kom-white);
}

/* ============================================
