
.bento-item,
.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border-color: rgba(66, 133, 244, 0.08);
    box-shadow:
        0 4px 28px rgba(15, 23, 42, 0.05),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.bento-item::before {
    opacity: 0.12;
}

.bento-item:hover {
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(99, 102, 241, 0.06);
}

.feature-card:hover {
    box-shadow:
        0 22px 48px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(66, 133, 244, 0.07);
}

.hero .home-hero-note {
    margin-top: 1.2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
    color: #9aa0a6;
    line-height: 1.6;
}

.hero .home-hero-note a {
    color: var(--accent-blue);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero .home-hero-note a:hover {
    opacity: 0.82;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.usecase-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.usecase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: rgba(0, 0, 0, 0.06);
}

.usecase-header {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.uc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .5s ease;
}
.usecase-card:hover .uc-img {
    transform: scale(1.07);
}

.usecase-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.2));
    z-index: 1;
}

.uc-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    z-index: 3;
}

.usecase-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 7px;
    line-height: 1.4;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    padding: 16px 16px 0;
}

.usecase-card p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.62;
    margin: 0;
    padding: 0 16px 18px;
}

/* ========= FAQ ========= */
.home-faq-block {
    max-width: 820px;
    margin: 0 auto;
    padding: 8px 20px 4px;
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.home-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.home-faq-item:last-child {
    border-bottom: none;
}

.home-faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.home-faq-item p {
    text-align: left;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.home-resource-links {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(66, 133, 244, 0.14);
    background: rgba(66, 133, 244, 0.04);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.home-resource-links p {
    margin: 0;
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.home-resource-links a {
    font-weight: 500;
}

@media (max-width: 960px) {
    .usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .usecase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .usecase-header {
        height: 100px;
    }

    .usecase-card h3 {
        font-size: 0.88rem;
        padding: 12px 12px 0;
    }

    .usecase-card p {
        font-size: 0.8rem;
        padding: 0 12px 14px;
    }
}

/* ── Hero Inline Pricing Strip ── */
.hero-pricing-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    margin-top: 28px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}

.hps-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 14px 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    min-width: 0;
    position: relative;
}

.hps-item:hover { background: rgba(139, 92, 246, 0.05); }

.hps-featured {
    background: rgba(139, 92, 246, 0.06);
    padding-top: 26px;
}

.hps-featured:hover { background: rgba(139, 92, 246, 0.11); }

.hps-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 0 0 6px 6px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.hps-plan {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.hps-featured .hps-plan { color: #8b5cf6; font-weight: 600; }
.hps-free .hps-plan { color: var(--accent-green); font-weight: 600; }

.hps-price {
    font-size: 0.82rem;
    color: var(--text-primary);
    font-weight: 400;
    white-space: nowrap;
}

.hps-price strong {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hps-featured .hps-price strong { color: #8b5cf6; }
.hps-free .hps-price strong { color: var(--accent-green); }

.hps-price em {
    font-size: 0.68rem;
    font-style: normal;
    color: var(--text-secondary);
    margin-left: 1px;
}

.hps-desc {
    font-size: 0.65rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.hps-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.07);
    align-self: stretch;
    flex-shrink: 0;
}

.hps-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.hps-more:hover { color: #8b5cf6; background: rgba(139, 92, 246, 0.05); }

@media (max-width: 600px) {
    .hero-pricing-strip {
        flex-wrap: wrap;
        max-width: 100%;
        border-radius: 12px;
    }
    .hps-item { flex: 1 1 40%; padding: 12px 8px; }
    .hps-divider { display: none; }
    .hps-more { flex: 1 1 100%; border-left: none; border-top: 1px solid rgba(0,0,0,0.07); padding: 10px; }
}
