/* ============================================
   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);
}

.testimonial-stat-icon {
    margin-bottom: 18px;
}

.testimonial-stat-icon.is-rating {
    background: var(--kom-orange-soft);
}

.testimonial-stat-icon.is-rating i {
    color: var(--kom-orange-deep);
}

.testimonial-stat-icon.is-context {
    background: rgba(53, 104, 179, 0.12);
}

.testimonial-stat-icon.is-context i {
    color: var(--kom-blue-deep);
}

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