/* VoiceToPC 専用スタイル */

/* アクセントカラー（パステル系ピンク・ブルー・パープル） */
:root {
    --vtp-pink: #ffb6c8;
    --vtp-pink-light: #ffd6e0;
    --vtp-blue: #a8e6ff;
    --vtp-blue-light: #d4f0ff;
    --vtp-purple: #b8a9d4;
    --vtp-purple-deep: #4a4a8a;
    --vtp-green: #c8ffd4;
}

/* ヒーローセクション */
.vtp-hero {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--vtp-blue) 0%, #d4c5f0 50%, var(--vtp-pink-light) 100%);
    border-radius: 16px;
    margin-bottom: 12px;
    text-align: center;
    overflow: hidden;
}

.vtp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: vtp-shimmer 8s ease-in-out infinite;
}

@keyframes vtp-shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.vtp-hero-graphic {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 8px 24px rgba(74, 74, 138, 0.2));
}

.vtp-hero h2 {
    font-size: 2.2rem;
    color: var(--vtp-purple-deep);
    margin-bottom: 0.5rem;
    position: relative;
}

.vtp-hero .vtp-hero-lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.vtp-hero .vtp-hero-lead strong {
    color: var(--vtp-purple-deep);
}

/* Google Play ボタン */
.vtp-google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.vtp-google-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #333;
}

.vtp-google-play-btn svg {
    width: 24px;
    height: 24px;
}

/* ステップセクション */
.vtp-steps {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.vtp-step {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(74, 74, 138, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(184, 169, 212, 0.2);
}

.vtp-step:hover {
    transform: translateY(-4px);
}

.vtp-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vtp-blue) 0%, var(--vtp-purple) 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.vtp-step h4 {
    color: var(--vtp-purple-deep);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.vtp-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 特徴カード */
.vtp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0;
}

.vtp-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-left: 4px solid var(--vtp-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vtp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.vtp-feature-card h4 {
    color: var(--vtp-purple-deep);
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.vtp-feature-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* セキュリティ・暗号化バッジ */
.vtp-security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    justify-content: center;
}

.vtp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #f0f4ff, #fff);
    border: 1px solid rgba(184, 169, 212, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--vtp-purple-deep);
    font-weight: 500;
}

.vtp-badge-icon {
    font-size: 1.2rem;
}

/* 比較テーブル */
.vtp-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.vtp-comparison-table th {
    background: var(--vtp-purple-deep);
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
}

.vtp-comparison-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.vtp-comparison-table tr:last-child td {
    border-bottom: none;
}

.vtp-comparison-table tbody tr:nth-child(odd) {
    background: #fafbff;
}

.vtp-comparison-table tbody tr:nth-child(even) {
    background: #fff;
}

.vtp-comparison-table .vtp-highlight-row {
    background: linear-gradient(90deg, #f0f4ff 0%, #fef0f4 100%) !important;
    font-weight: 500;
}

.vtp-win {
    color: #2e7d32;
    font-weight: bold;
}

.vtp-lose {
    color: #999;
}

/* YouTube ショート埋め込み */
.vtp-youtube-shorts {
    max-width: 360px;
    margin: 1.5rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.vtp-youtube-shorts .video-container {
    border-radius: 16px;
    overflow: hidden;
}

/* 4ステップ使い方 */
.vtp-howto-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.vtp-howto-step {
    background: linear-gradient(135deg, #fafbff 0%, #fff 100%);
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(184, 169, 212, 0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.vtp-howto-step .step-num {
    display: inline-block;
    background: linear-gradient(135deg, var(--vtp-pink) 0%, var(--vtp-purple) 100%);
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

.vtp-howto-step h4 {
    color: var(--vtp-purple-deep);
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.vtp-howto-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* 言語カード */
.vtp-lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.vtp-lang-card {
    text-align: center;
    padding: 1.2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid rgba(184, 169, 212, 0.2);
    transition: transform 0.3s ease;
}

.vtp-lang-card:hover {
    transform: translateY(-2px);
}

.vtp-lang-flag {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.vtp-lang-name {
    font-weight: bold;
    color: var(--vtp-purple-deep);
    font-size: 1rem;
}

.vtp-lang-native {
    color: #888;
    font-size: 0.85rem;
}

/* 料金セクション */
.vtp-pricing {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--vtp-blue-light) 0%, var(--vtp-pink-light) 100%);
    border-radius: 16px;
    margin: 1.5rem 0;
}

.vtp-pricing .vtp-price-free {
    font-size: 2rem;
    font-weight: bold;
    color: var(--vtp-purple-deep);
    margin-bottom: 0.3rem;
}

.vtp-pricing .vtp-price-sub {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1rem;
}

.vtp-pricing .vtp-price-detail {
    color: #777;
    font-size: 0.95rem;
}

/* スクリーンショット表示 */
.vtp-screenshot-container {
    text-align: center;
    margin: 2rem 0;
}

.vtp-screenshot-container img {
    max-height: 500px;
    width: auto;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(74, 74, 138, 0.2);
}

/* セクション装飾 */
.vtp-section-accent {
    position: relative;
}

.vtp-section-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vtp-blue), var(--vtp-purple), var(--vtp-pink));
    border-radius: 12px 12px 0 0;
}

/* product-top-section のVoiceToPC用カスタマイズ */
.vtp-top .product-price {
    background: linear-gradient(135deg, #f0f4ff 0%, #fef0f4 100%);
    border: 1px solid rgba(184, 169, 212, 0.2);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .vtp-hero h2 {
        font-size: 1.6rem;
    }

    .vtp-hero .vtp-hero-lead {
        font-size: 1rem;
    }

    .vtp-steps {
        flex-direction: column;
        align-items: center;
    }

    .vtp-step {
        max-width: 100%;
    }

    .vtp-features-grid {
        grid-template-columns: 1fr;
    }

    .vtp-comparison-table {
        font-size: 0.85rem;
    }

    .vtp-comparison-table th,
    .vtp-comparison-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .vtp-hero {
        padding: 2rem 1rem;
    }

    .vtp-hero h2 {
        font-size: 1.3rem;
    }

    .vtp-google-play-btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .vtp-security-badges {
        flex-direction: column;
        align-items: center;
    }

    .vtp-lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vtp-howto-steps {
        grid-template-columns: 1fr;
    }
}
