/* ==========================================================================
   top.css — トップページ専用スタイル (.page-index スコープ)
   Bulma 1.0.4 + base.css の後に読み込む
   ========================================================================== */

/* ---------- Reset: Bulma 1.x CSS変数のトップページ向け調整 ---------- */
.page-index {
    --bulma-body-background-color: #ffffff;
    --bulma-body-color: #1d2c3f;
    --bulma-body-font-size: 1rem;
    --bulma-body-line-height: 1.6;
}

/* ---------- Utility ---------- */
.is-clickable { cursor: pointer !important; }

/* ---------- Card thickness plan selection ---------- */
.js-plan-card { cursor: pointer; transition: box-shadow 0.15s ease, border-color 0.15s ease; }
.card-thickness__col--03.is-plan-selected { border-color: #4c68c0; box-shadow: 0 4px 16px rgba(76,104,192,0.18); }
.card-thickness__col--05.is-plan-selected { border-color: #4c68c0; box-shadow: 0 4px 16px rgba(76,104,192,0.18); }
.card-thickness__col--07.is-plan-selected { border-color: #C9A24D; box-shadow: 0 4px 16px rgba(201,162,77,0.18); }
.card-thickness__col--03:hover { box-shadow: 0 4px 16px rgba(76,104,192,0.18); }
.card-thickness__col--05:hover { box-shadow: 0 4px 16px rgba(76,104,192,0.18); }
.card-thickness__col--07:hover { box-shadow: 0 4px 16px rgba(201,162,77,0.18); }

/* ---------- Bulma 1.x バーガーメニュー: 3span で3線表示に統一 ---------- */
.page-index .navbar-burger span:first-child {
    top: calc(50% - var(--bulma-burger-gap) - var(--bulma-burger-item-height));
}
.page-index .navbar-burger span:nth-child(2) {
    top: calc(50% - var(--bulma-burger-item-height) / 2);
}
.page-index .navbar-burger span:nth-child(3) {
    bottom: auto;
    top: calc(50% + var(--bulma-burger-gap));
}

/* ---------- Max-width wrapper ---------- */
.top-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* ---------- Key Visual ---------- */
.kv {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4d4d8 0%, #e4e4e7 50%, #f4f4f5 100%);
}

.kv__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,0.7) 100%);
    pointer-events: none;
}

/* KV inner wrapper — centers content within max-width */
.kv__inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 100%;
}

.kv__text {
    position: absolute;
    top: 155px;
    right: 140px;
    width: 485px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kv__main-copy {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4;
    color: #1d2c3f;
}

.kv__rotating-word {
    display: inline-block;
    min-width: 3em;
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    color: #4c68c0;
}
.kv__rotating-word.is-fading-out {
    opacity: 0;
    transform: translateY(-8px);
}
.kv__rotating-word.is-fading-in {
    animation: kv-fade-in 0.4s ease forwards;
}
@keyframes kv-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.kv__brand {
    font-size: 22px;
    font-weight: 600;
    color: #4c68c0;
    letter-spacing: 1px;
}

.kv__sub-copy {
    font-size: 17px;
    font-weight: 500;
    color: #555555;
}

.kv__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.kv__cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9D91F7 0%, #8A7CF5 50%, #7568E0 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.kv__cta-primary:hover {
    background: linear-gradient(135deg, #8A7CF5 0%, #7568E0 50%, #6356CC 100%);
    color: #ffffff;
}

.kv__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #FFFFFF;
    color: #363636;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #cccccc;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.kv__cta-secondary:hover {
    background: #F8F8FA;
    color: #363636;
}

/* ---------- Trust Badge Bar ---------- */
.trust-bar {
    width: 100%;
    background: #F8F8FA;
    border-top: 1px solid #E8E8EC;
    border-bottom: 1px solid #E8E8EC;
}

.trust-bar__inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    height: 80px;
    padding: 0 60px;
}

.trust-bar__badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-bar__icon {
    font-size: 20px;
    color: #4c68c0;
}

.trust-bar__text {
    font-size: 13px;
    font-weight: 600;
    color: #363636;
}

/* PC: show full text, hide short */
.trust-bar__text--short {
    display: none;
}

/* ---------- Target Segment ---------- */
.segment {
    background: #FFFFFF;
}

.segment__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 120px;
}

.segment__title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.segment__subtitle {
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.segment__cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.segment__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 260px;
    padding: 24px 32px;
    background: #FFFFFF;
    border: 1px solid #E0E4EC;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.segment__card-icon {
    font-size: 32px;
    color: #4c68c0;
}

.segment__card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.segment__card-desc {
    font-size: 12px;
    color: #888888;
    text-align: center;
}

/* ---------- Problem & Solution ---------- */
.problem-solution {
    background: #FFFFFF;
}

.problem-solution__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 60px 120px;
}

.problem-solution__problem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.problem-solution__problem-title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.problem-solution__problem-desc {
    font-size: 15px;
    color: #666666;
    text-align: center;
    line-height: 1.7;
    max-width: 899px;
}

.problem-solution__arrow {
    font-size: 32px;
    color: #4c68c0;
}

.problem-solution__solution-title {
    font-size: 24px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.problem-solution__cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.problem-solution__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 270px;
    padding: 28px 24px;
    background: #F5F7FB;
    border-radius: 12px;
}

.problem-solution__card-icon {
    font-size: 36px;
    color: #4c68c0;
}

.problem-solution__card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.problem-solution__card-desc {
    font-size: 13px;
    color: #666666;
    text-align: center;
    line-height: 1.6;
}

/* ---------- Features ---------- */
.features {
    background: #FFFFFF;
}

.features__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 60px 120px;
}

.features__title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.features__cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
}

.features__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 360px;
    padding: 32px 28px;
    background: #FFFFFF;
    border: 1px solid #E8ECF2;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.features__card-image {
    width: 100%;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
}

.features__card-image img,
.features__card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features__card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d2c3f;
}

.features__card-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

.features__jasrac {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: #F0F2F8;
    border-radius: 8px;
}

.features__jasrac-icon {
    font-size: 24px;
    color: #4c68c0;
}

.features__jasrac-text {
    font-size: 14px;
    font-weight: 500;
    color: #3b5aa8;
}

/* ---------- Card Thickness ---------- */
.card-thickness {
    background: #FFFFFF;
}

.card-thickness__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 50px 100px;
}

.card-thickness__title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.card-thickness__subtitle {
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.card-thickness__columns {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.card-thickness__col {
    display: flex;
    flex-direction: column;
    width: 380px;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
}

.card-thickness__col--03 {
    border: 1px solid #E0E4EC;
}

.card-thickness__col--05 {
    border: 2px solid #4c68c0;
}

.card-thickness__col--07 {
    border: 1px solid #C9A24D;
}

/* Ribbons */
.card-thickness__ribbon--03 {
    height: 28px;
    background: #F8F8FA;
}

.card-thickness__ribbon--05 {
    padding: 8px 0;
    background: #4c68c0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.card-thickness__ribbon--07 {
    padding: 8px 0;
    background: linear-gradient(90deg, #D4AF37, #C9A24D);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Headers */
.card-thickness__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px;
    width: 100%;
}

.card-thickness__header--03 { background: #F8F8FA; }
.card-thickness__header--05 { background: #F0F2F8; gap: 6px; padding: 16px; }
.card-thickness__header--07 { background: #FBF8F0; gap: 6px; padding: 16px; }

.card-thickness__label {
    font-size: 12px;
    color: #888888;
    text-align: center;
}
.card-thickness__label--05 { color: #4c68c0; }
.card-thickness__label--07 { color: #C9A24D; }

.card-thickness__size {
    font-size: 32px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

/* Body rows */
.card-thickness__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px;
}

.card-thickness__row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #363636;
}

.card-thickness__row-icon {
    font-size: 16px;
    color: #4c68c0;
    width: 16px;
    text-align: center;
}

.card-thickness__row-icon--07 {
    font-size: 16px;
    color: #C9A24D;
    width: 16px;
    text-align: center;
}

.card-thickness__row--disabled {
    color: #bbbbbb;
}

.card-thickness__row-icon--disabled {
    font-size: 16px;
    color: #cccccc;
    width: 16px;
    text-align: center;
}

/* Price row */
.card-thickness__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid #E0E4EC;
}

.card-thickness__price-text {
    font-size: 16px;
    font-weight: 700;
    color: #1d2c3f;
}
.card-thickness__price-text--05 { color: #4c68c0; }
.card-thickness__price-text--07 { color: #C9A24D; }

.card-thickness__price-tax {
    font-size: 11px;
    color: #888888;
}

/* Note & CTA */
.card-thickness__note {
    font-size: 12px;
    color: #999999;
    text-align: center;
}

.card-thickness__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #5a7fd4 0%, #4c68c0 50%, #3b5aa8 100%);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.card-thickness__cta:hover {
    background: linear-gradient(135deg, #4c68c0 0%, #3b5aa8 50%, #2e4a96 100%);
    color: #FFFFFF;
}

/* ---------- SP Responsive ---------- */
@media screen and (max-width: 768px) {
    /* Key Visual SP */
    .kv {
        height: 620px;
        background: linear-gradient(180deg, #d4d4d8 0%, #e4e4e7 40%, #f4f4f5 100%);
    }

    .kv__overlay {
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8) 55%, rgba(255,255,255,1) 75%);
    }

    .kv__inner {
        position: static;
        transform: none;
        max-width: none;
    }

    .kv__text {
        position: absolute;
        top: auto;
        bottom: 35px;
        right: 0;
        left: 0;
        width: 100%;
        padding: 0 28px 0 28px;
        gap: 14px;
        align-items: center;
        text-align: center;
        transform: translateY(-10px);
    }

    .kv__main-copy {
        font-size: 28px;
        line-height: 1.45;
        text-align: center;
    }

    .kv__brand {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .kv__sub-copy {
        font-size: 13px;
    }

    .kv__cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }

    .kv__cta-primary,
    .kv__cta-secondary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 0;
    }

    .kv__cta-secondary {
        padding: 12px 0;
    }

    /* Trust Badge Bar SP */
    .trust-bar__inner {
        height: auto;
        padding: 16px 8px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .trust-bar__badge {
        width: auto;
        justify-content: flex-start;
        padding: 8px 12px;
        gap: 8px;
    }

    .trust-bar__icon {
        font-size: 16px;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }

    .trust-bar__text {
        font-size: 11px;
    }

    /* SP: show short text, hide full */
    .trust-bar__text--full {
        display: none;
    }
    .trust-bar__text--short {
        display: inline;
    }

    /* Target Segment SP */
    .segment__inner {
        padding: 32px 20px;
        gap: 20px;
    }

    .segment__title {
        font-size: 22px;
    }

    .segment__subtitle {
        font-size: 13px;
    }

    .segment__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .segment__card {
        width: auto;
        padding: 20px 16px;
    }

    .segment__card-icon {
        font-size: 28px;
    }

    .segment__card-title {
        font-size: 14px;
    }

    .segment__card-desc {
        font-size: 11px;
    }

    /* Problem & Solution SP */
    .problem-solution__inner {
        padding: 40px 20px;
        gap: 32px;
    }

    .problem-solution__problem-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .problem-solution__problem-desc {
        font-size: 13px;
    }

    .problem-solution__arrow {
        font-size: 24px;
    }

    .problem-solution__solution-title {
        font-size: 20px;
    }

    .problem-solution__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .problem-solution__card {
        width: auto;
        padding: 20px 16px;
    }

    .problem-solution__card-icon {
        font-size: 28px;
    }

    .problem-solution__card-title {
        font-size: 13px;
    }

    .problem-solution__card-desc {
        font-size: 12px;
    }

    /* Features SP */
    .features__inner {
        padding: 40px 20px;
        gap: 28px;
    }

    .features__title {
        font-size: 22px;
    }

    .features__cards {
        flex-direction: column;
        gap: 20px;
    }

    .features__card {
        width: 100%;
        padding: 24px 20px;
    }

    .features__card-image {
        height: 180px;
    }

    .features__card-title {
        font-size: 16px;
    }

    .features__card-desc {
        font-size: 13px;
    }

    .features__jasrac {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 20px;
    }

    .features__jasrac-text {
        font-size: 12px;
    }

    /* Card Thickness SP */
    .card-thickness__inner {
        padding: 40px 16px;
        gap: 20px;
    }

    .card-thickness__title {
        font-size: 22px;
    }

    .card-thickness__subtitle {
        font-size: 13px;
    }

    .card-thickness__columns {
        flex-direction: column;
        gap: 16px;
    }

    .card-thickness__col {
        width: 100%;
    }

    .card-thickness__size {
        font-size: 28px;
    }

    .card-thickness__row {
        font-size: 13px;
    }

    .card-thickness__note {
        font-size: 11px;
    }

    .card-thickness__cta {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 0;
    }
}

/* ========================================================================
   Reassurance
   ======================================================================== */
.reassurance {
    background: #F8F8FA;
    padding: 48px 0;
}

.reassurance__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.reassurance__title {
    font-size: 22px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.reassurance__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.reassurance__item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 280px;
}

.reassurance__icon {
    font-size: 28px;
    color: #4c68c0;
    flex-shrink: 0;
}

.reassurance__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reassurance__heading {
    font-size: 14px;
    font-weight: 700;
    color: #1d2c3f;
}

.reassurance__sub {
    font-size: 12px;
    color: #666666;
}

/* ========================================================================
   Mid CTA
   ======================================================================== */
.mid-cta {
    background: #F2F2F2;
    padding: 60px 0;
}

.mid-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mid-cta__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mid-cta__title {
    font-size: 22px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
    line-height: 1.4;
}

.mid-cta__sub {
    font-size: 14px;
    color: #666666;
    text-align: center;
}

.mid-cta__content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}

.mid-cta__image {
    flex-shrink: 0;
}

.mid-cta__image img {
    width: 350px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.mid-cta__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mid-cta__list-title {
    font-size: 14px;
    font-weight: 700;
    color: #1d2c3f;
}

.mid-cta__list-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mid-cta__list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555555;
}

.mid-cta__check-icon {
    color: #4c68c0;
    font-size: 16px;
    flex-shrink: 0;
}

.mid-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.mid-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mid-cta__btn:hover {
    opacity: 0.85;
}

.mid-cta__btn--primary {
    background: linear-gradient(135deg, #9D91F7 0%, #8A7CF5 50%, #7568E0 100%);
    color: #FFFFFF;
}

.mid-cta__btn--secondary {
    background: #FFFFFF;
    color: #363636;
    border: 1px solid #cccccc;
}

.mid-cta__contact {
    font-size: 13px;
    color: #999999;
}

.mid-cta__contact-link {
    color: #4c68c0;
    font-weight: 600;
    text-decoration: none;
}

.mid-cta__contact-link:hover {
    text-decoration: underline;
}

/* ========================================================================
   Case Studies
   ======================================================================== */
.case-studies {
    background: #FFFFFF;
    padding: 60px 0;
}

.case-studies__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.case-studies__title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    grid-template-rows: auto auto auto auto 1fr auto;
    justify-content: center;
    gap: 8px 24px;
    width: 100%;
    max-width: 1158px;
}

.case-card {
    display: grid;
    grid-row: span 6;
    grid-template-rows: subgrid;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #E0E4EC;
    border-radius: 12px;
    padding: 20px 24px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

.case-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.case-card__logo-area {
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
}

.case-card__logo-img {
    max-width: 240px;
    max-height: 56px;
    height: auto;
    object-fit: contain;
}

.case-card__company {
    grid-row: 2;
    font-size: 16px;
    font-weight: 700;
    color: #1d2c3f;
    letter-spacing: 0.02em;
}

.case-card__kpi-badge {
    grid-row: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #EEF2FF;
    color: #4c68c0;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
}

.case-card__headline {
    grid-row: 4;
    font-size: 16px;
    font-weight: 700;
    color: #1d2c3f;
    line-height: 1.5;
}

.case-card__excerpt {
    grid-row: 5;
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
}

.case-card__footer {
    grid-row: 6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: #F0F2F8;
    border-radius: 6px;
    padding: 8px 16px;
    color: #4c68c0;
    font-size: 13px;
    font-weight: 600;
    align-self: end;
}

.case-studies__more {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 1158px;
}

.case-studies__more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #4c68c0;
    text-decoration: none;
}

.case-studies__more-link:hover {
    text-decoration: underline;
    color: #4c68c0;
}

/* ========================================================================
   Creators Voice
   ======================================================================== */
.creators-voice {
    background: #FFFFFF;
    padding: 60px 0;
}

.creators-voice__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.creators-voice__more {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 1158px;
}

.creators-voice__more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #4c68c0;
    text-decoration: none;
}

.creators-voice__more-link:hover {
    text-decoration: underline;
    color: #4c68c0;
}

.creators-voice__title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.creators-voice__grid {
    display: grid;
    grid-template-columns: repeat(3, 370px);
    grid-template-rows: auto auto 1fr auto;
    justify-content: center;
    gap: 16px 24px;
    width: 100%;
    max-width: 1158px;
}

.voice-card {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #E0E4EC;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

.voice-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.voice-card__top {
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.voice-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E8E8EC;
    overflow: hidden;
    flex-shrink: 0;
}

.voice-card__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.voice-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #1d2c3f;
}

.voice-card__role {
    font-size: 11px;
    color: #888888;
}

.voice-card__quote {
    grid-row: 2;
    font-size: 16px;
    font-weight: 700;
    color: #1d2c3f;
    line-height: 1.5;
}

.voice-card__detail {
    grid-row: 3;
    font-size: 12px;
    color: #666666;
    line-height: 1.6;
}

.voice-card__footer {
    grid-row: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    background: #F0F2F8;
    border-radius: 6px;
    padding: 8px 16px;
    color: #4c68c0;
    font-size: 13px;
    font-weight: 600;
    align-self: end;
}

/* ========================================================================
   SP Responsive - Reassurance / Mid CTA / Case Studies / Creators Voice
   ======================================================================== */
@media screen and (max-width: 768px) {
    /* Reassurance SP */
    .reassurance {
        padding: 40px 20px;
    }

    .reassurance__title {
        font-size: 20px;
    }

    .reassurance__grid {
        flex-direction: column;
        gap: 0;
    }

    .reassurance__item {
        width: 100%;
        gap: 16px;
        padding: 16px 20px;
        border-bottom: 1px solid #E0E4EC;
    }

    .reassurance__item:last-child {
        border-bottom: none;
    }

    .reassurance__heading {
        font-size: 15px;
    }

    .reassurance__sub {
        font-size: 13px;
    }

    /* Mid CTA SP */
    .mid-cta {
        padding: 48px 20px;
    }

    .mid-cta__title {
        font-size: 22px;
    }

    .mid-cta__content {
        flex-direction: column;
        gap: 24px;
    }

    .mid-cta__image img {
        width: 100%;
        max-width: 300px;
    }

    .mid-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .mid-cta__btn {
        justify-content: center;
        width: 100%;
    }

    /* Case Studies SP */
    .case-studies {
        padding: 48px 20px;
    }

    .case-studies__title {
        font-size: 22px;
    }

    .case-studies__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .case-card {
        width: 100%;
        grid-row: auto;
        grid-template-rows: none;
        min-height: 240px;
    }

    /* Creators Voice SP */
    .creators-voice {
        padding: 48px 20px;
    }

    .creators-voice__title {
        font-size: 22px;
    }

    .creators-voice__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .voice-card {
        width: 100%;
        grid-row: auto;
        grid-template-rows: none;
        min-height: 220px;
    }
}

/* ========================================================================
   FAQ
   ======================================================================== */
.top-faq {
    background: #F8F8FA;
    padding: 60px 0;
}

.top-faq__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 1040px;
    margin: 0 auto;
}

.top-faq__title {
    font-size: 26px;
    font-weight: 700;
    color: #1d2c3f;
    text-align: center;
}

.top-faq__list {
    width: 100%;
    border: 1px solid #E0E4EC;
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
}

.top-faq__item {
    border-bottom: 1px solid #E0E4EC;
}

.top-faq__item:last-child {
    border-bottom: none;
}

.top-faq__question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 0;
}

.top-faq__q-label {
    font-size: 19px;
    font-weight: 700;
    color: #4c68c0;
    flex-shrink: 0;
}

.top-faq__q-text {
    font-size: 17px;
    font-weight: 600;
    color: #1d2c3f;
    flex: 1;
}

.top-faq__answer {
    padding: 12px 24px 20px 52px;
}

.top-faq__a-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
}

.top-faq__a-text a {
    color: #4c68c0;
    text-decoration: underline;
}

.top-faq__more {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.top-faq__more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #4c68c0;
    text-decoration: none;
}

.top-faq__more-link:hover {
    text-decoration: underline;
    color: #4c68c0;
}

/* ========================================================================
   Bottom CTA
   ======================================================================== */
.bottom-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    padding: 80px 0;
}

.bottom-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.bottom-cta__title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.5;
}

.bottom-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.bottom-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.bottom-cta__btn:hover {
    opacity: 0.85;
}

.bottom-cta__btn--primary {
    background: linear-gradient(135deg, #9D91F7 0%, #8A7CF5 50%, #7568E0 100%);
    color: #FFFFFF;
}

.bottom-cta__btn--order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #5a7fd4 0%, #4c68c0 50%, #3b5aa8 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bottom-cta__btn--order:hover {
    background: linear-gradient(135deg, #4c68c0 0%, #3b5aa8 50%, #2f4d96 100%);
}

.bottom-cta__btn--secondary {
    background: #FFFFFF;
    color: #363636;
    border: 1px solid #cccccc;
}

.bottom-cta__contact {
    font-size: 13px;
    color: #999999;
}

.bottom-cta__contact-link {
    color: #cccccc;
    font-weight: 600;
    text-decoration: none;
}

.bottom-cta__contact-link:hover {
    text-decoration: underline;
    color: #cccccc;
}

/* ========================================================================
   Floating CTA - top page overrides
   ======================================================================== */
.page-index .floating-btn {
    border-radius: 8px;
}

.page-index .floating-btn-link {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.page-index .floating-btn-sample {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index .floating-btn-document {
    background: #FFFFFF;
    color: #363636;
    border: 1px solid #cccccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index .floating-btn-document:hover {
    background: #F8F8FA;
    color: #363636;
}

/* SP overrides */
@media screen and (max-width: 767px) {
    .page-index .floating-btn {
        background-color: rgba(255, 255, 255, 0.93);
        border-top: 1px solid #E0E4EC;
        border-radius: 0;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
        padding: 8px 12px;
        height: 60px;
    }

    .page-index .floating-btn-inner {
        height: 100%;
        align-items: center;
    }

    .page-index .floating-btn-link {
        justify-content: center;
        font-size: 12px;
        padding: 10px 6px;
        gap: 2px;
    }
    .page-index .floating-btn-link .mr-1 {
        margin-right: 0 !important;
    }

    .page-index .floating-btn-sample {
        flex: 1;
    }

    .page-index .floating-btn-document {
        flex: 1;
    }
}

/* ========================================================================
   SP Responsive - FAQ / Bottom CTA
   ======================================================================== */
@media screen and (max-width: 768px) {
    /* FAQ SP */
    .top-faq {
        padding: 48px 20px;
    }

    .top-faq__title {
        font-size: 20px;
    }

    .top-faq__question {
        padding: 16px;
        gap: 8px;
    }

    .top-faq__q-text {
        font-size: 14px;
    }

    .top-faq__answer {
        padding: 0 16px 16px 40px;
    }

    .top-faq__a-text {
        font-size: 12px;
    }

    /* Bottom CTA SP */
    .bottom-cta {
        padding: 60px 20px;
    }

    .bottom-cta__title {
        font-size: 24px;
    }

    .bottom-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .bottom-cta__btn {
        justify-content: center;
        width: 100%;
    }

    .bottom-cta .cta-dropdown {
        width: 100%;
    }

    .bottom-cta .cta-dropdown .dropdown-trigger {
        width: 100%;
    }

    .bottom-cta__btn--order {
        justify-content: center;
        width: 100%;
    }
}
