@charset "UTF-8";

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 - 明朝体 */
body {
    font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    line-height: 1.9;
    color: #333;
    background-color: #000;
    font-size: 18px;
}

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

/* 画像プレースホルダー */
.img-placeholder {
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
    /* border: 2px dashed #d4af37; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-weight: bold;
    text-align: center;
    padding: 40px;
    min-height: 250px;
    font-size: 16px;
    line-height: 2;
}

/* 背景画像用クラス */
.bg-image-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* ヘッダー警告文 */
.header-warning {
    background: #a10500;
    color: #fff;
    text-align: center;
    padding: 28px 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* ファーストビュー */
.fv-section {
    background: linear-gradient(180deg, #00346e 0%, #05111f 100%);
    padding: 0;
    text-align: center;
    position: relative;
}

.fv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.fv-content {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.fv-main-image {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

.fv-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* .pc { display: block !important; }
.sp { display: none !important; } */

/* 固定CTAボタン(右下) */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-cta.show {
    opacity: 1;
    visibility: visible;
}

.fixed-cta-button {
    display: block;
    background: linear-gradient(135deg, #06c755 0%, #00b300 100%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 32px 48px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
    text-align: center;
    line-height: 1.5;
    animation: pulse 1s ease-in-out infinite;
    border: 2px solid #d4af37;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.fixed-cta-button:hover {
    animation: none;
    transform: scale(1.08);
}

/* CTAセクション - 参考LP風デザイン */
.cta-section {
    /* background: #f5f0e8; */
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

/* 背景画像プレースホルダー */
.cta-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%); */
    background-image: url('./image/back5.jpg');
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 95%;
    margin: 0 auto;
}

/* CTAヘッダー - 両サイドにライン */
.cta-header {
    font-size: 32px;
    /* color: #c41e3a; */
    color: #fff;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-header::before,
.cta-header::after {
    content: '';
    flex: 0 0 50px;
    height: 2px;
    /* background: #c41e3a; */
    background: #fff;
}

/* 装飾枠 */
.cta-frame {
    background: linear-gradient(135deg, #2655ac 0%, #00215f 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 0 0 50px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta-frame::before,
.cta-frame::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #d4af37;
}

.cta-frame::before {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.cta-frame::after {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.cta-subtitle {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.cta-description {
    font-size: 20px;
    color: #fff;
    margin: 25px 0;
    text-align: center;
    line-height: 2;
}

.cta-button-wrapper {
    margin: 50px 0 30px;
}

.cta-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #06c755 0%, #00b300 100%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 25px 30px;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.5);
    animation: pulse 1s ease-in-out infinite;
    border: 3px solid #d4af37;
    gap: 20px;
}

.cta-button-text {
    line-height: 1.6;
}

.cta-button-icon {
    background: rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1.2;
    padding-bottom: 10px;
}

.cta-button:hover {
    animation: none;
    transform: scale(1.05);
}

.cta-note {
    color: #fff;
    font-size: 15px;
    margin-top: 25px;
}

/* コンテナ */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* セクションタイトル */
.section-title {
    font-size: 38px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    /* margin-bottom: 60px; */
    line-height: 1;
}

.section-title2 {
    font-size: 38px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    /* margin-bottom: 60px; */
    line-height: 1;
}

/* 問題提起セクション */
.problem-section {
    background-image: url('./image/chart5.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 70px 20px;
}

.problem-image {
    margin: 0 30px;
}

.problem-list {
    width: 95%;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid #8b0000;
    border-radius: 20px;
    padding: 30px 60px;
    margin: 30px auto;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
}

.problem-item {
    /* font-size: 24px; */
    font-size: clamp(20px, 2vw, 24px);
    color: #fff;
    font-weight: 600;
    margin: 40px 0;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6) 0%, rgba(178, 34, 34, 0.5) 100%);
    border-left: 6px solid #e20000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
    white-space: nowrap;
}

.problem-text {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin: 50px 0 0;
    line-height: 2.2;
}

.problem-text-emphasis {
    display: block;
    font-size: 26px;
    color: #d4af37;
    font-weight: bold;
    margin-top: 20px;
    line-height: 2;
}

/* 解決策セクション */
.solution-section {
    background-image: url('./image/chart5.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 70px 20px;
}

.solution-image {
    margin: 0 30px;
}

.solution-list {
    width: 95%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5) 40%, rgba(26, 26, 26, 0.4) 100%);
    border: 4px solid #d4af37;
    border-radius: 20px;
    padding: 30px 60px;
    margin: 30px auto;
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.solution-item {
    font-size: clamp(20px, 2vw, 24px);
    color: #fff;
    font-weight: bold;
    margin: 40px 0;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.7) 40%, rgba(212, 175, 55, 0.6) 100%);
    border-left: 7px solid #ffc400;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.8;
    white-space: nowrap;
}

.solution-text {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin: 50px 0;
    line-height: 2.2;
}

.solution-text strong {
    color: #d4af37;
    font-size: 24px;
}

.solution-emphasis {
    font-size: 32px;
    color: #d4af37;
    text-align: center;
    margin: 70px 0 0;
    font-weight: bold;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* システム説明セクション */
.system-section {
    background-image: url('./image/chart5.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 50px 20px 30px;
}

.system-intro {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin: 50px auto;
    line-height: 1.5;
    max-width: 900px;
}

.system-intro-multi {
    display: block;
}

.system-intro-multi-strong {
    display: block;
    color: #d4af37;
    padding-top: 20px;
    font-size: 26px;
}

.system-features-label {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    margin: 70px 0 50px;
}

.system-features {
    margin: 60px auto;
    max-width: 700px;
}

.feature-item {
    background: linear-gradient(135deg, #3f3f3f 30%, #929292 100%);
    border-left: 7px solid #d6b600;
    border-radius: 12px;
    padding: 35px 45px;
    margin: 35px 0;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    text-align: center;
}

/* 最終ハイライトセクション - シンプルなボーダー */
.final-highlight-section {
    background-image: url('./image/image1-3.jpeg');
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    min-height: 400px;
}

.final-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.final-highlight-content {
    position: relative;
    z-index: 1;
}

.final-highlight {
    background: transparent;
    color: #fff;
    padding: 40px 60px;
    border-bottom: 3px solid #d4af37;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 900;
    line-height: 2;
    display: inline-block;
    max-width: 800px;
}

/* システム名セクション */
.system-name-section {
    background: #000;
    /* padding: 20px 20px; */
    text-align: center;
}

.system-logo {
    margin: 0 auto;
    padding: 0;
    max-width: 1280px;
}

/* 実績セクション */
.results-section {
    background-image: url('./image/back-red3.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 100px 20px 40px 20px;
}

.results-intro {
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin: 50px auto 0;
    line-height: 2.2;
    max-width: 900px;
}

.results-images {
    margin: 0;
}

.result-image-wrapper {
    margin: 0;
}

/* 特典セクション - 3つ目の画像デザイン */
.bonus-section {
    background: #00215f;
    /* background: #1d0201; */
    /* background: linear-gradient(135deg, #c50000 0%, #740000 100%); */
    padding: 100px 20px;
}

.bonus-frame {
    background: linear-gradient(135deg, rgba(6, 199, 85, 0.5) 0%, rgba(0, 179, 0, 0.4) 100%);
    /* background: rgba(6, 199, 85, 0.6); */
    border: 4px solid #06c755;
    border-radius: 25px;
    padding: 70px 60px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 15px 50px rgba(6, 199, 85, 0.3);
}

.bonus-label {
    font-size: 36px;
    color: #06c755;
    text-align: center;
    font-weight: 900;
    margin-bottom: 15px;
}

.bonus-title {
    font-size: 32px;
    color: #06c755;
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(6, 199, 85, 0.3);
}

.bonus-text {
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 2.2;
    margin: 30px 0;
}

.bonus-text-large {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    display: block;
    margin: 25px 0;
}

.bonus-cta-wrapper {
    margin-top: 60px;
    text-align: center;
}

.bonus-cta-header {
    font-size: 28px;
    /* color: #c41e3a; */
    color: #fff;
    font-weight: 900;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bonus-cta-header::before,
.bonus-cta-header::after {
    content: '';
    flex: 0 0 50px;
    height: 2px;
    /* background: #c41e3a; */
    background: #fff;
}

.bonus-cta-button {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #06c755 0%, #00b300 100%);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 25px 30px;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.5);
    animation: pulse 1s ease-in-out infinite;
    border: 3px solid #d4af37;
    gap: 20px;
}

.bonus-cta-button .cta-button-text {
    line-height: 1.6;
}

.bonus-cta-button:hover {
    animation: none;
    transform: scale(1.05);
}

.bonus-cta-note {
    color: #fff;
    font-size: 15px;
    margin-top: 20px;
}

/* ステップセクション */
.steps-section {
    background-image: url('./image/chart2-1.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 100px 20px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
    font-size: 48px;
    color: #d4af37;
    font-weight: 900;
    margin-bottom: 30px;
}

.step-image {
    margin: 30px 0;
    min-height: 200px;
}

.step-title {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-top: 30px;
    line-height: 1.6;
}

/* FAQセクション */
.faq-section {
    background-image: url('./image/chart2-1.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* background-color: #000; */
    padding: 20px 20px;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 40px 45px;
    margin: 35px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
    font-size: 24px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.8;
}

.faq-answer {
    font-size: 20px;
    color: #fff;
    line-height: 2;
}

/* 注意事項 */
.disclaimer-section {
    /* background: #df0700; */
    background: #000;
    padding: 60px 20px;
}

.disclaimer-text {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* レスポンシブ */
@media (max-width: 820px) {
    body { 
        font-size: 18px; 
    }

    .header-warning { 
        font-size: 15px; 
        padding: 20px 15px; 
    }

    .fv-section { 
        padding: 0; 
    }

    /* .pc { display: none !important; }
    .sp { display: block !important; } */

    .fixed-cta-button {
        font-size: 18px;
        padding: 24px 36px;
    }

    .cta-section {
        padding: 35px 25px;
    }

    .cta-header { 
        font-size: 4.5vw; 
        gap: 15px; 
    }

    .cta-content {
        max-width: 95%;
    }

    .cta-header::before, .cta-header::after { flex: 0 0 25px; }

    /* .cta-frame { padding: 40px 25px; } */
    
    .cta-button { 
        font-size: 26px; 
        padding: 30px 40px; 
        min-width: auto; 
    }

    .section-title { 
        font-size: 4.5vw;
        /* line-height: 1; */
    }
    .section-title2 { 
        font-size: 5.5vw;
        /* line-height: 1; */
    }

    .cta-frame::before,
    .cta-frame::after {
        content: '';
        position: absolute;
        width: 40px;
        height: 40px;
        border: 2px solid #d4af37;
    }

    .cta-frame::before {
        top: 15px;
        left: 15px;
        border-right: none;
        border-bottom: none;
    }

    .cta-frame::after {
        bottom: 15px;
        right: 15px;
        border-left: none;
        border-top: none;
    }

    .problem-section {
        padding: 50px 20px;
    }

    .problem-image {
        margin: 30px 20px;
    }

    .problem-list, .solution-list { 
        margin: 10px auto;
        padding: 0 25px;
    }

    .problem-item { 
        font-size: 3vw;
        padding: 22px 5px;
    }

    .problem-text {
        font-size: 4.5vw;
    }

    .problem-text-emphasis {
        font-size: 5vw;
    }

    .img-placeholder {
        padding: 10px;
        width: 90%;
        margin: 20px auto;
    }

    .solution-item {
        font-size: 3.1vw;
        padding: 22px 15px;
    }

    .solution-text {
        font-size: 4vw;
    }

    .solution-text strong {
        font-size: 4.5vw;
    }

    .solution-emphasis { 
        font-size: 4.8vw; 
    }

    .system-section {
        padding: 30px 20px 10px;
    }

    .system-intro {
        margin: 10px auto;
    }

    .system-intro-multi {
        font-size: 4.5vw;
    }

    .system-intro-multi-strong {
        font-size: 5.5vw;
    }

    .system-features-label {
        margin: 60px 0 0;
    }

    .system-features-label {
        font-size: 5.5vw;
    }

    .system-features {
        margin: 20px auto;
        max-width: 700px;
    }

    .feature-item { 
        font-size: 4.5vw; 
        padding: 25px 30px; 
    }

    .final-highlight-section {
        padding: 30px 20px 50px;
        min-height: 300px;
    }

    .final-highlight { 
        font-size: 5.5vw; 
        padding: 25px 25px; 
    }

    .results-section {
        padding: 70px 20px 20px 20px;
    }

    .results-intro {
        font-size: 3.7vw;
        line-height: 1.7;
    }

    .bonus-section {
        width: 95%;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .bonus-label {
        margin-bottom: 0;
        font-size: 5.5vw;
    }

    .bonus-title {
        margin-bottom: 30px;
        font-size: 5.5vw;
    }

    .bonus-text {
        margin: 10px 0;
        line-height: 2;
        font-size: 4vw;
    }

    .bonus-text-large {
        font-size: 5.5vw;
    }

    .bonus-frame { padding: 40px 30px; }
    .bonus-cta-header { 
        font-size: 4.5vw; 
        gap: 10px; 
    }

    .bonus-cta-header::before, 
    .bonus-cta-header::after { flex: 0 0 30px; }

    .bonus-cta-button { 
        font-size: 26px; 
        padding: 30px 40px; 
        min-width: auto; 
    }

    .steps-container { flex-direction: column; }

    .steps-section {
        padding: 60px 20px;
    }

    .steps-container {
        width: 95%;
        margin: 60px auto;
    }

    .step-item {
        padding: 70px 70px 100px;
    } 

    .step-number {
        font-size: 8vw;
    }

    .step-image {
        margin: 10px 0;
        min-height: 100px;
    }

    .step-title {
        font-size: 5.5vw;
    }

    .faq-section {
        width: 95%;
        margin: 0 auto;
        /* padding: 60px 20px; */
    }

    .faq-item {
        padding: 30px 25px;
    }

    .faq-question {
        font-size: 4vw;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 3.5vw;
    }

    .disclaimer-section {
        padding: 25px;
    }

    .disclaimer-text {
        font-size: 16px;
    }
}


@media (max-width: 420px) {
    body { 
        font-size: 14px; 
    }

    .header-warning { 
        font-size: 11px; 
        padding: 15px 10px; 
    }

    /* .fv-section { 
        padding: 30px 0; 
    } */

    /* .pc { display: none !important; }
    .sp { display: block !important; } */

    .fixed-cta-button {
        font-size: 14px;
        padding: 18px 30px;
    }

    .cta-section {
        padding: 21px 14px;
    }

    .cta-frame{
        padding: 0 0 30px 0;
    }

    .cta-button-wrapper{
        margin: 35px 0 0;
    }

    .cta-header { 
        /* font-size: 4vw;  */
        margin-bottom: 20px;
        letter-spacing: 0;
        gap: 5px; 
    }

    .cta-header::before, .cta-header::after { 
        flex: 0 0 15px; 
    }
    
    .cta-button { 
        font-size: 14px; 
        padding: 14px 21px; 
        min-width: auto; 
    }

    .cta-button-icon {
        width: 40px;
        height: 40px;
        font-size: 30px;
        padding-bottom: 5px;
    }

    .cta-note {
        font-size: 12px;
    }

    .cta-frame::before,
    .cta-frame::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        border: 2px solid #d4af37;
    }

    .cta-frame::before {
        top: 15px;
        left: 15px;
        border-right: none;
        border-bottom: none;
    }

    .cta-frame::after {
        bottom: 15px;
        right: 15px;
        border-left: none;
        border-top: none;
    }

    .section-title { 
        margin: 0 auto;
    }

    .section-title2 { 
        font-size: 6vw;
        margin: 0 auto;
        /* line-height: 1; */
    }

    .problem-section {
        padding: 50px 20px;
    }

    .problem-image {
        margin: 0 20px;
    }

    .problem-list, .solution-list { 
        margin: 0 auto;
        padding: 0 20px;
    }

    .problem-item { 
        margin: 20px auto;
        font-size: 2.7vw;
        padding: 18px 5px;
    }

    .problem-text {
        margin: 30px 0 0;
        font-size: 5vw;
    }

    .problem-text-emphasis {
        font-size: 5.5vw;
    }

    .img-placeholder {
        min-height: auto;
        width: 95%;
        padding: 20px 0;
    }

    .solution-section {
        padding: 20px;
    }

    .solution-list {
        border: 2px solid #d4af37;
    }

    .solution-item {
        margin: 20px auto;
        font-size: 2.6vw;
        padding: 18px 10px;
    }

    .solution-text,
    .solution-text strong {
        font-size: 4.8vw;
    }

    .solution-text {
        margin: 30px 0;
    }

    .solution-emphasis {
        margin: 20px 0 0; 
        font-size: 5vw; 
    }

    .system-section {
        padding: 30px 20px 10px;
    }

    .system-intro {
        margin: 10px auto;
    }

    .system-intro-multi {
        font-size: 4.5vw;
    }

    .system-intro-multi-strong {
        padding: 20px 0 0;
    }

    .system-features-label {
        margin: 60px 0 0;
    }

    .system-features {
        margin: 20px auto;
        max-width: 700px;
    }

    .feature-item { 
        font-size: 5.2vw; 
        padding: 20px 25px; 
    }

    .final-highlight-section {
        padding: 20px 20px 50px;
        min-height: 200px;
    }

    .final-highlight { 
        font-size: 24px; 
        padding: 15px 25px; 
    }

    .system-logo {
        padding: 0;
    }

    .results-section {
        padding: 40px 20px 20px 20px;
    }

    .results-intro {
        margin: 30px auto 0;
        font-size: 4.2vw;
    }

    .bonus-section {
        padding: 60px 15px;
    }

    .bonus-frame {
        padding: 50px 10px;
    }

    .bonus-label {
        margin-bottom: 0;
        font-size: 30px;
    }

    .bonus-title {
        margin-bottom: 30px;
        font-size: 30px;
    }

    .bonus-text {
        margin: 10px 0;
        line-height: 2;
        font-size: 3.6vw;
    }

    .bonus-text-large {
        font-size: 24px;
        margin: 25px 0;
        line-height: 1.5;
    }

    .bonus-cta-wrapper {
        margin-top: 30px;
    }

    .bonus-cta-header { 
        font-size: 4.1vw; 
        gap: 10px; 
        margin-bottom: 10px;
    }

    .bonus-cta-header::before, .bonus-cta-header::after { 
        flex: 0 0 15px; 
    }

    .bonus-cta-button { 
        font-size: 14px; 
        padding: 14px 21px; 
        min-width: auto; 
    }

    .bonus-cta-note {
        font-size: 2.7vw;
    }

    .steps-container { flex-direction: column; }

    .steps-section {
        padding: 60px 20px;
    }

    .steps-container {
        width: 95%;
        margin: 60px auto;
    }

    .step-item {
        padding: 30px 30px;
    }

    .step-number {
        margin-bottom: 0;
    }

    .step-image {
        margin: 0;
        min-height: 100px;
    }

    .step-title {
        margin-top: 0;
    }

    .faq-section {
        width: 95%;
        margin: 0 auto;
        /* padding: 60px 20px; */
    }

    .faq-item {
        padding: 20px 20px;
    }

    .faq-question {
        font-size: 5vw;
        margin-bottom: 5px;
    }

    .faq-answer {
        font-size: 4.5vw;
    }

    .disclaimer-section {
        padding: 20px;
    }

    .disclaimer-text {
        font-size: 2.8vw;
    }

}