/* ============================================================
   PICH - Vライバー募集LP専用CSS
   prefix: vlp-
   既存CSSとは完全に分離
   ============================================================ */

/* ---------- CSS Variables ---------- */
.vlp-body {
    --vlp-pink: #FF6B9D;
    --vlp-pink-light: #FFF0F5;
    --vlp-yellow: #FFD93D;
    --vlp-yellow-light: #FFFBEB;
    --vlp-green: #6BCB77;
    --vlp-green-light: #F0FFF4;
    --vlp-blue: #4FC3F7;
    --vlp-blue-light: #F0F9FF;
    --vlp-purple: #B388FF;
    --vlp-purple-light: #F5F0FF;
    --vlp-dark: #1a1a1a;
    --vlp-gray: #555;
    --vlp-gray-light: #999;
    --vlp-bg: #ffffff;
    --vlp-bg-alt: #FAFAFA;
    --vlp-font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    --vlp-font-en: 'Montserrat', sans-serif;
    --vlp-radius: 16px;
    --vlp-radius-sm: 8px;
    --vlp-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --vlp-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.14);
    --vlp-transition: 0.3s ease;
    --vlp-header-h: 64px;
}

/* ---------- Reset (scoped) ---------- */
.vlp-body {
    margin: 0;
    padding: 0;
    font-family: var(--vlp-font-ja);
    font-size: 16px;
    line-height: 1.8;
    color: var(--vlp-dark);
    background: var(--vlp-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.vlp-body *,
.vlp-body *::before,
.vlp-body *::after {
    box-sizing: border-box;
}

.vlp-main img {
    max-width: 100%;
    height: auto;
    display: block;
}

.vlp-main a {
    text-decoration: none;
    color: inherit;
}

.vlp-main ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vlp-main button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ---------- Container ---------- */
.vlp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- SECTION HEADER ---------- */
.vlp-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.vlp-section-header__num {
    display: inline-block;
    font-family: var(--vlp-font-en);
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--vlp-pink);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.vlp-section-header__en {
    font-family: var(--vlp-font-en);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--vlp-gray-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.vlp-section-header__title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--vlp-dark);
    margin: 0;
    line-height: 1.4;
}

/* ---------- CTA BUTTON ---------- */
.vlp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--vlp-pink), #FF8E9E);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--vlp-transition);
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.35);
    position: relative;
    overflow: hidden;
}

.vlp-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.vlp-cta-button:hover::before {
    left: 100%;
}

.vlp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.45);
}

.vlp-cta-button--large {
    font-size: 1.15rem;
    padding: 20px 48px;
}

.vlp-cta-button__icon {
    font-size: 0.8em;
}

/* ---------- HERO ---------- */
.vlp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px; /* shared header height */
    overflow: hidden;
    background: linear-gradient(160deg, #FFF0F5 0%, #FFFBEB 40%, #F0F9FF 100%);
}

.vlp-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 195, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.06) 0%, transparent 50%);
    background-size: 100% 100%;
    pointer-events: none;
}

.vlp-hero__bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23FFB6C1' fill-opacity='0.3'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.vlp-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.vlp-hero__text {
    flex: 1;
    min-width: 0;
}

.vlp-hero__lead {
    font-size: 1rem;
    color: var(--vlp-gray);
    margin: 0 0 12px;
}

.vlp-hero__title {
    margin: 0 0 24px;
    line-height: 1.3;
}

.vlp-hero__title-main {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vlp-dark);
}

.vlp-hero__title-accent {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--vlp-dark);
    background: linear-gradient(transparent 60%, var(--vlp-yellow) 60%);
    display: inline;
    padding: 0 4px;
}

.vlp-hero__desc {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--vlp-gray);
    margin: 0 0 32px;
}

.vlp-hero__desc strong {
    color: var(--vlp-dark);
}

.vlp-hero__visual {
    flex: 0 0 420px;
    position: relative;
    height: 480px;
}

.vlp-hero__character {
    position: absolute;
    border-radius: var(--vlp-radius);
    overflow: hidden;
}

.vlp-hero__character--01 {
    width: 240px;
    height: 300px;
    top: 20px;
    left: 0;
    z-index: 2;
    transform: rotate(-3deg);
}

.vlp-hero__character--02 {
    width: 220px;
    height: 280px;
    top: 80px;
    right: 0;
    z-index: 1;
    transform: rotate(3deg);
}

.vlp-hero__character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--vlp-radius);
}

.vlp-hero__character-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vlp-pink-light), var(--vlp-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--vlp-gray-light);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: var(--vlp-radius);
}

.vlp-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.vlp-hero__scroll-hint span {
    font-family: var(--vlp-font-en);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--vlp-gray-light);
    text-transform: uppercase;
}

.vlp-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--vlp-gray-light);
    position: relative;
    overflow: hidden;
}

.vlp-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vlp-pink);
    animation: vlpScrollLine 1.8s ease-in-out infinite;
}

@keyframes vlpScrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ---------- STRENGTHS ---------- */
.vlp-strengths {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.vlp-strengths__bg-slant {
    position: absolute;
    top: -60px;
    left: -5%;
    right: -5%;
    bottom: -60px;
    background: linear-gradient(165deg, var(--vlp-pink-light) 0%, var(--vlp-yellow-light) 100%);
    transform: skewY(-3deg);
    z-index: -1;
}

.vlp-strengths__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vlp-strength-card {
    background: #fff;
    border-radius: var(--vlp-radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--vlp-shadow);
    transition: var(--vlp-transition);
    position: relative;
}

.vlp-strength-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vlp-shadow-hover);
}

.vlp-strength-card__icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vlp-strength-card__icon-wrap--pink {
    background: var(--vlp-pink-light);
    color: var(--vlp-pink);
}

.vlp-strength-card__icon-wrap--yellow {
    background: var(--vlp-yellow-light);
    color: #E6A800;
}

.vlp-strength-card__icon-wrap--green {
    background: var(--vlp-green-light);
    color: var(--vlp-green);
}

.vlp-strength-card__icon {
    width: 40px;
    height: 40px;
}

.vlp-strength-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.5;
    color: var(--vlp-dark);
}

.vlp-strength-card__desc {
    font-size: 0.9rem;
    color: var(--vlp-gray);
    margin: 0;
    line-height: 1.8;
}

/* ---------- BENEFITS ---------- */
.vlp-benefits {
    padding: 100px 0;
    background: var(--vlp-bg);
}

.vlp-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vlp-benefit-item {
    background: var(--vlp-bg-alt);
    border-radius: var(--vlp-radius);
    padding: 32px 20px;
    text-align: center;
    transition: var(--vlp-transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.vlp-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--vlp-shadow);
    border-color: transparent;
}

.vlp-benefit-item__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--vlp-pink);
}

.vlp-benefit-item__icon svg {
    width: 100%;
    height: 100%;
}

.vlp-benefit-item__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--vlp-dark);
    line-height: 1.5;
}

.vlp-benefit-item__desc {
    font-size: 0.82rem;
    color: var(--vlp-gray);
    margin: 0;
    line-height: 1.7;
}

/* ---------- VIDEO ---------- */
.vlp-video {
    padding: 100px 0;
    background: var(--vlp-bg-alt);
}

.vlp-video__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.vlp-video__embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--vlp-radius);
    overflow: hidden;
    box-shadow: var(--vlp-shadow);
}

.vlp-video__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.vlp-video__play-btn {
    width: 64px;
    height: 64px;
    cursor: pointer;
    transition: var(--vlp-transition);
}

.vlp-video__play-btn:hover {
    transform: scale(1.1);
}

.vlp-video__play-btn svg {
    width: 100%;
    height: 100%;
}

.vlp-video__placeholder-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* ---------- VOICES ---------- */
.vlp-voices {
    padding: 100px 0;
    background: var(--vlp-bg);
}

.vlp-voices__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 240px));
    gap: 24px;
    justify-content: center;
}

.vlp-voice-card {
    border-radius: var(--vlp-radius);
    overflow: hidden;
    background: var(--vlp-bg);
    box-shadow: var(--vlp-shadow);
    transition: var(--vlp-transition);
    display: flex;
    flex-direction: column;
}

.vlp-voice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--vlp-shadow-hover);
}

.vlp-voice-card__img {
    width: 100%;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.vlp-voice-card__photo {
    width: 100%;
    height: auto;
    display: block;
}

.vlp-voice-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--vlp-blue-light), var(--vlp-purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--vlp-gray-light);
}

.vlp-voice-card__body {
    padding: 16px;
    flex: 1;
}

.vlp-voice-card__name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vlp-pink);
    margin: 0 0 4px;
    letter-spacing: 0.03em;
}

.vlp-voice-card__achievement {
    font-size: 0.72rem;
    color: var(--vlp-gray-light);
    margin: 0 0 10px;
    font-weight: 500;
}

.vlp-voice-card__text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--vlp-gray);
    margin: 0;
}

/* ---------- FLOW ---------- */
.vlp-flow {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--vlp-bg-alt), var(--vlp-bg));
}

.vlp-flow__steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.vlp-flow__steps::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--vlp-pink), var(--vlp-blue));
    border-radius: 1px;
}

.vlp-flow-step {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

.vlp-flow-step__num {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vlp-pink), #FF8E9E);
    color: #fff;
    font-family: var(--vlp-font-en);
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    position: relative;
    z-index: 1;
}

.vlp-flow-step__content {
    flex: 1;
    padding-top: 8px;
}

.vlp-flow-step__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--vlp-dark);
}

.vlp-flow-step__desc {
    font-size: 0.9rem;
    color: var(--vlp-gray);
    margin: 0;
    line-height: 1.7;
}

/* ---------- REQUIREMENTS ---------- */
.vlp-requirements {
    padding: 100px 0;
    background: var(--vlp-bg);
}

.vlp-requirements__box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--vlp-blue-light);
    border-radius: var(--vlp-radius);
    padding: 48px 40px;
}

.vlp-requirements__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vlp-requirements__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--vlp-dark);
}

.vlp-requirements__item small {
    font-size: 0.82rem;
    color: var(--vlp-gray);
}

.vlp-requirements__check {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--vlp-green);
    color: #fff;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/* ---------- FAQ ---------- */
.vlp-faq {
    padding: 100px 0;
    background: var(--vlp-bg-alt);
}

.vlp-faq__list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vlp-faq-item {
    background: #fff;
    border-radius: var(--vlp-radius-sm);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.vlp-faq-item__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--vlp-dark);
    text-align: left;
    transition: var(--vlp-transition);
}

.vlp-faq-item__question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.vlp-faq-item__q-label {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--vlp-pink);
    color: #fff;
    font-family: var(--vlp-font-en);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vlp-faq-item__q-text {
    flex: 1;
}

.vlp-faq-item__toggle {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    position: relative;
    transition: var(--vlp-transition);
}

.vlp-faq-item__toggle::before,
.vlp-faq-item__toggle::after {
    content: '';
    position: absolute;
    background: var(--vlp-gray);
    border-radius: 1px;
    transition: var(--vlp-transition);
}

.vlp-faq-item__toggle::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vlp-faq-item__toggle::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vlp-faq-item.is-open .vlp-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.vlp-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.vlp-faq-item.is-open .vlp-faq-item__answer {
    max-height: 300px;
}

.vlp-faq-item__answer p {
    padding: 0 24px 20px 70px;
    font-size: 0.9rem;
    color: var(--vlp-gray);
    line-height: 1.8;
    margin: 0;
}

/* ---------- FINAL CTA ---------- */
.vlp-final-cta {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--vlp-dark) 0%, #2d2d2d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vlp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(79, 195, 247, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.vlp-final-cta__inner {
    position: relative;
    z-index: 1;
}

.vlp-final-cta__lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px;
}

.vlp-final-cta__title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.vlp-final-cta__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
}

/* ---------- STICKY CTA (Mobile) ---------- */
.vlp-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.vlp-sticky-cta.is-visible {
    transform: translateY(0);
}

.vlp-sticky-cta__btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--vlp-pink), #FF8E9E);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.35);
}

/* ---------- FADE IN ---------- */
.vlp-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.vlp-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .vlp-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vlp-section-header__title {
        font-size: 1.5rem;
    }

    /* Hero */
    .vlp-hero__inner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 32px;
    }

    .vlp-hero__title-main {
        font-size: 1.3rem;
    }

    .vlp-hero__title-accent {
        font-size: 2rem;
    }

    .vlp-hero__visual {
        flex: none;
        width: 100%;
        max-width: 340px;
        height: 320px;
        margin: 0 auto;
    }

    .vlp-hero__character--01 {
        width: 180px;
        height: 240px;
        top: 20px;
    }

    .vlp-hero__character--02 {
        width: 160px;
        height: 220px;
        top: 40px;
    }

    .vlp-hero__scroll-hint {
        display: none;
    }

    /* Strengths */
    .vlp-strengths {
        padding: 72px 0;
    }

    .vlp-strengths__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Benefits */
    .vlp-benefits {
        padding: 72px 0;
    }

    .vlp-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Video */
    .vlp-video {
        padding: 72px 0;
    }

    /* Voices */
    .vlp-voices {
        padding: 72px 0;
    }

    .vlp-voices__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }

    .vlp-voice-card__img {
        line-height: 0;
    }

    /* Flow */
    .vlp-flow {
        padding: 72px 0;
    }

    .vlp-flow__steps::before {
        left: 25px;
    }

    .vlp-flow-step__num {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .vlp-flow-step__title {
        font-size: 1rem;
    }

    /* Requirements */
    .vlp-requirements {
        padding: 72px 0;
    }

    .vlp-requirements__box {
        padding: 32px 24px;
    }

    /* FAQ */
    .vlp-faq {
        padding: 72px 0;
    }

    .vlp-faq-item__question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .vlp-faq-item__answer p {
        padding: 0 18px 16px 60px;
        font-size: 0.85rem;
    }

    /* Final CTA */
    .vlp-final-cta {
        padding: 72px 0;
    }

    .vlp-final-cta__title {
        font-size: 1.6rem;
    }

    .vlp-cta-button--large {
        font-size: 1rem;
        padding: 16px 36px;
    }

    /* Show sticky CTA on mobile */
    .vlp-sticky-cta {
        display: block;
    }

    /* Pad bottom for sticky CTA */
    .vlp-body .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .vlp-benefits__grid {
        grid-template-columns: 1fr;
    }

    .vlp-voices__list {
        grid-template-columns: 1fr;
    }

    .vlp-hero__title-accent {
        font-size: 1.7rem;
    }

    .vlp-hero__visual {
        max-width: 280px;
        height: 260px;
    }

    .vlp-hero__character--01 {
        width: 180px;
        height: 240px;
    }

    .vlp-hero__character--02 {
        width: 160px;
        height: 220px;
    }
}
