@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');

.kano-landing-page {
    font-family: 'Manrope', 'Pretendard Variable', Pretendard, 'Noto Sans KR', sans-serif;
    color: #131b2e; /* on-surface */
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #131b2e;
}

/* Utilities */
.text-primary-brand { color: #3089C7; }
.bg-surface-light { background-color: #F8FAFC; }
.bg-inverse-surface { background-color: #283044; color: #ffffff; }

/* Buttons */
.kano-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3089C7;
    color: #ffffff;
    border-radius: 8px; /* 0.5rem */
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0px 10px 20px rgba(48, 137, 199, 0.2);
    text-decoration: none;
}
.kano-btn-primary:hover {
    background-color: #006195;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0px 12px 24px rgba(48, 137, 199, 0.3);
}

.kano-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #3089C7;
    border: 2px solid #3089C7;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.kano-btn-outline:hover {
    background-color: #f2f3ff; /* surface-container-low */
    color: #006195;
}

/* Hero Section */
.kano-hero {
    position: relative;
    background-color: #F8FAFC;
    padding: 120px 0 100px;
    overflow: hidden;
}
/* Orb gradient for Hero */
.kano-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(48, 137, 199, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.kano-hero .container {
    position: relative;
    z-index: 2;
}

/* Step Cards */
.kano-step-card {
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: none;
}
.kano-step-card:hover {
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
    border-color: #c0c7d1;
}
.icon-container {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.icon-blue { background-color: #E0F2FE; color: #0284C7; }
.icon-indigo { background-color: #E0E7FF; color: #4F46E5; }
.icon-sky { background-color: #E0F2FE; color: #3089C7; }

/* Image sections */
.feature-img-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
    overflow: hidden;
}
.feature-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.feature-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #131b2e;
    line-height: 1.2;
}
.feature-desc {
    color: #404850; /* on-surface-variant */
    font-size: 18px;
    line-height: 1.6;
}

/* Section Spacing */
.kano-section {
    padding: 80px 0; /* unit-xxl gap */
}

/* List Style */
.kano-list {
    list-style: none;
    padding-left: 0;
}
.kano-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    color: #404850;
    font-size: 16px;
    font-weight: 500;
}
.kano-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: #3089C7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Custom categories list for Kano definitions */
.kano-def-list li::before {
    display: none;
}
.kano-def-list li {
    padding-left: 0;
    margin-bottom: 24px;
}
.badge-excitement { background-color: #E0F2FE; color: #0284C7; padding: 4px 12px; border-radius: 9999px; font-weight: 700; margin-bottom: 8px; display: inline-block; font-size: 14px;}
.badge-performance { background-color: #F3F0FF; color: #7C3AED; padding: 4px 12px; border-radius: 9999px; font-weight: 700; margin-bottom: 8px; display: inline-block; font-size: 14px;}
.badge-basic { background-color: #DCFCE7; color: #16A34A; padding: 4px 12px; border-radius: 9999px; font-weight: 700; margin-bottom: 8px; display: inline-block; font-size: 14px;}
.badge-indifferent { background-color: #F1F5F9; color: #64748B; padding: 4px 12px; border-radius: 9999px; font-weight: 700; margin-bottom: 8px; display: inline-block; font-size: 14px;}
.badge-reverse { background-color: #FEE2E2; color: #ba1a1a; padding: 4px 12px; border-radius: 9999px; font-weight: 700; margin-bottom: 8px; display: inline-block; font-size: 14px;}

/* Bottom CTA Box */
.kano-cta-box {
    background-color: #f2f3ff; /* surface-container-low */
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
    .kano-cta-box {
        padding: 40px 20px;
    }
}

/* Pricing Table */
.title-underline {
    width: 48px;
    height: 3px;
    background-color: #3089C7;
    margin: 0 auto;
}

.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.pricing-table {
    margin-bottom: 0;
    white-space: nowrap;
    border-collapse: collapse;
}

.pricing-table thead {
    background-color: #3089C7;
}

.pricing-table thead th {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 16px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-table thead th:last-child {
    border-right: none;
}

.pricing-table tbody td {
    padding: 16px;
    vertical-align: middle;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Calculator specific */
.pricing-summary-card {
    border: 1px solid #e2e8f0;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
