/* Kamos Common Footer CSS */
.kfooter-wrapper {
    margin-top: 5rem;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    color: #333333;
}

.kfooter-cta-container {
    max-width: 1440px;
    margin: 8rem auto 2.5rem;
    padding: 0 1rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .kfooter-cta-container {
        padding: 0 5rem;
    }
}

.kfooter-cta-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 3rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.kfooter-orb-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.kfooter-orb-green {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    transform: translate(50%, 50%);
    pointer-events: none;
}

.kfooter-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 10;
    color: #1e293b;
}

@media (min-width: 768px) {
    .kfooter-cta-title {
        font-size: 3rem;
    }
}

.kfooter-cta-desc {
    font-size: 1.125rem;
    color: #475569;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .kfooter-cta-desc {
        font-size: 1.25rem;
    }
}

.kfooter-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    flex-direction: column;
}

@media (min-width: 640px) {
    .kfooter-cta-actions {
        flex-direction: row;
    }
}

.kfooter-btn {
    position: relative;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.kfooter-btn-primary {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

.kfooter-btn-primary:hover {
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.kfooter-btn-secondary {
    background: #0f172a;
    border: 1px solid #334155;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.kfooter-btn-secondary:hover {
    background: #1e293b;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.kfooter-bottom {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center;
    pointer-events: none;
}

.kfooter-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.kfooter-logo-img {
    height: 1.5rem;
    width: auto;
    display: block;
}

.kfooter-app-name {
    color: #333333;
    font-weight: 700;
    font-size: 0.875rem;
}

.kfooter-copyright {
    color: #6b7280;
    font-size: 10px;
    letter-spacing: 0.1em;
}