/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0.0
*/

.leap-hero {
    background: linear-gradient(160deg, #fefefe 0%, #f8fafc 40%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
}

.leap-hero::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.leap-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.leap-text-section {
    flex: 1;
    max-width: 520px;
}

.leap-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 24px;
}

.leap-main-title .highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.leap-description {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 40px;
}

.leap-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* 버튼 - 동일한 스타일 */
.leap-cta-primary,
.leap-cta-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    min-width: 160px !important;
    padding: 16px 28px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    border-radius: 12px !important;
    border: 2px solid #e5e7eb !important;
    background: #fff !important;
    color: #374151 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

/* Primary 버튼만 색상 변경 */
.leap-cta-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3) !important;
}

.leap-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4) !important;
    color: #fff !important;
}

.leap-cta-secondary:hover {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

/* 신뢰 지표 */
.leap-trust-indicators {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.leap-trust-item {
    display: flex;
    flex-direction: column;
}

.leap-trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
}

.leap-trust-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 6px;
}

/* 이미지 영역 */
.leap-image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leap-image-wrapper {
    position: relative;
}

.leap-image-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(99, 102, 241, 0.12) 100%);
    border-radius: 50%;
}

.leap-profile-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* 특징 섹션 */
.leap-features {
    padding: 60px 40px;
    background: #fff;
}

.leap-features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.leap-section-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.leap-section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.leap-section-desc {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.leap-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.leap-feature-card {
    background: #fafbfc;
    padding: 36px 32px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.leap-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.12);
}

.leap-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.leap-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.leap-feature-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
}

/* 반응형 */
@media (max-width: 900px) {
    .leap-hero { padding: 40px 24px; }
    .leap-hero-container { flex-direction: column; text-align: center; }
    .leap-text-section { order: 2; max-width: 100%; }
    .leap-image-section { order: 1; margin-bottom: 40px; }
    .leap-cta-group { justify-content: center; }
    .leap-trust-indicators { justify-content: center; }
    .leap-profile-img { max-width: 280px; }
    .leap-main-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .leap-main-title { font-size: 1.7rem; }
    .leap-profile-img { max-width: 220px; }
    .leap-trust-indicators { flex-direction: column; gap: 20px; align-items: center; }
    .leap-cta-group { flex-direction: column; width: 100%; }
    .leap-cta-primary, .leap-cta-secondary { width: 100% !important; }
}

/* 페이지 타이틀 배경 - 연한 파란색 */
.entry-hero-container-inner {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
}

/* 페이지 타이틀 높이 줄이기 */
.entry-hero-container-inner {
    min-height: 100px !important;
    height: auto !important;
}
.entry-hero.page-hero-section {
    min-height: 100px !important;
}

/* 페이지 타이틀 높이 강제 조정 */
.entry-hero.page-hero-section,
.entry-hero.page-hero-section .entry-hero-container-inner {
    min-height: 80px !important;
    max-height: 100px !important;
    height: 100px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

/* 페이지 타이틀 중앙 정렬 */
.entry-hero.page-hero-section .entry-hero-container-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.entry-hero.page-hero-section .hero-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.entry-hero.page-hero-section .entry-header {
    margin: 0 !important;
    padding: 0 !important;
}
.entry-hero.page-hero-section .entry-title {
    margin: 0 !important;
    padding: 0 !important;
}
