/* ========================================
   #キャクモクルー LP - Gold & Black Design
   ======================================== */

/* CSS Variables */
:root {
    /* Main Colors - Gold Theme */
    --yellow: #ffe700;
    --orange: #fbb03b;
    --gold: #d4a529;
    --gold-dark: #b8960c;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #ffe700 0%, #fbb03b 100%);
    --gradient-gold: linear-gradient(135deg, #fbb03b 0%, #d4a529 100%);
    --gradient-reverse: linear-gradient(135deg, #fbb03b 0%, #ffe700 100%);

    /* Base Colors */
    --black: #000000;
    --black-light: #0D0D0D;
    --black-medium: #1A1A1A;
    --black-soft: #222222;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --gray-dark: #333333;

    /* Accent */
    --line-green: #06C755;

    /* Typography */
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Oswald', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-ja);
    font-weight: 400;
    line-height: 1.8;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul, ol {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.sp-only {
    display: none;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gold {
    color: var(--yellow);
}

.highlight-orange {
    color: var(--orange);
}

.highlight-pink {
    color: var(--orange);
}

.highlight-text {
    color: var(--yellow);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-en {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-main);
    color: var(--black);
    padding: 18px 50px;
    border-radius: var(--radius-full);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(251, 176, 59, 0.4);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(251, 176, 59, 0.5);
}

.cta-button.large {
    padding: 22px 60px;
    font-size: 20px;
}

.cta-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* ========================================
   AOS STYLE ANIMATIONS
   ======================================== */

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos-delay="150"] { transition-delay: 150ms; }
[data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos-delay="250"] { transition-delay: 250ms; }
[data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos-delay="350"] { transition-delay: 350ms; }
[data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos-delay="500"] { transition-delay: 500ms; }

/* ========================================
   STAGGER ANIMATION (スタガーアニメーション)
   ======================================== */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.stagger-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.stagger-item[data-stagger="0"] { transition-delay: 0ms; }
.stagger-item[data-stagger="1"] { transition-delay: 250ms; }
.stagger-item[data-stagger="2"] { transition-delay: 500ms; }
.stagger-item[data-stagger="3"] { transition-delay: 750ms; }

/* ========================================
   FV (FIRST VIEW) SECTION
   ======================================== */
.fv-section {
    width: 100%;
    background: var(--black);
}

.fv {
    width: 100%;
}

.fv img {
    width: 100%;
    height: auto;
}

.fv img.hero-desktop {
    display: none;
}

.fv img.hero-mobile {
    display: block;
}

@media (min-width: 768px) {
    .fv img.hero-desktop {
        display: block;
    }
    .fv img.hero-mobile {
        display: none;
    }
}

/* CTA Section (FV直下) */
.cta-section {
    background: var(--black);
    padding: 30px 20px 40px;
}

.contact-cta {
    text-align: center;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-light);
    text-align: center;
}

/* ========================================
   WORRY SECTION
   ======================================== */
.worry-section {
    padding: 60px 0 50px;
    background: #fffbea;
}

.worry-section .container {
    max-width: 1200px;
}

.worry-image-wrapper {
    text-align: center;
}

.worry-complete-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Solution Badge - 2 Stage Animation */
.solution-badge {
    text-align: center;
    padding: 60px 0 80px;
    margin-top: 50px;
}

.solution-text {
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    color: var(--black);
    line-height: 1.6;
    letter-spacing: -0.02em;
    display: block;
}

.text-line {
    display: block;
}

.word-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding: 0.1em 0.15em;
    margin: -0.1em -0.15em;
}

.word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
                opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger delays for Step 1 */
.word[data-word="0"] { transition-delay: 0ms; }
.word[data-word="1"] { transition-delay: 250ms; }
.word[data-word="2"] { transition-delay: 500ms; }

/* Step 1: Visible state */
.solution-badge.animate-step1 .word {
    transform: translateY(0);
    opacity: 1;
}

/* Color reveal wrapper */
.color-reveal-wrapper {
    position: relative;
}

.word-base {
    color: var(--black);
}

.word-color {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, #ffe700 0%, #fbb03b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
    transition: clip-path 1200ms cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: -1em;
    padding-right: 1em;
}

/* Step 2: Color reveal */
.solution-badge.animate-step2 .word-color {
    clip-path: inset(0 -1em 0 0);
}

/* Responsive */
@media (min-width: 768px) {
    .solution-text {
        font-size: 48px;
    }

    .color-reveal-wrapper .word-base,
    .color-reveal-wrapper .word-color {
        font-size: 56px;
    }
}

@media (max-width: 767px) {
    .solution-text {
        font-size: 28px;
    }

    .color-reveal-wrapper .word-base,
    .color-reveal-wrapper .word-color {
        font-size: 32px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .word {
        transform: translateY(0);
        opacity: 1;
        transition: none;
    }

    .word-color {
        clip-path: inset(0 0 0 0);
        transition: none;
    }
}

/* ========================================
   WHATS SECTION (何がすごいの？) - UNITE STYLE
   ======================================== */
.whats-section {
    background: linear-gradient(180deg, #fffbeb 0%, #fff5cc 50%, #ffe680 100%);
    overflow: hidden;
}

/* UNITEスタイル ヘッダー */
.whats-header-unite {
    width: 100%;
    padding-top: 60px;
}

.whats-header-bg {
    background: linear-gradient(90deg, #ffe700 0%, #fbb03b 50%, #f5a623 100%);
    border-radius: 0 0 50% 50% / 0 0 80px 80px;
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 背景の?マーク装飾 */
.whats-header-bg::before {
    content: '? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    pointer-events: none;
    overflow: hidden;
}

.whats-header-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.whats-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

/* 特徴ブロック群（縦積み） */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 特徴ブロック */
.feature-block {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px -15px rgba(251, 176, 59, 0.2);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-block-header {
    margin-bottom: 32px;
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.feature-block-title {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.text-highlight {
    color: #fbb03b;
    background: linear-gradient(transparent 60%, rgba(255, 231, 0, 0.3) 60%);
    padding: 0 4px;
}

/* デバイスモックアップ */
.device-showcase {
    position: relative;
    height: 380px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.phone {
    position: absolute;
    border: 3px solid #333;
    border-radius: 28px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phone-placeholder {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.phone-left {
    width: 140px;
    left: 15%;
    top: 50%;
    --rotate: 20deg;
    transform: translateY(-50%) perspective(800px) rotateY(20deg) translateX(30px);
    z-index: 1;
    animation: floatLeft 5s ease-in-out infinite;
}

.phone-center {
    width: 200px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: floatCenter 6s ease-in-out infinite;
    animation-delay: -1s;
}

.phone-right {
    width: 140px;
    right: 15%;
    top: 50%;
    --rotate: -20deg;
    transform: translateY(-50%) perspective(800px) rotateY(-20deg) translateX(-30px);
    z-index: 1;
    animation: floatRight 5.5s ease-in-out infinite;
    animation-delay: -2.5s;
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(-50%) perspective(800px) rotateY(20deg) translateX(30px); }
    50% { transform: translateY(calc(-50% - 20px)) perspective(800px) rotateY(20deg) translateX(30px); }
}

@keyframes floatCenter {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 18px)); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(-50%) perspective(800px) rotateY(-20deg) translateX(-30px); }
    50% { transform: translateY(calc(-50% - 22px)) perspective(800px) rotateY(-20deg) translateX(-30px); }
}

/* ポイントピル */
.feature-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.point-pill {
    background: linear-gradient(135deg, #ffe700, #fbb03b);
    color: #333;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.4);
}

/* 統計ハイライト */
.stat-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 32px 0;
}

.stat-number {
    font-size: 96px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffe700, #fbb03b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* 説明文 */
.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* 返金保証バッジ */
.guarantee-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffe700, #fbb03b);
    color: #333;
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    margin-top: 32px;
    box-shadow: 0 8px 24px rgba(251, 176, 59, 0.4), 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   UNITE-STYLE GOLD FEATURE BLOCK
   ======================================== */

/* 金色グラデーション背景ブロック */
.feature-block-gold {
    background: linear-gradient(135deg, #ffe700 0%, #fbb03b 100%);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 80px -20px rgba(251, 176, 59, 0.5);
    text-align: left;
    overflow: hidden;
}

.feature-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* 左側：テキストコンテンツ */
.feature-text-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ヘッドライン */
.feature-headline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.headline-main {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 600;
    color: #333;
    display: block;
}

.headline-highlight {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: white;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.headline-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
}

/* リード文 */
.feature-lead {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.feature-lead strong {
    color: #222;
    font-weight: 700;
}

/* 説明文テキスト */
.feature-description-text {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    margin: 16px 0 0 0;
}

/* トップラベル（参考画像スタイル） */
.feature-top-label {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 900;
    color: white;
    margin: 0 0 8px 0;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.feature-top-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

/* サブタイトル（大きめ） */
.feature-subtitle {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 24px 0 0 0;
}

/* 白背景ピル */
.feature-pills-white {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    max-width: 500px;
}

.pill-white {
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    padding: 20px 28px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: none;
    text-align: center;
    white-space: nowrap;
}

/* 3つ目のピルを中央に配置 */
.pill-white:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

/* 右側：デバイス表示 */
.feature-device-side {
    position: relative;
    min-height: 400px;
}

.device-showcase-unite {
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1200px;
}

.phone-unite {
    position: absolute;
    border: 4px solid #fff;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.phone-unite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-unite-left {
    width: 120px;
    left: 0;
    top: 50%;
    transform: translateY(-50%) perspective(800px) rotateY(15deg);
    z-index: 1;
    animation: floatUniteLeft 5s ease-in-out infinite;
}

.phone-unite-center {
    width: 180px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: floatUniteCenter 6s ease-in-out infinite;
    animation-delay: -1s;
}

.phone-unite-right {
    width: 120px;
    right: 0;
    top: 50%;
    transform: translateY(-50%) perspective(800px) rotateY(-15deg);
    z-index: 1;
    animation: floatUniteRight 5.5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes floatUniteLeft {
    0%, 100% { transform: translateY(-50%) perspective(800px) rotateY(15deg); }
    50% { transform: translateY(calc(-50% - 15px)) perspective(800px) rotateY(15deg); }
}

@keyframes floatUniteCenter {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 12px)); }
}

@keyframes floatUniteRight {
    0%, 100% { transform: translateY(-50%) perspective(800px) rotateY(-15deg); }
    50% { transform: translateY(calc(-50% - 18px)) perspective(800px) rotateY(-15deg); }
}

/* 下部ハイライト */
.feature-bottom-highlight {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.feature-bottom-highlight p {
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 700;
    color: #333;
    margin: 0;
}

.bottom-emphasis {
    display: inline;
    color: white;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 左右反転レイアウト */
.feature-block-reverse .feature-block-inner {
    grid-template-columns: 45% 55%;
}

/* イラスト画像側 */
.feature-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.feature-illustration {
    max-width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
}

/* なぜ？セクション（伝わるスタイル） */
.feature-why-block {
    margin-top: 24px;
}

.why-headline {
    margin: 0 0 16px 0;
}

.why-headline-main {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: white;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.why-headline-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #333 0%, #333 100%);
    border-radius: 2px;
}

/* 4つのキーワードボックス */
.keyword-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.keyword-box {
    background: white;
    color: #333;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #ffe700;
}

/* レスポンシブ */
@media (max-width: 768px) {
    /* UNITE Header - Mobile */
    .whats-header-unite {
        padding-top: 40px;
    }

    .whats-header-bg {
        border-radius: 0 0 50% 50% / 0 0 50px 50px;
        padding: 40px 16px 60px;
    }

    .whats-header-bg::before {
        font-size: 50px;
        gap: 20px;
    }

    .whats-header-title {
        font-size: 24px;
    }

    .whats-container {
        padding: 40px 16px 70px;
    }

    .feature-block {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .features-list {
        gap: 40px;
    }

    .device-showcase {
        height: 280px;
    }

    .phone-left,
    .phone-right {
        display: none;
    }

    .phone-center {
        width: 160px;
    }

    .stat-number {
        font-size: 72px;
    }

    .guarantee-badge {
        font-size: 16px;
        padding: 14px 28px;
    }

    /* UNITE-style Gold Block - Mobile */
    .feature-block-gold {
        padding: 32px 20px;
        border-radius: 28px;
    }

    .feature-block-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-text-side {
        text-align: center;
    }

    .feature-headline {
        align-items: center;
    }

    .headline-highlight::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .feature-lead {
        text-align: center;
    }

    .feature-pills-white {
        max-width: 100%;
        gap: 12px;
    }

    .pill-white {
        padding: 14px 16px;
        font-size: 13px;
    }

    .pill-white:nth-child(3) {
        max-width: none;
    }

    .feature-device-side {
        min-height: 300px;
        order: -1;
    }

    .device-showcase-unite {
        height: 300px;
    }

    .phone-unite-left,
    .phone-unite-right {
        display: none;
    }

    .phone-unite-center {
        width: 160px;
    }

    .feature-bottom-highlight {
        margin-top: 24px;
        padding-top: 24px;
    }

    .feature-bottom-highlight p {
        font-size: 16px;
        line-height: 1.6;
    }

    .bottom-emphasis {
        display: block;
        margin-top: 4px;
    }

    /* Feature block 2 - Mobile */
    .feature-block-reverse .feature-block-inner {
        grid-template-columns: 1fr;
    }

    .feature-image-side {
        order: -1;
    }

    .feature-illustration {
        max-width: 280px;
    }

    .feature-why-block {
        margin-top: 16px;
    }

    .why-headline-main {
        font-size: 18px;
    }

    .keyword-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .keyword-box {
        padding: 12px 16px;
        font-size: 14px;
        letter-spacing: 0.3em;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .phone {
        animation: none !important;
    }

    .phone-unite {
        animation: none !important;
    }

    .feature-block {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   ACHIEVEMENTS SECTION (実績) - 白背景版
   ======================================== */
.achievements {
    padding: 100px 0;
    background: var(--white);
}

.achievements .section-header {
    margin-bottom: 60px;
}

.achievements .section-en {
    color: var(--orange);
}

.achievements .section-title {
    color: var(--black);
}

.achievements .highlight-pink {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Achievements Image - 画像版 */
.achievements-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.achievements-full-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Stats Grid - 白背景版 */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 176, 59, 0.15);
}

.stat-number {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.stat-unit {
    font-size: 20px;
    color: var(--black);
    -webkit-text-fill-color: var(--black);
}

.stat-label {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 4px;
    font-weight: 500;
}

.stat-sub {
    font-size: 13px;
    color: var(--gray);
}

/* ========================================
   REASONS SECTION (選ばれる理由)
   ======================================== */
.reasons {
    padding: 80px 0;
    background: var(--white);
    color: var(--black);
}

.reasons .section-title {
    color: var(--black);
}

.reason-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reason-card {
    background: var(--black);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(251, 176, 59, 0.3);
    transition: var(--transition-normal);
}

.reason-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.reason-number {
    font-family: var(--font-en);
    font-size: 60px;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.reason-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    line-height: 1.5;
}

.reason-text {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
    position: relative;
}

/* ========================================
   PRICING SECTION (料金プラン) - 白背景版
   ======================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.pricing .section-en {
    color: var(--orange);
}

.pricing .section-title {
    color: var(--black);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #f0f0f0;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    border-color: var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 176, 59, 0.15);
}

.pricing-card.popular {
    border: 3px solid var(--orange);
    transform: scale(1.05);
    z-index: 1;
    background: linear-gradient(180deg, rgba(251, 176, 59, 0.08) 0%, #ffffff 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(251, 176, 59, 0.4);
}

.plan-header {
    margin-bottom: 24px;
}

.plan-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
}

.plan-price {
    margin-bottom: 32px;
}

.price-yen {
    font-family: var(--font-en);
    font-size: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: top;
}

.price-amount {
    font-family: var(--font-en);
    font-size: 52px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: var(--gray);
}

.plan-features {
    text-align: left;
}

.plan-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--gray-dark);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 16px;
}

.plan-features li.highlight {
    color: var(--black);
    font-weight: 700;
}

/* ========================================
   COMPARISON TABLE (競合比較)
   ======================================== */
.comparison {
    padding: 100px 0;
    background: var(--white);
}

.comparison .section-en {
    color: var(--orange);
}

.comparison .section-title {
    color: var(--black);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 800px;
}

.comparison-table thead th {
    padding: 24px 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
}

.comparison-table th.col-label {
    background: #f8f8f8;
    color: var(--black);
    width: 15%;
}

.comparison-table th.col-ours {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
    color: var(--black);
    font-size: 18px;
    width: 30%;
    position: relative;
}

.comparison-table th.col-ours::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--black);
    opacity: 0.1;
}

.comparison-table th.col-competitor {
    background: #f0f0f0;
    color: var(--gray-dark);
    width: 27.5%;
}

.comparison-table tbody td {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1.6;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(251, 176, 59, 0.03);
}

.comparison-table td.row-label {
    background: #fafafa;
    font-weight: 700;
    color: var(--black);
    text-align: left;
    padding-left: 24px;
}

.comparison-table td.col-ours {
    background: linear-gradient(180deg, rgba(255, 231, 0, 0.08) 0%, rgba(251, 176, 59, 0.08) 100%);
    position: relative;
}

.comparison-table td.col-ours::before,
.comparison-table td.col-ours::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--yellow), var(--orange));
    opacity: 0.3;
}

.comparison-table td.col-ours::before {
    left: 0;
}

.comparison-table td.col-ours::after {
    right: 0;
}

.comparison-table td.col-ours strong {
    display: block;
    font-size: 15px;
    color: var(--black);
    margin-top: 4px;
}

.comparison-table td.col-competitor {
    color: var(--gray-dark);
}

.comparison-table .sub-text {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}

/* アイコンスタイル */
.icon-excellent {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.icon-average {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #FCD34D;
    color: var(--black);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.icon-poor {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Comparison Table Responsive */
@media (max-width: 768px) {
    .comparison-table {
        min-width: 700px;
    }

    .comparison-table thead th {
        padding: 16px 12px;
        font-size: 13px;
    }

    .comparison-table th.col-ours {
        font-size: 14px;
    }

    .comparison-table tbody td {
        padding: 16px 12px;
        font-size: 12px;
    }

    .comparison-table td.col-ours strong {
        font-size: 13px;
    }

    .comparison-table .sub-text {
        font-size: 10px;
    }

    .icon-excellent,
    .icon-average,
    .icon-poor {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
    }
}

/* ========================================
   FLOW SECTION (参加の流れ) - 洗練版
   ======================================== */
.flow {
    padding: 100px 0;
    background: var(--white);
    color: var(--black);
}

.flow .section-en {
    color: var(--orange);
}

.flow .section-title {
    color: var(--black);
}

.flow-steps-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.flow-step-h {
    flex: 1;
    max-width: 220px;
    min-height: 200px;
    text-align: center;
    background: var(--white);
    padding: 32px 20px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.flow-step-h:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(251, 176, 59, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(251, 176, 59, 0.3);
}

.step-icon span {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.flow-step-h h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    white-space: nowrap;
}

.flow-step-h p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-top: auto;
}

.flow-arrow {
    font-size: 28px;
    color: var(--orange);
    margin-top: 50px;
    font-weight: 700;
}

/* ========================================
   FAQ SECTION - 白背景版
   ======================================== */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.faq .section-en {
    color: var(--orange);
}

.faq .section-title {
    color: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(251, 176, 59, 0.3);
}

.faq-item.active {
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(251, 176, 59, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    text-align: left;
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(251, 176, 59, 0.03);
}

.q-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    color: var(--black);
    font-weight: 700;
    border-radius: 50%;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(251, 176, 59, 0.3);
}

.q-text {
    flex: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--orange);
    transition: var(--transition-normal);
}

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

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

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px 76px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.9;
}

/* ========================================
   FINAL CTA SECTION - 白背景版
   ======================================== */
.final-cta {
    padding: 120px 20px;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #fffbf0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-badge {
    font-size: 18px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--black);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

/* ========================================
   FOOTER - 白背景版
   ======================================== */
.footer {
    padding: 60px 20px;
    background: var(--white);
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-company {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.copyright {
    font-size: 12px;
    color: var(--gray-light);
}

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-main);
    color: var(--black);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 5px 25px rgba(251, 176, 59, 0.4);
    transition: var(--transition-normal);
}

.floating-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(251, 176, 59, 0.5);
}

.floating-cta-arrow {
    transition: transform 0.3s ease;
}

.floating-cta-button:hover .floating-cta-arrow {
    transform: translateX(3px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reason-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .flow-steps-horizontal {
        flex-wrap: wrap;
        gap: 30px;
    }

    .flow-arrow {
        display: none;
    }

    .flow-step-h {
        width: 45%;
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }

    .section-title {
        font-size: 26px;
    }

    /* Worry Section */
    .worry-section {
        padding: 40px 0 30px;
    }

    .worry-complete-image {
        max-width: 100%;
    }

    .solution-badge {
        margin-top: 20px;
        padding: 40px 0 60px;
    }

    .solution-text {
        font-size: 24px;
    }

    .color-reveal-wrapper .word-base,
    .color-reveal-wrapper .word-color {
        font-size: 28px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-unit {
        font-size: 16px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* CTA */
    .cta-section {
        padding: 24px 16px 36px;
    }

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

    .cta-button {
        padding: 16px 36px;
        font-size: 16px;
    }

    .cta-button.large {
        padding: 18px 40px;
        font-size: 17px;
    }

    /* Flow */
    .flow-steps-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .flow-step-h {
        width: 100%;
        max-width: 280px;
    }

    /* FAQ */
    .faq-question {
        padding: 20px 16px;
        font-size: 14px;
    }

    .faq-answer p {
        padding: 0 16px 20px 56px;
        font-size: 14px;
    }

    /* Final CTA */
    .final-cta {
        padding: 80px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    /* Floating CTA */
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .floating-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .reason-card {
        padding: 30px 20px;
    }

    .reason-number {
        font-size: 48px;
    }
}

/* ========================================
   NEW WHATS SECTION (何がすごいの？) - シンプル版
   ======================================== */
.whats-section-new {
    background: var(--black);
    padding: 100px 0;
}

.whats-header-new {
    text-align: center;
    margin-bottom: 60px;
}

.whats-title-new {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
}

/* 特徴カード群 */
.feature-cards-new {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

/* 特徴カード */
.feature-card-new {
    background: var(--black-medium);
    border: 1px solid rgba(251, 176, 59, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
}

.feature-card-new:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(251, 176, 59, 0.15);
}

/* 番号 */
.feature-number-new {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 70px;
}

/* コンテンツ */
.feature-content-new {
    flex: 1;
}

.feature-title-new {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.feature-desc-new {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.9;
    margin: 0 0 20px 0;
}

.feature-desc-new strong {
    color: var(--yellow);
    font-weight: 700;
}

/* タグ */
.feature-tags-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag-new {
    background: rgba(251, 176, 59, 0.15);
    border: 1px solid rgba(251, 176, 59, 0.3);
    color: var(--yellow);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

/* ビジュアル（特徴2用） */
.feature-visual-new {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.visual-item-new {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.visual-icon-new {
    font-size: 20px;
}

.visual-text-new {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.visual-arrow-new,
.visual-plus-new {
    font-size: 20px;
    color: var(--orange);
    font-weight: 700;
}

/* 統計（特徴3用） */
.feature-stat-new {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 8px;
}

.stat-num-new {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-text-new {
    font-size: 16px;
    color: var(--gray-light);
    font-weight: 600;
}

/* 保証バッジ（特徴4用） */
.guarantee-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-main);
    color: var(--black);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
}

.guarantee-icon-new {
    font-size: 20px;
}

/* 画像付きカード */
.feature-card-with-image {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.feature-image-new {
    flex-shrink: 0;
}

.feature-image-new img {
    width: 220px;
    height: auto;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* 特徴画像ブロック */
.feature-image-block {
    width: 100%;
}

.feature-image-block img {
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: #000;
    display: block;
}

/* 全額返金保証カード - Premium */
.guarantee-card-premium {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 24px;
    padding: 4px;
    overflow: hidden;
}

.guarantee-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 50%, var(--yellow) 100%);
    border-radius: 24px;
    z-index: 0;
}

.guarantee-card-inner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    gap: 32px;
    align-items: center;
    z-index: 1;
}

.guarantee-number {
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.3;
}

.guarantee-main {
    flex: 1;
    text-align: center;
    position: relative;
}

.guarantee-shield {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(251, 176, 59, 0.4);
}

.shield-icon {
    font-size: 40px;
}

.guarantee-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.guarantee-highlight {
    display: block;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.guarantee-desc {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.9;
    margin: 0 0 24px 0;
}

.guarantee-desc strong {
    color: var(--white);
}

.guarantee-stamp {
    display: inline-block;
    border: 3px solid var(--orange);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    position: absolute;
    right: 0;
    top: 20px;
    opacity: 0.8;
}

.stamp-text {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .guarantee-card-inner {
        flex-direction: column;
        padding: 32px 24px;
        gap: 16px;
    }

    .guarantee-number {
        font-size: 48px;
        position: absolute;
        top: 16px;
        left: 24px;
    }

    .guarantee-shield {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

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

    .guarantee-stamp {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 16px;
        width: 80px;
        height: 80px;
    }

    .stamp-text {
        font-size: 9px;
    }
}

/* 結果にコミット画像 */
.commit-result-image {
    margin-top: 60px;
    text-align: center;
}

.commit-result-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: var(--radius-lg);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .whats-section-new {
        padding: 70px 0;
    }

    .whats-header-new {
        margin-bottom: 40px;
    }

    .feature-cards-new {
        gap: 24px;
    }

    .feature-card-new {
        flex-direction: column;
        padding: 28px 24px;
        gap: 20px;
    }

    .feature-number-new {
        font-size: 36px;
        min-width: auto;
    }

    .feature-title-new {
        font-size: 18px;
    }

    .feature-desc-new {
        font-size: 14px;
    }

    .feature-visual-new {
        gap: 10px;
    }

    .visual-item-new {
        padding: 10px 14px;
    }

    .visual-text-new {
        font-size: 13px;
    }

    .stat-num-new {
        font-size: 44px;
    }

    .guarantee-badge-new {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* 画像付きカード - モバイル */
    .feature-card-with-image {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card-with-image .feature-number-new {
        order: 1;
    }

    .feature-card-with-image .feature-content-new {
        order: 2;
    }

    .feature-image-new {
        order: 3;
        text-align: center;
    }

    .feature-image-new img {
        width: 180px;
        margin: 0 auto;
    }
}
