/* ============================================
   KOM1TRANSITION — Redesign 2026
   Basé sur le design existant kom1transition-site
   Couleurs: Bleu #639fe8, Orange #e8ac63
   Typo: Red Hat Display, DM Sans
   ============================================ */

/* --- Variables --- */
:root {
    /* Couleurs KOM1TRANSITION */
    --kom-blue: #91bff8;
    --kom-blue-strong: #639fe8;
    --kom-blue-deep: #3568b3;
    --kom-blue-soft: #eaf3ff;
    
    --kom-orange: #e8ac63;
    --kom-orange-deep: #d9984a;
    --kom-orange-soft: #fff3e2;
    
    --kom-ink: #1d2430;
    --kom-ink-soft: #2f3a4d;
    --kom-muted: #5f6673;
    --kom-muted-soft: #7a8495;
    
    --kom-bg: #f4f6f8;
    --kom-bg-elev: #f4f6f8;
    --kom-bg-subtle: #f4f6f8;
    --kom-white: #ffffff;
    --kom-border: #d8e3f1;
    
    --shadow-sm: 0 8px 20px rgba(17,31,51,.08);
    --shadow-md: 0 16px 36px rgba(17,31,51,.12);
    --shadow-lg: 0 24px 48px rgba(17,31,51,.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--kom-muted);
    background: var(--kom-white);
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--kom-blue-strong);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--kom-orange-deep);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Red Hat Display', sans-serif;
    color: var(--kom-ink);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: 800ms;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    transition-duration: 800ms;
    z-index: -1;
}

.btn-primary {
    background: var(--kom-orange);
    border-color: var(--kom-orange);
    color: var(--kom-ink);
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    background: var(--kom-blue-strong);
}

.btn-primary:hover {
    background: var(--kom-blue-strong);
    border-color: var(--kom-blue-strong);
    color: var(--kom-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(53,104,179,.35);
}

.btn-primary:hover::before {
    top: -40%;
}

.btn-white {
    background: var(--kom-white);
    border-color: var(--kom-white);
    color: var(--kom-ink);
    box-shadow: var(--shadow-sm);
}

.btn-white::before {
    background: var(--kom-orange);
}

.btn-white:hover {
    background: var(--kom-orange);
    border-color: var(--kom-orange);
    color: var(--kom-ink);
    transform: translateY(-2px);
}

.btn-white:hover::before {
    top: -40%;
}

.btn-outline-white {
    background: transparent;
    color: var(--kom-white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline-white::before {
    background: var(--kom-white);
}

.btn-outline-white:hover {
    background: var(--kom-white);
    color: var(--kom-ink);
    border-color: var(--kom-white);
}

.btn-outline-white:hover::before {
    top: -40%;
}

/* ============================================
   HEADER TOP
   ============================================ */
.header-top {
    background: #111a27;
    padding: 10px 0;
    font-size: 14px;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
}

.header-top-left a {
    color: rgba(255,255,255,0.9);
}

.header-top-left a:hover {
    color: var(--kom-orange);
}

.header-top-left .separator {
    opacity: 0.3;
}

.header-top-left i {
    margin-right: 6px;
    color: var(--kom-orange);
}

.header-top-right {
    display: flex;
    gap: 12px;
}

.header-top-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--kom-white);
    font-size: 14px;
}

.header-top-right a:hover {
    background: var(--kom-orange);
    color: var(--kom-ink);
}

/* ============================================
   HEADER MAIN
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--kom-white);
    border-bottom: 1px solid var(--kom-border);
    box-shadow: 0 6px 18px rgba(17,31,51,.05);
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
}

.logo-text {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--kom-ink);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--kom-orange);
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav > a,
.nav .dropdown-trigger {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--kom-ink-soft);
    padding: 8px 0;
    position: relative;
}

.nav > a::after,
.nav .dropdown-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--kom-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav > a:hover,
.nav .dropdown-trigger:hover,
.nav > a.active {
    color: var(--kom-orange-deep);
}

.nav > a:hover::after,
.nav .dropdown-trigger:hover::after,
.nav > a.active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-trigger i,
.nav-dropdown.active .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--kom-white);
    border: 1px solid var(--kom-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--kom-ink-soft);
    border-radius: var(--radius-sm);
}

.dropdown-menu a:hover {
    background: var(--kom-blue-soft);
    color: var(--kom-blue-deep);
}

.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--kom-border);
    border-radius: var(--radius-sm);
    background: var(--kom-white);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--kom-ink);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.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 {
    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 6s linear forwards;
}

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

.progress-bar.completed .progress-fill {
    width: 100%;
    animation: 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;
}

.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;
}

.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);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--kom-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--kom-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--kom-muted);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--kom-blue-strong);
}

.service-link i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kom-blue-soft);
    border-radius: 50%;
    font-size: 12px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--kom-orange-deep);
}

.service-link:hover i {
    background: var(--kom-orange);
    color: var(--kom-ink);
    transform: translateX(4px);
}

/* ============================================
   WHY BILAN SECTION
   ============================================ */
.why-section {
    padding: 100px 0;
    background: var(--kom-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.why-card {
    background: var(--kom-white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kom-blue-soft);
    color: var(--kom-blue-strong);
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 20px;
}

.why-card h4 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--kom-ink);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--kom-muted);
    line-height: 1.6;
}

.why-cta {
    background: var(--kom-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.why-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.why-cta-text h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--kom-ink);
    margin-bottom: 10px;
}

.why-cta-text p {
    color: var(--kom-muted);
    margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--kom-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--kom-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--kom-orange);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--kom-ink-soft);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-weight: 600;
    color: var(--kom-ink);
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    color: var(--kom-muted);
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-cta {
        padding: 30px 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
}

.value-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h4 {
    margin-bottom: 12px;
    color: var(--kom-ink);
}

.value-card p {
    font-size: 15px;
    color: var(--kom-muted);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: 80px 0;
    background: var(--kom-blue-strong);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--kom-white);
    line-height: 1;
}

.stat-plus {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--kom-orange);
}

.stat-label {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-top: 8px;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
    padding: 100px 0;
    background: var(--kom-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--kom-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--kom-blue-strong);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.blog-content h4 {
    margin-bottom: 12px;
}

.blog-content h4 a {
    color: var(--kom-ink);
}

.blog-content h4 a:hover {
    color: var(--kom-blue-strong);
}

.blog-content p {
    font-size: 14px;
    color: var(--kom-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--kom-blue-strong);
}

.blog-link i {
    transition: transform 0.25s ease;
}

.blog-link:hover {
    color: var(--kom-orange-deep);
}

.blog-link:hover i {
    transform: translateX(4px);
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(120deg, rgba(15,27,44,.75), rgba(99,159,232,.40)),
                url('../images/kom1transition/hero/hero-rh.webp') center/cover fixed;
}

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

.cta h2 {
    color: var(--kom-white);
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 32px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: #111a27;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: var(--kom-white);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--kom-white);
    font-size: 16px;
}

.footer-socials a:hover {
    background: var(--kom-orange);
    color: var(--kom-ink);
}

.footer-col h5 {
    color: var(--kom-white);
    font-size: 16px;
    margin-bottom: 20px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--kom-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
    color: var(--kom-orange);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid,
    .values-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-top-left span:last-child {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--kom-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav > a,
    .nav .nav-dropdown {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--kom-border);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        padding-left: 16px;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .header .btn {
        display: none;
    }

    /* Hero Slider responsive */
    .hero-slider {
        min-height: 600px;
    }
    
    .slide {
        min-height: 600px;
        padding: 120px 0 80px;
    }

    .slide h1 {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-nav {
        bottom: 24px;
        gap: 12px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero-slider.is-static-mobile .slider-nav {
        display: none;
    }

    .hero-slider.is-static-mobile .slide {
        transition: none;
    }

    .about-badge {
        right: 0;
        bottom: -10px;
        padding: 16px 24px;
    }

    .badge-number {
        font-size: 2.5rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-top-inner {
        justify-content: center;
    }

    .header-top-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-top-right {
        display: none;
    }

    .about,
    .services,
    .values,
    .cta {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .label-bg {
        font-size: 50px;
    }

    .section-label.center .label-bg {
        margin-bottom: -15px;
    }

    .service-content {
        padding: 20px;
    }

    .value-card {
        padding: 24px 16px;
    }

    .value-icon {
        width: 80px;
        height: 80px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }

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

    .approach-images {
        order: -1;
    }
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 36, 48, 0.85) 0%, rgba(53, 104, 179, 0.75) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--kom-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.page-hero .section-tag span {
    background: var(--kom-orange);
}

.page-section {
    padding: 100px 0;
}

.page-section.bg-light {
    background: var(--kom-bg);
}

.section-bg-white {
    background: var(--kom-white) !important;
}

.section-bg-light {
    background: var(--kom-bg) !important;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-items {
    margin: 40px 0;
}

.approach-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.approach-icon {
    width: 60px;
    height: 60px;
    background: var(--kom-blue-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.approach-icon i {
    font-size: 24px;
    color: var(--kom-blue-strong);
}

.approach-text h4 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--kom-ink);
    margin-bottom: 8px;
}

.approach-text p {
    color: var(--kom-muted);
    line-height: 1.6;
}

.approach-images {
    position: relative;
}

.approach-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--kom-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--kom-blue-strong);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--kom-ink);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--kom-muted);
    line-height: 1.6;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--kom-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--kom-ink);
}

.faq-question i {
    color: var(--kom-blue-strong);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--kom-muted);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--kom-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--kom-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--kom-ink);
}

.author-info span {
    font-size: 14px;
    color: var(--kom-muted-soft);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-image {
        order: -1;
    }
}
