.ksp-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background: var(--ksp-bg-light);
}

.ksp-page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.ksp-page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #FFB800 100%);
    opacity: 0.05;
}

.ksp-page-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ksp-page-hero-shapes .ksp-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.ksp-page-hero-shapes .ksp-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.ksp-page-hero-shapes .ksp-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 5%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.ksp-page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ksp-page-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--ksp-text-primary);
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ksp-page-hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: var(--ksp-text-secondary);
}

.ksp-products-overview {
    padding: 80px 0;
    background: white;
}

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

.ksp-products-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.ksp-product-stat {
    padding: 40px;
    background: var(--ksp-bg-light);
    border-radius: var(--ksp-radius-lg);
    transition: all 0.3s ease;
}

.ksp-product-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--ksp-shadow-md);
    background: white;
}

.ksp-product-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    border-radius: var(--ksp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.ksp-product-stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.ksp-product-stat-label {
    font-size: 16px;
    color: var(--ksp-text-secondary);
    font-weight: 500;
}

.ksp-savings-services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ksp-bg-light) 0%, white 100%);
}

.ksp-savings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ksp-savings-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--ksp-radius-lg);
    box-shadow: var(--ksp-shadow-lg);
}

.ksp-savings-text {
    padding-left: 40px;
}

.ksp-savings-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.ksp-savings-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--ksp-text-secondary);
}

.ksp-savings-feature i {
    color: var(--ksp-success);
    font-size: 20px;
    flex-shrink: 0;
}

.ksp-loan-services {
    padding: 80px 0;
    background: white;
}

.ksp-loan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ksp-loan-text {
    padding-right: 40px;
}

.ksp-loan-types {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 30px 0;
}

.ksp-loan-type {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--ksp-bg-light);
    border-radius: var(--ksp-radius-md);
    border-left: 4px solid var(--ksp-primary);
    transition: all 0.3s ease;
}

.ksp-loan-type:hover {
    background: white;
    box-shadow: var(--ksp-shadow-sm);
    transform: translateX(5px);
}

.ksp-loan-type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-primary-light) 100%);
    border-radius: var(--ksp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.ksp-loan-type-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ksp-text-primary);
}

.ksp-loan-type-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ksp-text-secondary);
}

.ksp-loan-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--ksp-radius-lg);
    box-shadow: var(--ksp-shadow-lg);
}

.ksp-services-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ksp-bg-light) 0%, white 100%);
}

.ksp-comparison-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.ksp-comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: var(--ksp-radius-lg);
    overflow: hidden;
    box-shadow: var(--ksp-shadow-md);
}

.ksp-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--ksp-border);
}

.ksp-comparison-row:last-child {
    border-bottom: none;
}

.ksp-comparison-header-row {
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-primary-light) 100%);
    color: white;
}

.ksp-comparison-cell {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.ksp-comparison-header-row .ksp-comparison-cell {
    font-weight: 700;
    font-size: 18px;
}

.ksp-comparison-feature {
    font-weight: 600;
    color: var(--ksp-text-primary);
}

.ksp-comparison-us {
    background: rgba(0, 212, 255, 0.05);
}

.ksp-comparison-us i {
    color: var(--ksp-success);
    font-size: 20px;
}

.ksp-comparison-others i {
    color: var(--ksp-text-light);
    font-size: 20px;
}

.ksp-application-process {
    padding: 80px 0;
    background: white;
}

.ksp-process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.ksp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ksp-process-step {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background: var(--ksp-bg-light);
    border-radius: var(--ksp-radius-lg);
    transition: all 0.3s ease;
}

.ksp-process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--ksp-shadow-md);
    background: white;
}

.ksp-process-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    box-shadow: var(--ksp-shadow-sm);
}

.ksp-process-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ksp-secondary) 0%, #FFD54F 100%);
    border-radius: var(--ksp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 24px;
    font-size: 32px;
    color: white;
}

.ksp-process-step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ksp-text-primary);
}

.ksp-process-step-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ksp-text-secondary);
}

.ksp-process-cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .ksp-savings-content {
        grid-template-columns: 1fr;
    }

    .ksp-savings-text {
        padding-left: 0;
    }

    .ksp-loan-content {
        grid-template-columns: 1fr;
    }

    .ksp-loan-text {
        padding-right: 0;
    }

    .ksp-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .ksp-page-hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .ksp-page-hero-title {
        font-size: 36px;
    }

    .ksp-page-hero-subtitle {
        font-size: 18px;
    }

    .ksp-section-title {
        font-size: 36px;
    }

    .ksp-savings-features {
        grid-template-columns: 1fr;
    }

    .ksp-comparison-table {
        display: block;
    }

    .ksp-comparison-row {
        display: block;
        border-bottom: 2px solid var(--ksp-border);
        padding: 20px;
    }

    .ksp-comparison-header-row {
        display: none;
    }

    .ksp-comparison-cell {
        padding: 12px 0;
        display: block;
    }

    .ksp-comparison-feature {
        font-weight: 700;
        color: var(--ksp-primary);
        margin-bottom: 8px;
        display: block;
    }

    .ksp-process-steps {
        grid-template-columns: 1fr;
    }
}

