.ksp-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    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-history-foundation {
    padding: 80px 0;
    background: white;
}

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

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

.ksp-history-foundation-visual {
    position: relative;
}

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

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

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

.ksp-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.ksp-timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
}

.ksp-timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 60px;
}

.ksp-timeline-item:last-child {
    margin-bottom: 0;
}

.ksp-timeline-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ksp-primary) 0%, var(--ksp-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: var(--ksp-shadow-md);
    z-index: 2;
}

.ksp-timeline-year {
    font-size: 32px;
    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: 12px;
}

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

.ksp-timeline-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ksp-text-secondary);
}

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

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

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

.ksp-milestone-card {
    background: var(--ksp-bg-light);
    padding: 40px;
    border-radius: var(--ksp-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.ksp-milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ksp-shadow-lg);
    background: white;
    border-top-color: var(--ksp-primary);
}

.ksp-milestone-icon {
    width: 80px;
    height: 80px;
    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 24px;
    font-size: 32px;
    color: white;
}

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

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

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

.ksp-achievements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.ksp-achievements-visual {
    position: sticky;
    top: 120px;
}

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

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

.ksp-achievement-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.ksp-achievement-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: white;
    border-radius: var(--ksp-radius-md);
    box-shadow: var(--ksp-shadow-sm);
    transition: all 0.3s ease;
}

.ksp-achievement-item:hover {
    box-shadow: var(--ksp-shadow-md);
    transform: translateX(5px);
}

.ksp-achievement-year {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ksp-secondary) 0%, #FFD54F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 80px;
}

.ksp-achievement-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ksp-text-primary);
}

.ksp-achievement-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ksp-text-secondary);
}

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

    .ksp-history-foundation-text {
        padding-right: 0;
    }

    .ksp-timeline-container {
        padding-left: 40px;
    }

    .ksp-timeline-item {
        padding-left: 40px;
    }

    .ksp-timeline-icon {
        left: -30px;
    }

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

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

    .ksp-achievements-visual {
        position: relative;
        top: 0;
    }

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

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

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

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

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

    .ksp-timeline-container {
        padding-left: 30px;
    }

    .ksp-timeline-container::before {
        left: 15px;
    }

    .ksp-timeline-item {
        padding-left: 30px;
    }

    .ksp-timeline-icon {
        left: -20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .ksp-timeline-year {
        font-size: 24px;
    }

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

    .ksp-achievement-item {
        flex-direction: column;
        gap: 16px;
    }

    .ksp-achievement-year {
        min-width: auto;
    }
}

