/* ================================================
   口コミメーカー LP - Penmark Style
   ワクワク感・親しみやすさ・人間らしさ
   ================================================ */

/* ================== CSS Variables ================== */
:root {
    /* Primary Colors - Fresh Green */
    --primary: #2dc573;
    --primary-dark: #1ac067;
    --primary-light: #4ed892;

    /* Secondary Colors - Navy Blue */
    --secondary: #1940a5;
    --secondary-dark: #142e7a;
    --secondary-light: #2255cc;

    /* Accent Colors - 控えめなアクセント */
    --accent-yellow: #fbbf24;
    --accent-orange: #f97316;
    --accent-purple: #1940a5;
    --accent-pink: #2dc573;
    --accent-blue: #1940a5;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f0fdf4;
    --bg-cream: #fefce8;
    --bg-navy: #1940a5;
    --bg-blue: #1940a5;

    /* Text Colors */
    --text-dark: #1c3244;
    --text-body: #374151;
    --text-light: #4b5563;
    --text-muted: #6b7280;
    --text-white: #ffffff;

    /* Typography */
    --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Border Radius - 極端な角丸でFriendly UI */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    /* Transitions - ゆったりとした動き */
    --transition-base: 0.4s cubic-bezier(.34,1.56,.64,1);
    --transition-smooth: 0.6s ease;

    /* Shadows - 柔らかい影 */
    --shadow-sm: 2px 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 4px 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 8px 16px 32px rgba(0, 0, 0, 0.16);
    --shadow-colored: 4px 8px 24px rgba(45, 197, 115, 0.24);

    /* Legacy variables (for compatibility) */
    --gold-metallic: var(--accent-yellow);
    --gold-shine: var(--accent-yellow);
    --gold-subtle: var(--accent-yellow);
    --gold: var(--accent-yellow);
    --gold-dark: #e5b800;
    --gold-light: #ffe066;
    --primary-50: #f0fdf4;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --font-display: 'Noto Sans JP', sans-serif;
}

/* ================== Floating Decorations - コンフェッティスタイル ================== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.6;
    will-change: transform;
}

/* 小さなドット */
.confetti-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.confetti-dot.yellow { background: #fbbf24; }
.confetti-dot.orange { background: #fb923c; }
.confetti-dot.blue { background: #60a5fa; }
.confetti-dot.pink { background: #f472b6; }

/* 小さな四角 */
.confetti-square {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--primary);
}

/* 小さな三角 */
.confetti-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--primary);
}

/* リング */
.confetti-ring {
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: transparent;
}

/* プラス */
.confetti-plus {
    width: 12px;
    height: 12px;
    position: relative;
}

.confetti-plus::before,
.confetti-plus::after {
    content: '';
    position: absolute;
    background: var(--primary);
}

.confetti-plus::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.confetti-plus::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* 矢印型の図形 */
.shape-arrow {
    width: 0;
    height: 0;
    border-style: solid;
}

.shape-arrow.pink {
    border-width: 0 25px 50px 25px;
    border-color: transparent transparent var(--accent-pink) transparent;
}

.shape-arrow.blue {
    border-width: 0 25px 50px 25px;
    border-color: transparent transparent var(--accent-blue) transparent;
}

.shape-arrow.yellow {
    border-width: 0 25px 50px 25px;
    border-color: transparent transparent var(--accent-yellow) transparent;
}

/* 円形 */
.shape-circle {
    border-radius: 50%;
}

.shape-circle.pink {
    background: var(--accent-pink);
}

.shape-circle.blue {
    background: var(--accent-blue);
}

.shape-circle.yellow {
    background: var(--accent-yellow);
}

/* ジグザグ/稲妻型 */
.shape-zigzag {
    width: 40px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-pink) 25%, transparent 25%) -20px 0,
                linear-gradient(225deg, var(--accent-pink) 25%, transparent 25%) -20px 0,
                linear-gradient(315deg, var(--accent-pink) 25%, transparent 25%),
                linear-gradient(45deg, var(--accent-pink) 25%, transparent 25%);
    background-size: 40px 40px;
}

.shape-zigzag.blue {
    background: linear-gradient(135deg, var(--accent-blue) 25%, transparent 25%) -20px 0,
                linear-gradient(225deg, var(--accent-blue) 25%, transparent 25%) -20px 0,
                linear-gradient(315deg, var(--accent-blue) 25%, transparent 25%),
                linear-gradient(45deg, var(--accent-blue) 25%, transparent 25%);
    background-size: 40px 40px;
}

/* SVG稲妻形状 */
.shape-bolt {
    width: 60px;
    height: 100px;
}

.shape-bolt svg {
    width: 100%;
    height: 100%;
}

/* アニメーション */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateY(-20px) rotate(var(--rotate, 0deg)); }
}

@keyframes floatSway {
    0%, 100% { transform: translateX(0) rotate(var(--rotate, 0deg)); }
    50% { transform: translateX(15px) rotate(calc(var(--rotate, 0deg) + 5deg)); }
}

.float-anim-1 {
    animation: floatUpDown 6s ease-in-out infinite;
}

.float-anim-2 {
    animation: floatSway 8s ease-in-out infinite;
}

.float-anim-3 {
    animation: floatUpDown 7s ease-in-out infinite reverse;
}

/* グローバル浮遊装飾 - 無効化 */
.global-floating-shapes {
    display: none;
}

/* 浮遊アニメーション */
@keyframes floatConfetti {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes floatConfetti2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) translateX(5px) rotate(10deg);
    }
    66% {
        transform: translateY(-18px) translateX(-5px) rotate(-5deg);
    }
}

@keyframes floatConfetti3 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.1);
    }
}

.float-slow { animation: floatConfetti 8s ease-in-out infinite; }
.float-medium { animation: floatConfetti2 6s ease-in-out infinite; }
.float-fast { animation: floatConfetti3 4s ease-in-out infinite; }

@media (max-width: 768px) {
    .global-floating-shapes {
        display: none;
    }
}

@media (max-width: 768px) {
    .global-floating-shapes .floating-shape {
        display: none;
    }
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

/* ================== Utility Classes ================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}

@media (max-width: 768px) {
    .sp-only { display: inline; }
    .pc-only { display: none; }
}

/* ================== Shine Animation for CTA Buttons ================== */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn-shine:hover::before {
    animation: shine 0.6s ease-out;
}

.btn-shine:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

/* Highlight Text */
.highlight {
    color: var(--primary);
}

.gradient-text {
    color: var(--primary);
}

/* Primary Color Text (for neutral/negative contexts) */
.text-primary {
    color: var(--primary);
}

/* ================== Progress Bar ================== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-subtle);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ================== Header ================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.02em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    letter-spacing: 0.02em;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}

.header-cta-primary {
    background: var(--primary);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 8px 24px rgba(45, 197, 115, 0.3);
}

.header-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 6px 12px 28px rgba(45, 197, 115, 0.4);
}

.header-cta-secondary {
    background: #fff;
    color: var(--text-dark);
    border: 2px solid var(--gray-200);
}

.header-cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-700);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.mobile-nav-cta {
    display: block;
    text-align: center;
    padding: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.mobile-nav-cta-primary {
    background: var(--primary);
    color: #fff;
}

.mobile-nav-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 6px 12px 28px rgba(45, 197, 115, 0.4);
}

.mobile-nav-cta-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

@media (max-width: 900px) {
    .header-nav, .header-buttons {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

/* ================== Buttons ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 36px;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.15);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 4px 8px 24px rgba(45, 197, 115, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 6px 12px 28px rgba(45, 197, 115, 0.4);
}

.btn-gold {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 36px;
}

.btn-gold::before {
    display: none;
}

.btn-gold:hover {
    background: #dcfce7;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 6px 12px 28px rgba(0, 0, 0, 0.2);
}

/* Orange Button */
.btn-orange {
    background: #fff;
    color: #16a34a;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 197, 94, 0.2),
        transparent
    );
    transform: skewX(-25deg);
}

.btn-orange:hover::before {
    animation: shine 0.6s ease-out;
}

.btn-orange:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* White Outline Button */
.btn-white-outline {
    background: #fff;
    color: var(--gray-700);
    font-weight: 600;
    border: 1px solid var(--gray-300);
}

.btn-white-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ================== Section Styles ================== */
section {
    position: relative;
}

/* セクション区切りライン - disabled for clean look */
section::before {
    display: none;
}

section:first-of-type::before,
.hero + section::before,
.results-section::before {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-header.light {
    color: #fff;
}

.section-header.light .section-title {
    color: #fff;
}

.section-header.light .section-label {
    background: #fff;
    color: var(--primary);
}

.section-header.light .section-lead {
    color: rgba(255, 255, 255, 0.9);
}

.section-header.light .highlight {
    color: #fff;
}

.section-header.light .text-primary {
    color: #fff;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-label::before,
.section-label::after {
    display: none;
}

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

/* セクションラベルのカラーバリエーション */
.section-label.mint {
    background: linear-gradient(135deg, var(--primary) 0%, #10b981 100%);
    color: #fff;
}

.section-label.mint::before {
    background: var(--primary);
}

.section-label.orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    color: #fff;
}

.section-label.orange::before {
    background: var(--primary);
}

.section-label.blue {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
}

.section-label.blue::before {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
}

/* セクション番号バッジ（オプション） */
.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    font-family: var(--font-display);
}

.section-number.blue {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #7ee8e1 100%);
    box-shadow: 0 4px 16px rgba(78, 205, 196, 0.3);
}

.section-number.orange {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

.section-title {
    font-size: 2.65rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.section-title .text-primary {
    color: var(--primary);
    position: relative;
}

.section-title .text-primary::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(45, 197, 115, 0.25);
    z-index: -1;
    border-radius: 4px;
}

.section-title .highlight {
    color: var(--primary);
}

.section-header.light .section-title .highlight {
    color: #fff;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.95rem;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .section-label {
        font-size: 0.7rem;
    }
}

/* ================== Section Wave Dividers ================== */
.section-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,60 L0,30 Q360,0 720,30 T1440,30 L1440,60 Z'/%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    pointer-events: none;
}

.section-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,0 L0,30 Q360,60 720,30 T1440,30 L1440,0 Z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
}

/* 爽やかなセクション背景バリエーション */
.section-bg-fresh {
    background: #ffffff;
}

.section-bg-mint {
    background: #fafafa;
}

.section-bg-warm {
    background: #ffffff;
}

.section-bg-soft {
    background: #fafafa;
}

/* ================== Hero Section - Map Style ================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: #fff;
}

.hero::before,
.hero::after {
    display: none;
}

/* 地図風の背景 */
.hero-map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 1;
}

.hero-map-grid {
    width: 100%;
    height: 100%;
}

/* マップピン */
.hero-map-pins {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pinDrop 0.6s cubic-bezier(.34,1.56,.64,1) both;
}

.map-pin .pin-head {
    width: 48px;
    height: 48px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.map-pin .pin-head i {
    transform: rotate(45deg);
    font-size: 1rem;
    color: #fff;
}

.map-pin .pin-tail {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    margin-top: 4px;
    filter: blur(2px);
}

/* ピンの色 */
.pin-cafe .pin-head    { background: #ef4444; }
.pin-restaurant .pin-head { background: #f472b6; }
.pin-salon .pin-head   { background: #3b82f6; }
.pin-shop .pin-head    { background: #f59e0b; }
.pin-clinic .pin-head  { background: var(--primary); }
.pin-gym .pin-head     { background: #8b5cf6; }

/* ピンのアニメーション */
@keyframes pinDrop {
    0% { opacity: 0; transform: translateY(-40px) scale(0.5); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.map-pin:nth-child(1) { animation-delay: 0.3s; }
.map-pin:nth-child(2) { animation-delay: 0.6s; }
.map-pin:nth-child(3) { animation-delay: 0.9s; }
.map-pin:nth-child(4) { animation-delay: 1.2s; }
.map-pin:nth-child(5) { animation-delay: 1.5s; }
.map-pin:nth-child(6) { animation-delay: 1.8s; }

/* ピンの浮遊 */
@keyframes pinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.map-pin { animation: pinDrop 0.6s cubic-bezier(.34,1.56,.64,1) both, pinFloat 4s ease-in-out infinite; }
.map-pin:nth-child(1) { animation-delay: 0.3s, 2.3s; }
.map-pin:nth-child(2) { animation-delay: 0.6s, 2.6s; }
.map-pin:nth-child(3) { animation-delay: 0.9s, 2.9s; }
.map-pin:nth-child(4) { animation-delay: 1.2s, 3.2s; }
.map-pin:nth-child(5) { animation-delay: 1.5s, 3.5s; }
.map-pin:nth-child(6) { animation-delay: 1.8s, 3.8s; }

/* レビュー吹き出し */
.hero-review-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.review-bubble {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    max-width: 260px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bubble-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.bubble-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bubble-body {
    flex: 1;
    min-width: 0;
}

.review-bubble .bubble-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.review-bubble .bubble-stars i {
    font-size: 0.75rem;
    color: #fbbf24;
}

.review-bubble p {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* 吹き出しの順次フェードイン */
@keyframes bubbleFadeIn {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.review-bubble.visible {
    animation: bubbleFadeIn 0.8s cubic-bezier(.34,1.56,.64,1) forwards, bubbleFloat 5s ease-in-out 0.8s infinite;
}

.review-bubble.fade-out {
    animation: bubbleFadeOut 0.8s ease forwards;
}

@keyframes bubbleFadeOut {
    0% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

/* 中央のメインコンテンツ */
.hero-center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(45, 197, 115, 0.3);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title .star-icon {
    color: #fbbf24;
    display: inline-block;
    animation: starPulse 2s ease-in-out infinite;
}

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

.hero-title .gradient-text {
    display: block;
    margin-top: 8px;
    color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: var(--text-dark);
    font-weight: 600;
}

.hero-subtitle .subtitle-highlight {
    color: var(--primary);
    font-weight: 700;
    background: rgba(45, 197, 115, 0.1);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    -webkit-text-fill-color: unset;
}

.hero-cta-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.hero-buttons {
    justify-content: center;
}

.hero-buttons .btn {
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    position: relative;
}

.hero-buttons .btn-white-outline {
    background: #fff;
    border: 2px solid var(--gray-300);
    color: var(--text-dark);
}

.hero-buttons .btn-white-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(45, 197, 115, 0.15);
}

/* Free Support Banner */
.free-support-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 166, 35, 0.5);
    }
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.support-badge i {
    font-size: 0.85rem;
}

.support-text {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
}

.support-text strong {
    color: #fff;
}

/* CTA Guarantees */
.cta-guarantees {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.guarantee-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .free-support-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 16px;
    }

    .support-text {
        font-size: 0.85rem;
    }

    .cta-guarantees {
        gap: 8px 16px;
        justify-content: center;
    }

    .guarantee-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .cta-guarantees {
        flex-direction: column;
        gap: 6px;
        align-items: center;
    }

    .guarantee-item {
        font-size: 0.7rem;
    }
}

/* Hero Stats - 3つの数字 */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-unit {
    font-size: 1.4rem;
    font-weight: 700;
    margin-left: 2px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 16px;
        padding: 16px 0;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-stat-unit {
        font-size: 0.9rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-stat-divider {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 12px;
        padding: 14px 0;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-stat-unit {
        font-size: 0.8rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-stat-divider {
        height: 28px;
    }
}

/* Hero Benefits (legacy - hidden) */
.hero-benefits {
    display: none;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--gray-700);
}

.hero-benefit i {
    color: var(--primary);
    font-size: 0.8rem;
}

.hero-benefit strong {
    color: var(--primary);
}

/* Hero Users */
.hero-users {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-users-avatars {
    display: flex;
    align-items: center;
}

.hero-users-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-users-avatars img:first-child {
    margin-left: 0;
}

.users-count {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    margin-left: -12px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-users-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.hero-users-text strong {
    color: var(--gray-900);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -50px;
    position: relative;
}

/* 浮遊するユーザーアイコンと吹き出し */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.floating-user {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatUser 4s ease-in-out infinite;
}

.floating-user-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.floating-user-2 {
    top: 50%;
    right: -40px;
    flex-direction: row-reverse;
    animation-delay: 1.3s;
}

.floating-user-3 {
    bottom: 15%;
    left: 0;
    animation-delay: 2.6s;
}

@keyframes floatUser {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.user-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(45, 197, 115, 0.3);
    border: 3px solid #fff;
}

.user-avatar.style-2 {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.user-avatar.style-3 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.user-speech-bubble {
    background: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    white-space: nowrap;
}

.user-speech-bubble::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
}

.floating-user-1 .user-speech-bubble::before,
.floating-user-3 .user-speech-bubble::before {
    left: -10px;
    border-right-color: #fff;
}

.floating-user-2 .user-speech-bubble::before {
    right: -10px;
    border-left-color: #fff;
}

.user-speech-bubble .speech-stars {
    display: block;
    color: #fbbf24;
    font-size: 0.7rem;
    margin-top: 2px;
}

.user-speech-bubble.small {
    padding: 8px 12px;
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .hero-floating-elements {
        display: none;
    }
}

.hero-mockup {
    position: relative;
}

.mockup-phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-demo {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.demo-logo {
    width: 36px;
    height: 36px;
    background: #4285f4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.demo-header span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.demo-stars {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 24px 0;
}

.demo-stars i {
    font-size: 2rem;
    color: var(--secondary);
    animation: star-pulse 2s ease-in-out infinite;
}

.demo-stars i:nth-child(2) { animation-delay: 0.1s; }
.demo-stars i:nth-child(3) { animation-delay: 0.2s; }
.demo-stars i:nth-child(4) { animation-delay: 0.3s; }
.demo-stars i:nth-child(5) { animation-delay: 0.4s; }

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

.demo-rating-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    padding: 8px 0 4px;
}

.demo-ai-generating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.12) 100%);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 400;
}

.ai-icon-pulse {
    width: 24px;
    height: 24px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.ai-icon-pulse i {
    font-size: 0.7rem;
    color: #fff;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(30, 64, 175, 0);
        transform: scale(1.05);
    }
}

.demo-text {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--gray-700);
    line-height: 1.7;
    flex: 1;
    border: 1px solid var(--gray-100);
}

.typing-text {
    display: inline;
}

.cursor {
    animation: blink 1s step-end infinite;
    color: var(--gold);
    font-weight: 400;
}

@keyframes blink {
    50% { opacity: 0; }
}

.demo-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--gold-subtle);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(232, 138, 30, 0.3);
}

.demo-submit-btn i {
    font-size: 0.9rem;
}

/* ================== Hero Simple Phone ================== */
.review-demo-simple {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    gap: 16px;
    text-align: center;
}

.demo-simple-header .google-logo {
    height: 24px;
    width: auto;
    margin: 0 auto;
}

.demo-simple-question {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 400;
}

.demo-simple-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.demo-simple-stars i {
    font-size: 2.2rem;
    color: var(--secondary);
    animation: star-pop 0.5s ease forwards;
}

.demo-simple-stars i:nth-child(1) { animation-delay: 0.1s; }
.demo-simple-stars i:nth-child(2) { animation-delay: 0.2s; }
.demo-simple-stars i:nth-child(3) { animation-delay: 0.3s; }
.demo-simple-stars i:nth-child(4) { animation-delay: 0.4s; }
.demo-simple-stars i:nth-child(5) { animation-delay: 0.5s; }

@keyframes star-pop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.demo-simple-tap {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-full);
}

.demo-simple-arrow {
    width: 32px;
    height: 32px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-down 1.5s ease-in-out infinite;
}

.demo-simple-arrow i {
    color: #fff;
    font-size: 0.9rem;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.demo-simple-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gold-subtle);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-simple-result i {
    font-size: 0.9rem;
}

/* ================== Hero Phone Modern (Rich Design) ================== */
.hero-phone-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 40px;
    padding: 6px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #0d0d0d;
    border-radius: 10px;
    z-index: 10;
}

.hero-phone-screen {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 34px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-screen-header {
    padding: 48px 24px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
}

.hero-screen-logo {
    height: 22px;
    width: auto;
    opacity: 0.9;
}

.hero-screen-content {
    flex: 1;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: -50px;
}

.hero-screen-question {
    font-size: 0.95rem;
    color: #374151;
    text-align: center;
    font-weight: 400;
}

.hero-screen-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-screen-stars i {
    font-size: 1.6rem;
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.hero-screen-hint {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 20px;
}

.result-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.5;
    padding: 8px 12px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

/* Floating Badges */
.mockup-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-700);
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-badge i {
    color: var(--secondary-light);
    font-size: 1rem;
}

.floating-badge i.gold {
    color: var(--secondary);
}

.badge-1 {
    top: 60px;
    right: -60px;
    animation-delay: 0s;
}

.badge-2 {
    top: 220px;
    left: -80px;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 140px;
    right: -40px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* AI Result Card - New Layout */
.ai-result-card {
    position: absolute;
    right: -260px;
    bottom: 0;
    top: auto;
    transform: none;
    width: 280px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid rgba(45, 197, 115, 0.2);
    box-shadow: 8px 16px 40px rgba(45, 197, 115, 0.2);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ai-result-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 14px 18px;
    border-radius: 20px 20px 0 0;
}

.ai-badge-large {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}

.ai-badge-large i {
    font-size: 1rem;
    color: #fff;
}

.ai-result-body {
    padding: 18px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.ai-review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.ai-review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.ai-generated-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 12px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}


/* AI Review Slider - Horizontal Scroll */
.ai-review-slider {
    position: relative;
    min-height: 100px;
    margin-bottom: 12px;
    overflow: hidden;
}

.ai-review-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ai-review-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding-left: 10px;
    padding-right: 8px;
    box-sizing: border-box;
}

.ai-review-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.15) 100%);
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 6px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.ai-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.ai-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.ai-slider-dot:hover {
    background: var(--gray-300);
}

.ai-slider-dot.active {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.ai-result-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--gray-600);
    padding: 10px 14px;
    background: #f1f5f9;
    border-radius: 8px;
    margin-top: 4px;
}

.ai-result-meta i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* Stats Badges - New Layout */
.mockup-stats {
    position: absolute;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    animation: slideInLeft 0.6s ease-out both;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-badge:nth-child(1) { animation-delay: 0.3s; }
.stat-badge:nth-child(2) { animation-delay: 0.5s; }
.stat-badge:nth-child(3) { animation-delay: 0.7s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.stat-primary .stat-icon {
    background: var(--gray-500);
    color: #fff;
}

.stat-secondary .stat-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #fff;
}

.stat-tertiary .stat-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* Responsive adjustments for new layout */
@media (max-width: 1200px) {
    .ai-result-card {
        right: -180px;
        bottom: -20px;
        width: 240px;
    }
}

@media (max-width: 991px) {
    .hero-mockup {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .ai-result-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 240px;
        margin-top: 0;
        flex-shrink: 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
    }
}

    .mockup-stats {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        gap: 12px;
    }

    .stat-badge {
        min-width: auto;
        padding: 10px 14px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1rem;
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.4rem;
    }

    /* タブレットではピンを少し小さく */
    .map-pin .pin-head {
        width: 40px;
        height: 40px;
    }
    .map-pin .pin-head i {
        font-size: 0.85rem;
    }

    .review-bubble {
        max-width: 180px;
        padding: 10px 12px;
        gap: 8px;
    }
    .review-bubble p {
        font-size: 0.75rem;
    }
    .bubble-avatar {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* モバイルではピンを隠す */
    .hero-map-pins {
        display: none;
    }

    /* モバイルではレビューを3つに絞り、コンパクトに表示 */
    .hero-review-bubbles {
        display: block;
    }

    .review-bubble {
        max-width: 140px;
        padding: 6px 8px;
        gap: 6px;
        border-width: 1px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .review-bubble .bubble-avatar {
        width: 24px;
        height: 24px;
    }

    .review-bubble .bubble-stars i {
        font-size: 0.5rem;
    }

    .review-bubble .bubble-stars {
        margin-bottom: 1px;
    }

    .review-bubble p {
        font-size: 0.6rem;
        line-height: 1.3;
    }

    /* 4,5,6番目を非表示 */
    .review-bubble.bubble-4,
    .review-bubble.bubble-5,
    .review-bubble.bubble-6 {
        display: none !important;
    }

    /* モバイル用: メインコンテンツの邪魔にならない位置に配置 */
    .review-bubble.bubble-1 {
        top: 8px !important;
        left: 8px !important;
        right: auto !important;
        bottom: auto !important;
    }

    .review-bubble.bubble-2 {
        top: 8px !important;
        right: 8px !important;
        left: auto !important;
        bottom: auto !important;
    }

    .review-bubble.bubble-3 {
        top: auto !important;
        bottom: 12px !important;
        left: 8px !important;
        right: auto !important;
    }

    .hero-stats {
        padding: 16px 20px;
        gap: 16px;
    }

    .hero-center-content {
        /* 代わりに地図風の背景は薄く残す */
    }

    .ai-result-card {
        width: 200px;
        padding: 16px;
    }

    .ai-badge-large {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .ai-generated-text {
        font-size: 0.8rem;
    }

    .demo-stars i,
    .demo-simple-stars i {
        font-size: 1.3rem;
    }

    .demo-simple-question {
        font-size: 0.85rem;
    }

    .demo-simple-tap {
        font-size: 0.7rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .hero-center-content {
        padding-top: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .hero-stat-divider {
        width: 80%;
        height: 1px;
    }

    .mockup-phone {
        width: 90px;
        height: 180px;
        border-radius: 14px;
    }

    .hero-phone-modern {
        flex-shrink: 0;
    }

    .ai-result-card {
        width: 160px;
        flex-shrink: 0;
        padding: 0;
        margin-left: -20px;
        margin-right: 0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .ai-result-header {
        padding: 6px 8px;
    }

    .ai-badge-large {
        font-size: 0.5rem;
        gap: 3px;
    }

    .ai-badge-large i {
        font-size: 0.5rem;
    }

    .ai-result-body {
        padding: 8px;
    }

    .ai-review-stars {
        margin-bottom: 4px;
    }

    .ai-review-stars i {
        font-size: 0.55rem;
    }

    .ai-review-slider {
        min-height: 40px;
    }

    .ai-generated-text {
        font-size: 0.55rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .ai-review-category {
        font-size: 0.45rem;
        padding: 2px 5px;
    }

    .ai-slider-dots {
        margin-bottom: 6px;
        gap: 3px;
    }

    .ai-slider-dot {
        width: 4px;
        height: 4px;
    }

    .ai-result-meta {
        font-size: 0.5rem;
        padding: 5px 6px;
    }

    .ai-result-meta i {
        font-size: 0.55rem;
    }

    .ai-badge-large {
        padding: 5px 10px;
        font-size: 0.65rem;
        gap: 4px;
    }

    .ai-badge-large i {
        font-size: 0.7rem;
    }

    .ai-generated-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .ai-review-category {
        font-size: 0.65rem;
    }

    .demo-simple-stars i {
        font-size: 1.1rem;
    }

    .demo-simple-question {
        font-size: 0.75rem;
    }

    .demo-simple-tap {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .mockup-phone-old {
        width: 180px;
        height: 360px;
    }

    /* Hero Phone Modern Responsive */
    .hero-phone-frame {
        width: 150px !important;
        height: 300px !important;
        border-radius: 24px;
        padding: 3px;
    }

    .hero-phone-notch {
        width: 45px;
        height: 12px;
        top: 7px;
        border-radius: 6px;
    }

    .hero-phone-screen {
        border-radius: 21px;
    }

    .hero-screen-header {
        padding: 24px 10px 10px;
    }

    .hero-screen-logo {
        height: 14px;
    }

    .hero-screen-question {
        font-size: 0.6rem;
    }

    .hero-screen-stars {
        gap: 4px !important;
    }

    .hero-screen-stars i {
        font-size: 0.65rem !important;
    }

    .hero-screen-hint {
        font-size: 0.4rem !important;
        padding: 2px 5px;
    }

    .hero-screen-content {
        padding: 6px;
        gap: 4px;
    }

    .hero-screen-logo {
        height: 14px;
    }

    .hero-screen-content {
        padding: 16px 12px;
        gap: 12px;
    }

    .hero-screen-question {
        font-size: 0.7rem;
    }

    .hero-screen-stars {
        gap: 4px;
    }

    .hero-screen-stars i {
        font-size: 1rem;
    }

    .hero-screen-hint {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
}

@media (max-width: 768px) {
    .hero-phone-frame {
        width: 160px;
        height: 320px;
        border-radius: 24px;
        padding: 4px;
    }

    .hero-phone-notch {
        width: 50px;
        height: 14px;
        top: 8px;
        border-radius: 7px;
    }

    .hero-phone-screen {
        border-radius: 22px;
    }

    .hero-screen-header {
        padding: 32px 16px 14px;
    }

    .hero-screen-logo {
        height: 16px;
    }

    .hero-screen-content {
        padding: 20px 16px;
        gap: 16px;
    }

    .hero-screen-question {
        font-size: 0.8rem;
    }

    .hero-screen-stars i {
        font-size: 1.2rem;
    }

    .hero-screen-hint {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

@media (max-width: 1024px) {
    .hero-phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 32px;
        padding: 5px;
    }

    .hero-phone-notch {
        width: 60px;
        height: 16px;
        top: 8px;
        border-radius: 8px;
    }

    .hero-phone-screen {
        border-radius: 28px;
    }

    .hero-screen-header {
        padding: 40px 20px 16px;
    }

    .hero-screen-logo {
        height: 18px;
    }

    .hero-screen-content {
        padding: 24px 20px;
        gap: 20px;
    }

    .hero-screen-question {
        font-size: 0.85rem;
    }

    .hero-screen-stars i {
        font-size: 1.4rem;
    }

    .hero-screen-hint {
        font-size: 0.75rem;
    }
}

/* ================== Trust Section ================== */
.trust-section {
    position: relative;
    padding: 48px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.trust-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.5;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.18) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.trust-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.trust-number .num {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.trust-number .unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.trust-divider {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
}

@media (max-width: 768px) {
    .trust-grid {
        gap: 16px;
    }

    .trust-number .num {
        font-size: 2.2rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        flex: 1 1 40%;
        padding: 12px 16px;
    }

    .trust-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .trust-icon i {
        font-size: 0.85rem;
    }
}

/* Section Lead Text */
.section-lead {
    font-size: 1rem;
    color: var(--gray-600);
    margin-top: 16px;
    line-height: 1.7;
}

/* ================== Problem Section ================== */
.problem-section {
    padding: var(--section-padding) 0;
    background: #fff;
    position: relative;
}

.problem-section::before,
.problem-section::after {
    display: none;
}

.problem-bg-illustration {
    display: none;
}

.section-header-illustration {
    margin-top: 24px;
}

.section-header-illustration svg {
    width: 100px;
    height: 70px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.problem-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    overflow: hidden;
    border: 3px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* オフセットレイアウト - 奇数番目を少し上に */
.problem-card:nth-child(odd) {
    transform: translateY(-8px);
}

.problem-card:nth-child(even) {
    transform: translateY(8px);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.08;
    transition: all 0.5s ease;
}

.problem-card:hover {
    transform: translateY(-16px) scale(1.03) rotate(-1deg);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(45, 197, 115, 0.2);
}

.problem-card:nth-child(even):hover {
    transform: translateY(-8px) scale(1.03) rotate(1deg);
}

.problem-card:hover::before {
    opacity: 0.15;
    transform: scale(1.5);
}

.problem-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-100);
    font-family: var(--font-display);
    line-height: 1;
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: var(--radius-lg);
    border: none;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(45, 197, 115, 0.15);
    transform: rotate(-5deg);
}

/* アイコンのオフセット - 各カードで異なる角度 */
.problem-card:nth-child(2) .problem-icon {
    transform: rotate(5deg);
}

.problem-card:nth-child(3) .problem-icon {
    transform: rotate(-3deg);
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: rotate(0deg) scale(1.1);
}

.problem-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.problem-card:hover .problem-icon i {
    color: #fff;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
    line-height: 1.5;
}

.problem-card h3 strong {
    color: var(--gray-700);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Problem Conclusion */
.problem-conclusion {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
}

.problem-conclusion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gold-subtle);
}

.conclusion-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.conclusion-illustration {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.conclusion-illustration svg {
    width: 100%;
    height: 100%;
}

.conclusion-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.conclusion-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.conclusion-content strong {
    color: var(--primary);
}

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

@media (max-width: 640px) {
    .problem-section {
        padding: var(--section-padding-mobile) 0;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-conclusion {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* ================== Problem Section - Rich Design ================== */
.problem-bg-pattern {
    display: none;
}

.problem-grid-rich {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.problem-card-rich {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.problem-card-rich:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.problem-card-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.problem-card-rich:hover .problem-card-bg {
    background: #f3f4f6;
}

.problem-card-inner {
    position: relative;
    padding: 32px 24px 28px;
    text-align: center;
}

.problem-icon-rich {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon-rich .icon-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed var(--gray-300);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.problem-icon-rich i {
    font-size: 2rem;
    color: var(--gray-600);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.problem-card-rich:hover .problem-icon-rich i {
    color: var(--gray-600);
    transform: scale(1.1);
}

.problem-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.problem-card-rich h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.5;
    margin-bottom: 12px;
}

.problem-card-rich h3 .text-danger {
    color: #dc2626;
}

.problem-card-rich p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.problem-stat {
    padding-top: 16px;
    border-top: 1px dashed var(--gray-200);
}

.problem-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.problem-stat .stat-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ================== Problem Layout (2 columns) ================== */
.problem-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
}

/* Phone Frame - iPhone風リアルモックアップ */
.problem-phone-mock {
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: 360px;
    background: linear-gradient(145deg, #2a2a2c 0%, #1c1c1e 50%, #0d0d0d 100%);
    border-radius: 48px;
    padding: 12px;
    border: 2px solid #3a3a3c;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* サイドボタン */
.phone-btn {
    position: absolute;
    background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2c 100%);
    border-radius: 2px;
    z-index: 5;
}

.phone-btn-silent {
    left: -4px;
    top: 100px;
    width: 4px;
    height: 28px;
}

.phone-btn-vol-up {
    left: -4px;
    top: 148px;
    width: 4px;
    height: 48px;
}

.phone-btn-vol-down {
    left: -4px;
    top: 206px;
    width: 4px;
    height: 48px;
}

.phone-btn-power {
    right: -4px;
    top: 160px;
    width: 4px;
    height: 64px;
}

/* ステータスバー */
.phone-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px 4px;
    background: #fff;
    border-radius: 36px 36px 0 0;
    position: relative;
    z-index: 3;
}

.phone-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1c1c1e;
    letter-spacing: 0.02em;
}

.phone-dynamic-island {
    width: 100px;
    height: 28px;
    background: #1c1c1e;
    border-radius: 20px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.65rem;
    color: #1c1c1e;
}

/* ホームインジケーター */
.phone-home-indicator {
    width: 120px;
    height: 5px;
    background: #1c1c1e;
    border-radius: 3px;
    margin: 8px auto 4px;
}

.problem-phone-mock .phone-screen {
    border-radius: 0 0 36px 36px;
    overflow: hidden;
    background: #fff;
    display: block;
    height: auto;
}

/* ================== Google Map Mock (inside phone) ================== */
.gmap-mock {
    background: #fff;
    overflow: hidden;
}

.gmap-searchbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.gmap-searchbar i {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Filter chips */
.gmap-filters {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.gmap-filter-chip {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #dadce0;
    color: var(--text-body);
    white-space: nowrap;
}

.gmap-filter-chip.active {
    background: #e8f0fe;
    border-color: #1a73e8;
    color: #1a73e8;
}

.gmap-filter-chip i {
    font-size: 0.6rem;
}

/* Results list */
.gmap-results {
    padding: 0;
}

/* Card-style result */
.gmap-result-card {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.gmap-result-card:last-child {
    border-bottom: none;
}

.gmap-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.gmap-result-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.gmap-card-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
    flex-wrap: nowrap;
}

.gmap-score {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.gmap-stars {
    display: flex;
    gap: 0px;
    font-size: 0.65rem;
    color: var(--accent-yellow);
}

.gmap-count {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gmap-dot {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gmap-category {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.gmap-card-status {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.gmap-open {
    color: var(--primary);
    font-weight: 600;
}

.gmap-closed {
    color: #dc2626;
    font-weight: 600;
}

/* Photo gallery row */
.gmap-card-gallery {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.gmap-card-gallery img {
    flex: 1;
    min-width: 0;
    height: 72px;
    object-fit: cover;
    display: block;
}

.gmap-photo-dim img {
    opacity: 0.45;
    filter: grayscale(50%);
}

/* Action buttons */
.gmap-card-buttons {
    display: flex;
    gap: 8px;
}

.gmap-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #1a73e8;
    background: #e8f0fe;
    padding: 6px 4px;
    border-radius: 20px;
    white-space: nowrap;
}

.gmap-btn i {
    font-size: 0.55rem;
}

/* Winner highlight */
.gmap-result-winner {
    background: #f0fdf4;
}

/* Your shop - problem highlight */
.gmap-result-you {
    background: #fef2f2;
}

.gmap-score-low {
    color: #dc2626;
}

.gmap-stars-low {
    color: #d4d4d8;
}

.gmap-stars-low .fa-star {
    color: var(--accent-yellow);
}

.gmap-stars-low .fa-star:nth-child(n+4) {
    color: #d4d4d8;
}

.gmap-count-low {
    color: #dc2626;
    font-weight: 600;
}

/* Badges */
.gmap-result-badge {
    flex-shrink: 0;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.gmap-badge-popular {
    background: var(--primary);
    color: #fff;
}

.gmap-badge-problem {
    background: #dc2626;
    color: #fff;
}

/* Problem Points (2x2 grid, right side) */
.problem-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.problem-point {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.problem-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, #1e3a8a 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.problem-point:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 24px 48px rgba(25, 64, 165, 0.15);
}

.problem-point:hover::before {
    opacity: 1;
}

.problem-point-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #d1d5db;
    line-height: 1;
    font-family: var(--font-sans);
    letter-spacing: -0.02em;
}

.problem-point-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 4px;
}

.problem-point-body .text-danger {
    color: #dc2626;
}

.problem-point-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.problem-point-stat {
    margin-top: auto;
    padding-top: 10px;
    border-top: 2px solid #e5e7eb;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.problem-point-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 2px;
}

/* Problem → Fact トランジション演出 */
.problem-to-fact-transition {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 48px 0 40px;
}

.transition-line {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, transparent, var(--primary));
    animation: lineGrow 1.5s ease-out forwards;
    transform-origin: top;
}

.transition-line:last-child {
    background: linear-gradient(180deg, var(--primary), transparent);
    transform-origin: top;
}

@keyframes lineGrow {
    0% { transform: scaleY(0); opacity: 0; }
    100% { transform: scaleY(1); opacity: 1; }
}

.transition-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px 0;
}

.transition-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.15;
    animation: transitionPulse 2s ease-in-out infinite;
}

@keyframes transitionPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.5); opacity: 0; }
}

.transition-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(45, 197, 115, 0.3);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.transition-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    margin: 12px 0;
}

@media (max-width: 640px) {
    .problem-to-fact-transition {
        margin: 32px 0 24px;
    }

    .transition-line {
        height: 20px;
    }

    .transition-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .transition-pulse {
        width: 44px;
        height: 44px;
    }

    .transition-label {
        font-size: 0.8rem;
    }
}

/* Fact Section - Rich Design */
.fact-section {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 0;
}

.fact-bg-gradient {
    position: absolute;
    inset: 0;
    background: var(--bg-blue);
}

.fact-content-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    padding: 48px;
    align-items: center;
}

.fact-image-area {
    position: relative;
}

.fact-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.fact-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.fact-image-overlay {
    display: none;
}

.fact-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.fact-image-badge i {
    color: #4285f4;
    font-size: 1rem;
}

.fact-floating-stat {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fact-floating-stat .floating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.fact-floating-stat .floating-number span {
    font-size: 1rem;
}

.fact-floating-stat .floating-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-body);
    margin-top: 4px;
}

.fact-text-area {
    color: #fff;
}

.fact-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.fact-label i {
    font-size: 0.9rem;
}

.fact-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.fact-title .highlight-orange {
    color: var(--accent-yellow);
}

.fact-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.fact-description strong {
    color: #fff;
}

.fact-emphasis {
    display: inline;
    background: transparent;
    color: var(--accent-yellow);
    font-weight: 600;
}

.fact-stats-row {
    display: flex;
    gap: 24px;
}

.fact-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-md);
}

.fact-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.fact-stat-content {
    display: flex;
    flex-direction: column;
}

.fact-stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.fact-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Problem Layout + Phone Mock - Responsive */
@media (max-width: 1024px) {
    .problem-layout {
        grid-template-columns: 360px 1fr;
        gap: 28px;
    }

    .phone-frame {
        width: 330px;
        border-radius: 42px;
        padding: 10px;
    }

    .phone-dynamic-island {
        width: 90px;
        height: 24px;
    }

    .phone-status-bar {
        padding: 6px 20px 3px;
        border-radius: 32px 32px 0 0;
    }

    .problem-phone-mock .phone-screen {
        border-radius: 0 0 32px 32px;
    }

    .gmap-result-card {
        padding: 12px 14px;
    }

    .gmap-result-name {
        font-size: 0.8rem;
    }

    .gmap-card-gallery img {
        height: 60px;
    }

    .gmap-result-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .problem-point {
        padding: 16px 14px;
        gap: 6px;
    }

    .problem-point:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .problem-point-num {
        font-size: 1.3rem;
    }

    .problem-point-body h3 {
        font-size: 0.8rem;
    }

    .problem-point-body p {
        font-size: 0.7rem;
    }

    .problem-point-stat span {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem-phone-mock {
        order: 1;
    }

    .problem-points {
        order: 2;
    }

    .phone-frame {
        width: 360px;
        border-radius: 48px;
        padding: 12px;
    }

    .problem-phone-mock .phone-screen {
        border-radius: 0 0 36px 36px;
    }

    .gmap-result-card {
        padding: 14px 16px;
    }

    .gmap-card-gallery img {
        height: 72px;
    }

    .problem-point {
        padding: 20px 18px;
        gap: 8px;
    }

    .problem-point:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .problem-point-num {
        font-size: 1.5rem;
    }

    .problem-point-body h3 {
        font-size: 0.85rem;
    }

    .problem-point-body p {
        font-size: 0.75rem;
    }

    .problem-point-stat span {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .problem-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .phone-frame {
        width: 300px;
        border-radius: 40px;
        padding: 8px;
    }

    .phone-dynamic-island {
        width: 80px;
        height: 22px;
    }

    .phone-status-bar {
        padding: 5px 16px 2px;
        border-radius: 32px 32px 0 0;
    }

    .phone-time {
        font-size: 0.7rem;
    }

    .phone-status-icons {
        font-size: 0.55rem;
    }

    .problem-phone-mock .phone-screen {
        border-radius: 0 0 32px 32px;
    }

    .phone-home-indicator {
        width: 100px;
        height: 4px;
    }

    .gmap-card-gallery img {
        height: 56px;
    }

    .gmap-filter-chip {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}

/* Problem Rich - Responsive (legacy) */
@media (max-width: 1024px) {
    .problem-grid-rich {
        grid-template-columns: repeat(2, 1fr);
    }

    .fact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    .fact-image-area {
        order: 1;
    }

    .fact-text-area {
        order: 2;
    }

    .fact-floating-stat {
        top: auto;
        bottom: -20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }

    .fact-floating-stat .floating-number {
        font-size: 1.5rem;
    }

    .fact-stats-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .problem-grid-rich {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problem-card-inner {
        padding: 24px 20px;
    }

    .fact-content-wrapper {
        padding: 24px;
    }

    .fact-title {
        font-size: 1.4rem;
    }

    .fact-stats-row {
        flex-direction: column;
        gap: 12px;
    }

    .fact-stat-item {
        width: 100%;
    }
}

/* ================== Why Section ================== */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.why-comparison {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.comparison-before,
.comparison-after {
    flex: 1;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.comparison-before {
    background: var(--bg-light);
}

.comparison-before::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gray-300), var(--gray-400), var(--gray-300));
}

.comparison-person {
    width: 90px;
    height: 115px;
    margin: 0 auto 16px;
}

.comparison-person svg {
    width: 100%;
    height: 100%;
    max-width: 90px;
}

.comparison-person-sad {
    opacity: 0.8;
}

.comparison-person-happy {
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 900px) {
    .comparison-person {
        width: 80px;
        height: 96px;
    }
}

.comparison-after {
    background: var(--bg-light);
    border-color: var(--primary);
}

.comparison-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.comparison-label i {
    font-size: 1.3rem;
}

.comparison-before .comparison-label i {
    color: var(--gray-600);
}

.comparison-after .comparison-label i {
    color: var(--secondary-light);
}

.comparison-label span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.comparison-flow {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    position: relative;
}

.flow-step.fade {
    opacity: 0.3;
}

.flow-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-icon i {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.flow-step span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-600);
}

.flow-step.highlight-bad .flow-icon {
    background: var(--gray-100);
}

.flow-step.highlight-bad .flow-icon i {
    color: var(--gray-600);
}

.flow-step.highlight-good .flow-icon {
    background: var(--primary);
}

.flow-step.highlight-good .flow-icon i {
    color: #fff;
}

.flow-problem,
.flow-benefit {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.flow-problem {
    background: var(--gray-100);
    color: var(--gray-600);
}

.flow-benefit {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--primary);
}

.flow-arrow {
    color: var(--gray-300);
}

.flow-arrow.fade {
    opacity: 0.3;
}

.comparison-stat {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 18px;
    border-radius: var(--radius-md);
    margin-top: 24px;
}

.comparison-stat.bad {
    background: var(--gray-100);
    color: var(--gray-600);
}

.comparison-stat.good {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--primary);
}

.comparison-stat .stat-number {
    font-size: 1.4rem;
    font-weight: 700;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-vs span {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .why-comparison {
        flex-direction: column;
        gap: 24px;
    }

    .comparison-vs {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: var(--section-padding-mobile) 0;
    }

    .comparison-before,
    .comparison-after {
        padding: 28px 20px;
    }

    .comparison-flow {
        gap: 4px;
    }

    .flow-icon {
        width: 44px;
        height: 44px;
    }

    .flow-icon i {
        font-size: 0.95rem;
    }

    .flow-step span {
        font-size: 0.7rem;
    }
}

/* ================== Why Section - Rich Design ================== */
.why-section-rich {
    padding: var(--section-padding) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-bg-pattern {
    display: none;
}

.why-comparison-rich {
    display: flex;
    gap: 40px;
    align-items: stretch;
    position: relative;
}

/* Comparison Panel */
.comparison-panel {
    flex: 1;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
}

.comparison-panel:hover {
    transform: translateY(-4px);
}

.comparison-panel .panel-bg {
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.comparison-panel-before .panel-bg {
    background: #e2e8f0;
}

.comparison-panel-before:hover .panel-bg {
    background: #d5dce6;
}

.comparison-panel .panel-bg.good {
    background: #ffffff;
}

.comparison-panel-after {
    border: 3px solid var(--primary);
}

.comparison-panel-after:hover .panel-bg {
    background: #f0fdf4;
}

.panel-content {
    position: relative;
    padding: 32px;
}

/* Panel Header */
.panel-header {
    margin-bottom: 24px;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

.panel-badge-bad {
    background: #94a3b8;
    color: #fff;
}

.panel-badge-good {
    background: var(--primary-50);
    color: var(--primary);
}

/* Panel Image Area */
.panel-image-area {
    position: relative;
    margin-bottom: 28px;
}

.panel-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.panel-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.comparison-panel-before .panel-image {
    filter: grayscale(40%) brightness(0.9);
}

.comparison-panel-after .panel-image {
    filter: brightness(1.05) saturate(1.2);
}

.panel-image-overlay-bad {
    position: absolute;
    inset: 0;
    background: rgba(100, 116, 139, 0.15);
}

.comparison-panel-after .panel-image {
    filter: brightness(1.05) saturate(1.1);
}

.panel-image-overlay-good {
    display: none;
}

.panel-floating-icon {
    position: absolute;
    bottom: -16px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.panel-floating-icon.bad {
    background: var(--gray-400);
    color: #fff;
}

.panel-floating-icon.good {
    background: var(--primary);
    color: #fff;
}

/* Panel Flow */
.panel-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding-top: 10px;
}

/* アイコンとコネクターの行 */
.panel-flow-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ラベルの行 */
.panel-flow-labels {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    min-width: 60px;
}

.flow-item > span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.flow-icon-rich {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.flow-icon-rich i {
    color: var(--gray-600);
    line-height: 1;
}

.flow-icon-rich.good {
    background: var(--primary-50);
}

.flow-icon-rich.good i {
    color: var(--primary);
}

.flow-icon-rich.problem {
    background: var(--gray-100);
}

.flow-icon-rich.problem i {
    color: var(--gray-600);
}

.flow-icon-rich.highlight {
    width: 52px;
    height: 52px;
    background: rgba(251, 191, 36, 0.2);
    animation: pulseHighlight 1.5s ease-in-out infinite;
}

.flow-icon-rich.highlight i {
    color: var(--accent-yellow) !important;
    font-size: 1.3rem;
    -webkit-text-fill-color: var(--accent-yellow);
}

/* フォールバック非表示（Font Awesomeが機能しているため） */
.flow-icon-rich.highlight .icon-fallback {
    display: none;
}

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

.flow-connector {
    width: 20px;
    height: 2px;
    background: var(--gray-300);
    flex-shrink: 0;
}

/* フローラベル */
.flow-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    min-width: 48px;
    text-align: center;
}

.flow-label.highlight-label {
    color: var(--accent-yellow);
    font-weight: 700;
}

.flow-label-spacer {
    width: 20px;
    flex-shrink: 0;
}

.flow-label.problem-label {
    color: var(--gray-600);
    font-weight: 700;
}

.flow-label.fade {
    opacity: 0.3;
}

/* shakeアニメーション */
.flow-icon-rich.shake {
    animation: shake 0.5s ease-in-out infinite;
}

.flow-icon-rich.fade {
    opacity: 0.3;
}

.flow-connector.fade {
    opacity: 0.3;
}

.flow-connector.good {
    background: var(--primary);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.flow-problem-tag,
.flow-benefit-tag {
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.flow-problem-tag {
    background: var(--gray-100);
    color: var(--gray-600);
}

.flow-benefit-tag {
    background: var(--primary-50);
    color: var(--primary);
}

/* Panel Result */
.panel-result {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-lg);
}

.panel-result.bad {
    background: #d1d5db;
}

.panel-result.good {
    background: var(--primary);
}

.result-stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.panel-result.bad .stat-number-large {
    color: var(--gray-600);
}

.panel-result.good .stat-number-large {
    color: #fff;
}

.panel-result.good .stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.panel-result.good .result-desc {
    color: rgba(255, 255, 255, 0.85);
}

.stat-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
}

.result-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* VS Badge */
.comparison-vs-rich {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vs-circle {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.vs-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--gray-300), transparent);
    display: none;
}

/* Why Insight Card */
.why-insight {
    margin-top: 48px;
}

.insight-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-blue);
    padding: 32px 40px;
    border-radius: var(--radius-xl);
    color: #fff;
}

.insight-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #fff;
}

.insight-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.insight-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.insight-content strong {
    color: var(--accent-yellow);
}

/* Why Rich - Responsive */
@media (max-width: 900px) {
    .why-comparison-rich {
        flex-direction: column;
        gap: 48px;
    }

    .comparison-vs-rich {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: -24px auto;
    }

    .vs-circle i {
        transform: rotate(90deg);
    }

    .vs-line {
        display: none;
    }
}

@media (max-width: 640px) {
    .why-section-rich {
        padding: var(--section-padding-mobile) 0;
    }

    .panel-content {
        padding: 24px 20px;
    }

    .panel-image {
        height: 140px;
    }

    .panel-flow {
        gap: 4px;
    }

    .flow-icon-rich {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .flow-connector {
        flex: 0 0 12px;
        margin-top: 20px;
    }

    .stat-number-large {
        font-size: 2rem;
    }

    .insight-card {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    .insight-icon {
        margin: 0 auto;
    }
}

/* ================== Features Section Rich ================== */
.features-section-rich {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
}

.features-section-rich::before {
    display: none;
}

.features-bg-pattern {
    display: none;
}

.features-grid-rich {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
}

.feature-card-rich {
    position: relative;
    background: #fff;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
}

/* 上部のアクセントライン - 緑で統一 */
.feature-card-rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

/* マイクロインタラクション - チルト&シャドウ */
.feature-card-rich:hover {
    transform: translateY(-12px) rotate(1deg) scale(1.02);
    box-shadow: 0 24px 48px rgba(45, 197, 115, 0.2);
    border-color: var(--primary);
}

/* オフセット配置（削除：高さ統一） */
.features-grid-rich .feature-card-rich:nth-child(2):hover {
    transform: translateY(-12px) rotate(1deg) scale(1.02);
}

.feature-card-rich.featured {
    background: #fff;
}

.feature-card-rich.featured:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 32px 64px rgba(45, 197, 115, 0.25);
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-rich:hover .feature-card-glow {
    opacity: 1;
}

.feature-popular-badge {
    display: none;
}

.feature-top-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    white-space: nowrap;
}

.feature-top-badge i {
    font-size: 0.65rem;
    color: #fff;
}

.feature-card-content {
    background: #fff;
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-badge-rich {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-300);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
}

.feature-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 22px auto 20px;
}

.feature-icon-bg {
    display: none;
}

.feature-icon-bg.secondary {
    display: none;
}

.feature-icon-bg.accent {
    display: none;
}

.feature-icon-circle {
    position: absolute;
    inset: 8px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}

.feature-card-rich:hover .feature-icon-circle {
    transform: rotate(-10deg) scale(1.15);
    border-radius: 50%;
    background: var(--secondary);
}

.feature-icon-circle.secondary {
    background: var(--primary);
}

.feature-icon-circle.accent {
    background: var(--primary);
}

.feature-icon-circle i {
    font-size: 1.6rem;
    color: #fff;
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}

.feature-card-rich:hover .feature-icon-circle i {
    transform: scale(1.15);
}

/* カードごとにホバー時のアイコン形状を変える */
.features-grid-rich .feature-card-rich:nth-child(1):hover .feature-icon-circle {
    border-radius: 50%;
}

.features-grid-rich .feature-card-rich:nth-child(2):hover .feature-icon-circle {
    border-radius: 24px 8px 24px 8px;
    transform: rotate(10deg) scale(1.15);
}

.features-grid-rich .feature-card-rich:nth-child(3):hover .feature-icon-circle {
    border-radius: 8px 24px 8px 24px;
    transform: rotate(-15deg) scale(1.15);
}

.feature-tag-rich {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    width: 100%;
}

.feature-tag-rich.secondary {
    color: var(--primary);
    background: transparent;
}

.feature-tag-rich.accent {
    color: var(--primary);
    background: transparent;
}

.feature-tag-rich i {
    font-size: 0.6rem;
}

.feature-title-rich {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 14px;
}

.text-gradient-primary {
    color: var(--primary);
}

.text-gradient-secondary {
    color: var(--primary);
}

.text-gradient-accent {
    color: var(--primary);
}

.feature-desc-rich {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-metric {
    display: none;
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f97316 0%, #f97316 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    color: #fff;
    font-size: 0.9rem;
}

.metric-content {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.feature-icons-row {
    display: none;
}

.feature-mini-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(52, 211, 153, 0.12) 100%);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-mini-icon:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(52, 211, 153, 0.2) 100%);
}

.feature-mini-icon i {
    font-size: 1rem;
    color: var(--primary);
}

.feature-tags-wrap {
    display: none;
}

.feature-effect-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #f97316;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
}

.feature-effect-tag i {
    font-size: 0.6rem;
}

@media (max-width: 900px) {
    .features-grid-rich {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card-rich.featured {
        transform: none;
        order: -1;
    }

    .feature-card-rich.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 640px) {
    .features-section-rich {
        padding: var(--section-padding-mobile) 0;
    }

    .features-grid-rich {
        gap: 16px;
        margin-top: 40px;
    }

    .feature-content-rich {
        padding: 24px 20px;
    }

    .feature-title-rich {
        font-size: 1.15rem;
    }
}

/* Legacy Features Section */
.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

/* 3カード均等グリッド */
.features-grid-equal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-card-equal {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: none;
    transition: var(--transition-base);
}

.feature-card-equal:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.feature-card-inner {
    background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-number-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-300);
    font-family: var(--font-display);
}

.feature-card-equal {
    position: relative;
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon-large i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-icon-large.secondary {
    background: var(--primary);
}

.feature-icon-large.accent {
    background: var(--primary);
}

.feature-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-label.secondary {
    color: var(--primary);
    background: rgba(45, 197, 115, 0.1);
}

.feature-label.accent {
    color: var(--secondary);
    background: rgba(25, 64, 165, 0.1);
}

.feature-title-equal {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 16px;
}

.feature-desc-equal {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.feature-stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(96, 165, 250, 0.12) 100%);
    border-radius: var(--radius-md);
}

.feature-stat .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.feature-stat .stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.feature-languages-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-languages-mini span {
    font-size: 1.4rem;
}

.feature-languages-mini .more {
    font-size: 0.75rem;
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.feature-customize-mini {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-customize-mini .tag {
    font-size: 0.75rem;
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--gray-600);
    font-weight: 400;
}

@media (max-width: 900px) {
    .features-grid-equal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-inner {
        padding: 28px 20px;
    }

    .feature-icon-large {
        width: 64px;
        height: 64px;
    }

    .feature-icon-large i {
        font-size: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* フィーチャーカードのオフセットレイアウト */
.features-grid .feature-card:nth-child(2) {
    transform: translateY(16px);
}

.features-grid .feature-card:nth-child(4) {
    transform: translateY(-12px);
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 24px 48px rgba(45, 197, 115, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.features-grid .feature-card:nth-child(2):hover {
    transform: translateY(8px) scale(1.02);
}

.features-grid .feature-card:nth-child(4):hover {
    transform: translateY(-20px) scale(1.02);
}

.feature-card.feature-main {
    grid-column: 1;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    border: none;
    color: #fff;
}

.feature-card.feature-main .feature-title,
.feature-card.feature-main .feature-description,
.feature-card.feature-main .title-label {
    color: #fff;
}

.feature-card.feature-main .title-label {
    color: rgba(255, 255, 255, 0.7);
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
    font-family: var(--font-display);
}

.feature-card.feature-main .feature-number {
    color: rgba(255, 255, 255, 0.1);
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 28px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.feature-icon.secondary {
    background: var(--primary);
}

.feature-icon.accent {
    background: var(--primary);
}

.feature-icon-bg {
    display: none;
}

.feature-content {
    margin-bottom: 28px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.title-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.feature-card.feature-main .feature-description {
    color: rgba(255, 255, 255, 0.8);
}

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

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.highlight-badge.gold {
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
}

.feature-card.feature-main .highlight-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.highlight-badge i {
    font-size: 0.85rem;
}

.highlight-badge.secondary {
    background: var(--gray-100);
    color: var(--gray-700);
}

.highlight-badge.accent {
    background: var(--gray-100);
    color: var(--gray-700);
}

/* Feature Visual Elements */
.feature-visual {
    margin-top: auto;
}

.visual-demo {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 24px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.star-rating i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.3);
}

.star-rating i.active {
    color: var(--secondary);
}

.arrow-down {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.generated-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.7;
}

.generated-text i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    margin: 0 4px;
}

/* Language Tags */
.feature-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.lang-tag {
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
}

.lang-tag.more {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    color: var(--primary);
}

/* Customize Slider */
.feature-customize {
    margin-top: 20px;
}

.customize-option {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 18px;
}

.option-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.option-slider {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.slider-track {
    flex: 1;
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    position: relative;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.feature-main {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .features-section {
        padding: var(--section-padding-mobile) 0;
    }

    .feature-card {
        padding: 36px 28px;
    }
}

/* ================== How It Works Section (New) ================== */
.hiw-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    position: relative;
    overflow: hidden;
}

.hiw-section::before,
.hiw-section::after {
    display: none;
}

/* メインフロー図 */
.hiw-main-flow {
    margin-bottom: 48px;
}

.hiw-flow-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hiw-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hiw-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
}

.hiw-avatar.customer {
}

.hiw-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiw-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.hiw-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 0 8px;
}

.hiw-arrow-line {
    position: absolute;
    top: 50%;
    left: -16px;
    right: -16px;
    height: 3px;
    background: var(--secondary);
    transform: translateY(-12px);
    z-index: 0;
    opacity: 0.3;
}

.hiw-arrow-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hiw-arrow-icon i {
    color: #fff;
    font-size: 1rem;
}

.hiw-arrow-icon.accent {
    background: var(--primary);
}

.hiw-arrow-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
}

.hiw-arrow-text.accent {
    color: #f97316;
}

.hiw-flow-step.result {
    min-width: 100px;
}

.hiw-result-box {
    background: var(--primary-50);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
}

.hiw-result-box > i.fa-google {
    font-size: 1.8rem;
    color: #4285f4;
    display: block;
    margin-bottom: 6px;
}

.hiw-result-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.hiw-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.hiw-stars i {
    color: #f97316;
    font-size: 0.75rem;
}

/* ステップカード */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.hiw-step-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.hiw-step-card:hover {
    transform: translateY(-4px);
    background: #f3f4f6;
}

.hiw-step-card.featured {
    background: #fff;
}

.hiw-step-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 10px;
}

.hiw-step-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hiw-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.hiw-step-icon.blue {
    background: var(--primary);
}

.hiw-step-icon.orange {
    background: var(--primary);
}

.hiw-step-icon.green {
    background: var(--primary);
}

.hiw-step-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.hiw-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.hiw-step-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
}

.hiw-step-desc strong {
    color: var(--primary);
}

.hiw-ai-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
}

.hiw-ai-tag i {
    font-size: 0.7rem;
}

.hiw-langs {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 1.2rem;
}

/* 評価振り分け */
.hiw-routing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.hiw-routing-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.hiw-routing-card.good {
    border-color: rgba(34, 197, 94, 0.4);
    background: #fff;
}

.hiw-routing-card.neutral {
    border-color: var(--gray-200);
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.hiw-routing-header {
    margin-bottom: 12px;
}

.hiw-routing-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
}

.hiw-routing-stars i {
    color: #f97316;
    font-size: 1rem;
}

.hiw-routing-stars.low i.fas {
    color: #f97316;
}

.hiw-routing-stars.low i.far {
    color: var(--gray-300);
}

.hiw-routing-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.hiw-routing-arrow {
    margin: 12px 0;
}

.hiw-routing-arrow i {
    color: var(--gray-300);
    font-size: 1rem;
}

.hiw-routing-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.hiw-routing-card.good .hiw-routing-result {
    background: rgba(16, 185, 129, 0.1);
}

.hiw-routing-card.neutral .hiw-routing-result {
    background: var(--gray-100);
}

.hiw-routing-result i.fa-google {
    color: #4285f4;
    font-size: 1.2rem;
}

.hiw-routing-result i.fa-shield-alt {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.hiw-routing-result span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hiw-routing-desc {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============================================
   新しいフロータイムライン デザイン
   ============================================ */
.flow-timeline {
    max-width: 700px;
    margin: 0 auto 48px;
}

.flow-step-item {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.flow-step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
}

.flow-step-number {
    width: 48px;
    height: 48px;
    background: #fff;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flow-step-item.highlight .flow-step-number {
    background: #fff;
}

.flow-step-line {
    flex: 1;
    width: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 8px 0;
    min-height: 24px;
}

.flow-step-card {
    flex: 1;
    background: #ffffff !important;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-base);
    margin-bottom: 16px;
    border: 2px solid var(--primary);
}

.flow-step-card:hover {
    transform: translateY(-2px);
}

.flow-step-item.highlight .flow-step-card {
    background: #ffffff !important;
    border: 2px solid var(--primary);
}

.flow-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-step-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.flow-step-icon.orange {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.flow-step-icon i {
    font-size: 1.5rem;
}

.flow-step-photo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.flow-step-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow-step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.flow-step-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.flow-step-content strong {
    color: var(--primary);
}

.flow-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.flow-ai-badge i {
    font-size: 0.7rem;
}

/* 分岐ラッパー */
.flow-branch-wrapper {
    flex: 1;
}

.flow-branch-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-align: center;
}

/* 分岐カード */
.flow-branch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flow-branch-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-base);
}

.flow-branch-card:hover {
    transform: translateY(-2px);
}

.flow-branch-card.good {
    border: 2px solid var(--primary);
}

.flow-branch-card.neutral {
    border: 2px solid var(--gray-200);
}

.flow-branch-header {
    margin-bottom: 16px;
}

.flow-branch-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.flow-branch-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.flow-branch-stars.low i.far {
    color: var(--gray-300);
}

.flow-branch-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.flow-branch-result {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.flow-branch-card.good .flow-branch-result {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.flow-branch-card.neutral .flow-branch-result {
    background: var(--gray-100);
    color: var(--gray-600);
}

.flow-branch-result i {
    font-size: 1.1rem;
}

/* 多言語対応バナー */
.flow-multilang {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 32px;
    max-width: 628px;
    margin: 48px auto 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 36px;
}

.flow-multilang-icon {
    width: 56px;
    height: 56px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-multilang-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.flow-multilang-content {
    flex: 1;
}

.flow-multilang-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.flow-multilang-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.flow-multilang-flags {
    display: flex;
    gap: 8px;
    font-size: 1.5rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .flow-timeline {
        max-width: 100%;
    }

    .flow-step-item {
        gap: 16px;
    }

    .flow-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .flow-connector {
        left: 19px;
    }

    .flow-step-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .flow-branch {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flow-multilang {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        left: 0;
        max-width: 100%;
    }

    .flow-multilang-flags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hiw-flow-card {
        flex-wrap: wrap;
        gap: 16px;
        padding: 24px 16px;
    }

    .hiw-arrow {
        flex-direction: row;
        gap: 8px;
    }

    .hiw-arrow-line {
        display: none;
    }

    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hiw-step-card.featured {
        order: -1;
    }

    .hiw-routing {
        grid-template-columns: 1fr;
    }
}

/* ================== Legacy Flow Section Rich ================== */
.flow-section-rich {
    padding: var(--section-padding) 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.flow-bg-pattern {
    display: none;
}

/* Flow Scene Rich */
.flow-scene-rich {
    margin-bottom: 56px;
}

.flow-scene-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
}

.flow-scene-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flow-person-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.flow-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-photo-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid;
    pointer-events: none;
}

.flow-person-photo.staff .person-photo-ring {
    border-color: var(--primary);
}

.flow-person-photo.customer .person-photo-ring {
    border-color: var(--secondary);
}

.flow-person-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.flow-scene-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0 8px;
}

.connector-line {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(45, 197, 115, 0.2) 0%, rgba(45, 197, 115, 0.4) 50%, rgba(45, 197, 115, 0.2) 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.connector-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(45, 197, 115, 0.3);
    position: relative;
    z-index: 1;
}

.connector-icon.highlight {
    background: var(--secondary);
    box-shadow: 0 4px 16px rgba(25, 64, 165, 0.4);
    animation: pulseGold 2s ease-in-out infinite;
}

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

.connector-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.connector-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.flow-scene-item.result {
    min-width: 120px;
}

.flow-result-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.15);
    border: 1px solid rgba(66, 133, 244, 0.1);
    position: relative;
    overflow: hidden;
}

.result-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.1) 0%, transparent 50%);
    animation: resultGlow 3s ease-in-out infinite;
}

@keyframes resultGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.flow-result-card i.fa-google {
    font-size: 2rem;
    color: #4285f4;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.flow-result-card > span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.result-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.result-stars i {
    color: #f97316;
    font-size: 0.8rem;
}

/* Flow Timeline Rich */
.flow-timeline-rich {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gray-100);
    border-radius: 4px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--primary);
    border-radius: 4px;
}

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

.flow-step-marker {
    flex-shrink: 0;
    width: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-600);
    font-family: var(--font-display);
}

.step-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--gray-300);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.step-dot.active {
    border-color: var(--primary);
    background: var(--primary);
}

.flow-step-card {
    flex: 1;
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step-card:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.flow-step-card.highlight {
    background: #fff;
}

.step-card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.step-card-badge i {
    font-size: 0.6rem;
}

.step-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.step-icon-wrap {
    flex-shrink: 0;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.step-icon-wrap.highlight .step-icon {
    background: var(--primary);
}

.step-icon-wrap.highlight .step-icon i {
    color: #fff;
}

.step-icon-wrap.secondary .step-icon {
    background: var(--primary);
}

.step-icon-wrap.secondary .step-icon i {
    color: #fff;
}

.step-icon-wrap.success .step-icon {
    background: var(--primary);
}

.step-icon-wrap.success .step-icon i {
    color: #fff;
}

.step-icon-wrap.neutral .step-icon {
    background: var(--gray-100);
}

.step-icon-wrap.neutral .step-icon i {
    color: var(--gray-600);
}

.step-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
}

.flow-step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.flow-step-card p strong {
    color: var(--primary);
}

/* Step specific elements */
.step-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.method-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.method-tag i {
    color: var(--gray-600);
}

.step-ai-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(96, 165, 250, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.ai-badge-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-badge-icon i {
    color: #fff;
    font-size: 0.85rem;
}

.step-ai-badge > span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

.step-languages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag {
    width: 36px;
    height: 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.lang-flag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.lang-more {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 8px 12px;
    border-radius: 8px;
}

.step-result-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--primary-50);
    border-radius: 12px;
}

.preview-stars {
    display: flex;
    gap: 2px;
}

.preview-stars i {
    color: #f97316;
    font-size: 0.85rem;
}

.step-result-preview > i.fa-arrow-right {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.step-result-preview > i.fa-google {
    color: #4285f4;
    font-size: 1.4rem;
}

.step-feedback-flow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
}

.feedback-tag.low {
    background: rgba(239, 68, 68, 0.1);
    color: var(--gray-600);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.feedback-tag.internal {
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.step-feedback-flow > i {
    color: var(--gray-600);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .flow-scene-card {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px 16px;
    }

    .flow-scene-connector {
        flex-direction: row;
        gap: 12px;
    }

    .connector-line {
        display: none;
    }

    .flow-timeline-rich {
        padding-left: 0;
    }

    .timeline-track {
        left: 20px;
    }

    .flow-step {
        gap: 16px;
    }

    .flow-step-marker {
        width: 44px;
    }

    .flow-step-card {
        padding: 20px 16px;
    }

    .step-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Legacy Flow Section */
.flow-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Flow Illustration Header */
.flow-illustration-header {
    margin-bottom: 48px;
}

.flow-scene {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.flow-scene-person {
    text-align: center;
}

.flow-scene-person svg {
    width: 60px;
    height: 80px;
}

.person-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-top: 8px;
}

.flow-scene-arrow {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(45, 197, 115, 0.3);
}

.flow-scene-arrow i {
    color: #fff;
    font-size: 1.1rem;
}

.flow-scene-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.flow-scene-result i {
    font-size: 2rem;
    color: #4285f4;
}

.flow-scene-result span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 640px) {
    .flow-scene {
        flex-wrap: wrap;
        gap: 20px;
        padding: 24px 16px;
    }

    .flow-scene-arrow {
        width: 36px;
        height: 36px;
    }

    .flow-scene-arrow i {
        font-size: 0.9rem;
    }
}

.flow-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        var(--gray-200) 0%,
        var(--primary-light) 20%,
        var(--primary) 50%,
        var(--primary-light) 80%,
        var(--gray-200) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(30, 64, 175, 0.2);
}

.flow-item {
    display: flex;
    gap: 28px;
    padding: 24px 0;
    position: relative;
}

.flow-item-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-600);
    position: relative;
    z-index: 1;
}

.flow-item.highlight .flow-item-number {
    background: var(--primary);
    border-color: var(--primary-light);
    color: #fff;
    box-shadow: 0 8px 32px -4px rgba(45, 197, 115, 0.4);
    animation: highlight-pulse 2s ease-in-out infinite;
}

@keyframes highlight-pulse {
    0%, 100% {
        box-shadow: 0 8px 32px -4px rgba(45, 197, 115, 0.4);
    }
    50% {
        box-shadow: 0 8px 40px -4px rgba(45, 197, 115, 0.6), 0 0 20px rgba(45, 197, 115, 0.3);
    }
}

.flow-item-content {
    flex: 1;
    padding-top: 12px;
}

.flow-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.flow-item-icon i {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.flow-item-icon.good {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
}

.flow-item-icon.good i {
    color: var(--success);
}

.flow-item-icon.neutral {
    background: var(--gray-100);
}

.flow-item-icon.neutral i {
    color: var(--gray-600);
}

.flow-item-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.flow-item-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.flow-item-content strong {
    color: var(--primary);
}

.flow-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 16px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(25, 64, 165, 0.3);
}

.flow-item-languages {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .flow-section {
        padding: var(--section-padding-mobile) 0;
    }

    .timeline-line {
        left: 24px;
    }

    .flow-item {
        gap: 24px;
        padding: 28px 0;
    }

    .flow-item-number {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }
}

/* ================== Results Section ================== */
.results-section {
    padding: var(--section-padding) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.results-section .results-bg-image {
    display: none;
}

.results-section .results-bg-overlay {
    display: none;
}

.results-section::before {
    display: none;
}

.results-section::after {
    display: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.result-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.15);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.result-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.result-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.result-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.result-number .before {
    font-size: 1rem;
    color: var(--gray-600);
    text-decoration: line-through;
}

.result-number i {
    color: var(--primary);
    font-size: 1.1rem;
}

.result-number .after {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.result-card h3 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.result-improvement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 16px;
}

.result-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.result-bar-fill {
    height: 100%;
    background: var(--gold-subtle);
    border-radius: 2px;
    animation: fill-bar 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes fill-bar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.section-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.results-case-studies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.case-study-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition-base);
}

.case-study-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.case-study-industry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.case-study-industry i {
    width: 32px;
    height: 32px;
    background: var(--gold-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
}

.case-study-industry span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.case-study-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.results-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .results-case-studies {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 640px) {
    .results-section {
        padding: var(--section-padding-mobile) 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-number .after {
        font-size: 1.5rem;
    }
}

/* ================== Voice Section ================== */
.voice-section {
    padding: var(--section-padding) 0;
    background: #f9fafb;
}

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

.voice-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

/* マイクロインタラクション - チルト効果 */
.voice-card:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.02);
    box-shadow: 0 24px 48px rgba(45, 197, 115, 0.15);
    border-color: var(--primary);
}

.voice-card:hover::before {
    opacity: 1;
}

.voice-quote-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-quote-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.voice-header {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.voice-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-100);
    flex-shrink: 0;
    border: 3px solid var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.voice-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.voice-meta p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.voice-rating {
    display: flex;
    gap: 2px;
}

.voice-rating i {
    font-size: 0.75rem;
    color: var(--accent-yellow);
}

.voice-content {
    margin-bottom: 24px;
    flex: 1;
}

.voice-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.voice-content strong {
    color: var(--primary);
}

.voice-result {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.04) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.result-icon-badge {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-icon-badge i {
    font-size: 0.95rem;
    color: #fff;
}

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

.voice-result .result-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.voice-result .result-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .voice-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .voice-section {
        padding: var(--section-padding-mobile) 0;
    }

    .voice-card {
        padding: 24px 20px;
    }

    .voice-quote-icon {
        width: 40px;
        height: 40px;
        top: 12px;
        right: 12px;
    }

    .voice-quote-icon i {
        font-size: 1rem;
    }

    .voice-avatar {
        width: 56px;
        height: 56px;
    }

    .voice-meta h4 {
        font-size: 0.95rem;
    }

    .voice-content p {
        font-size: 0.85rem;
    }

    .voice-result {
        padding: 14px 16px;
        gap: 12px;
    }

    .result-icon-badge {
        width: 36px;
        height: 36px;
    }

    .result-icon-badge i {
        font-size: 0.85rem;
    }
}

/* ================== Benefits Section ================== */
.benefits-section {
    padding: var(--section-padding) 0;
    background: #f9fafb;
    position: relative;
}

.benefits-section::before {
    display: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    border: 2px solid #e5e7eb;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.benefit-item::before {
    display: none;
}

/* マイクロインタラクション - スケール&シャドウ */
.benefit-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(45, 197, 115, 0.15);
    border-color: var(--primary);
}

/* オフセット配置 */
.benefits-grid .benefit-item:nth-child(2),
.benefits-grid .benefit-item:nth-child(5) {
    transform: translateY(12px);
}

.benefits-grid .benefit-item:nth-child(2):hover,
.benefits-grid .benefit-item:nth-child(5):hover {
    transform: translateY(2px) scale(1.03);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 4px 12px rgba(45, 197, 115, 0.15);
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: rotate(-10deg) scale(1.1);
}

.benefit-icon i {
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.benefit-item:hover .benefit-icon i {
    color: #fff;
}

.benefit-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .benefits-section {
        padding: var(--section-padding-mobile) 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 28px 20px;
    }
}

/* ================== Industries Section ================== */
.industries-section {
    padding: 32px 0;
    background: var(--primary);
    overflow: hidden;
}

.industries-section .section-header {
    margin-bottom: 16px;
}

.industries-section .section-title {
    font-size: 1.2rem;
    color: #fff;
}

.industries-section .animated-highlight-green {
    color: #fff;
}

/* 横スクロールスライダー - 画面いっぱい */
.industries-slider-wrapper {
    overflow: hidden;
    margin: 0 calc(-50vw + 50%);
    padding: 8px 0;
    position: relative;
    width: 100vw;
}

.industries-grid {
    display: flex;
    gap: 12px;
    width: max-content;
}

.industries-grid:hover {
    animation-play-state: paused;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: none;
    flex-shrink: 0;
}

.industry-item:hover {
    background: #f0fdf4;
}

.industry-icon {
    width: 32px;
    height: 32px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    background: var(--primary);
}

.industry-icon i {
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon i {
    color: #fff;
}

.industry-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 640px) {
    .industries-section {
        padding: 24px 0;
    }

    .industries-section .section-title {
        font-size: 1rem;
    }

    .industry-item {
        padding: 8px 14px;
        gap: 8px;
    }

    .industry-icon {
        width: 28px;
        height: 28px;
    }

    .industry-icon i {
        font-size: 0.75rem;
    }

    .industry-item span {
        font-size: 0.75rem;
    }
}

/* ================== FAQ Section ================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: #f9fafb;
    position: relative;
}

.faq-section::before {
    display: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    padding: 32px 40px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: none;
}

.faq-item {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(45, 197, 115, 0.1);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(45, 197, 115, 0.15);
    transform: scale(1.02);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-q-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.faq-question span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.5;
}

.faq-arrow {
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

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

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

.faq-answer p {
    padding: 0 24px 20px 72px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 20px 16px;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: var(--section-padding-mobile) 0;
    }

    .faq-question {
        padding: 16px 12px;
        gap: 10px;
    }

    .faq-q-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 8px;
        font-size: 0.85rem;
    }

    .faq-question span {
        font-size: 0.85rem;
    }

    .faq-arrow {
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .faq-answer p {
        padding: 0 12px 16px 42px;
        font-size: 0.82rem;
    }
}

/* ================== Demo Section ================== */
.demo-section {
    padding: var(--section-padding) 0;
    background: url("../images/b (2).jpg") center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.demo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 64, 165, 0.8);
    z-index: 1;
    pointer-events: none;
}

.demo-section > .container {
    position: relative;
    z-index: 2;
}

.demo-bg-overlay {
    display: none;
}

.demo-dark-overlay {
    display: none;
}

.demo-section > .container {
    position: relative;
    z-index: 2;
}

.demo-section-illustration {
    position: absolute;
    left: 5%;
    bottom: 10%;
    width: 180px;
    height: 220px;
    opacity: 0.12;
    pointer-events: none;
}

.demo-section-illustration svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1100px) {
    .demo-section-illustration {
        display: none;
    }
}

.demo-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
    border: none;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(45, 197, 115, 0.1);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.demo-badge i {
    color: var(--primary);
}

.demo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.demo-title .highlight {
    color: var(--primary);
}

.demo-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
}

.demo-checklist {
    margin-bottom: 36px;
}

.demo-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

.demo-checklist li:last-child {
    border-bottom: none;
}

.demo-checklist i {
    color: var(--secondary-light);
    font-size: 1rem;
    margin-top: 2px;
}

.demo-checklist span {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.demo-cta {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* デモセクション内のモックアップ配置 */
.demo-mockup-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px;
}

.demo-mockup-wrapper .hero-screen-question {
    font-size: 0.75rem;
    white-space: nowrap;
}

.demo-mockup-wrapper .hero-phone-modern {
    flex-shrink: 0;
}

.demo-mockup-wrapper .hero-phone-frame {
    width: 240px;
    height: 480px;
}

.demo-mockup-wrapper .ai-result-card {
    position: absolute;
    right: -200px;
    bottom: 20px;
    width: 260px;
}

.demo-phone-mockup {
    position: relative;
}

.demo-phone-frame {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 40px;
    padding: 6px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: phoneFloat 4s ease-in-out infinite;
}

.demo-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #0d0d0d;
    border-radius: 10px;
    z-index: 10;
}

.demo-phone-screen {
    background: #fff;
    border-radius: 34px;
    height: 100%;
    padding: 40px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    position: relative;
}

.demo-app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.demo-app-logo {
    width: 32px;
    height: 32px;
    background: #4285f4;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.demo-app-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

.demo-app-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
}

.demo-app-stars i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.demo-app-text {
    background: var(--gray-50);
    padding: 12px;
    border-radius: var(--radius-md);
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.demo-app-text p {
    font-size: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.demo-app-button {
    background: var(--gold-subtle);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.demo-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.demo-float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.demo-float-icon i {
    font-size: 1.1rem;
    color: var(--secondary-light);
}

.demo-float-icon.icon-1 {
    top: 80px;
    right: -30px;
    animation-delay: 0s;
}

.demo-float-icon.icon-1 i {
    color: var(--secondary);
}

.demo-float-icon.icon-2 {
    bottom: 120px;
    left: -30px;
    animation-delay: 2s;
}

/* Demo Phone Modern */
.demo-phone-modern {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-phone-modern-frame {
    width: 240px;
    height: 480px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 40px;
    padding: 6px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
}

.demo-phone-modern-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 20px;
    background: #0d0d0d;
    border-radius: 10px;
    z-index: 10;
}

.demo-phone-modern-screen {
    background: #f8fafc;
    border-radius: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.demo-screen-header {
    padding: 44px 20px 16px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
}

.demo-screen-logo {
    height: 20px;
    width: auto;
    opacity: 0.9;
}

.demo-screen-content {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-screen-question {
    font-size: 0.85rem;
    color: #374151;
    text-align: center;
    font-weight: 400;
}

.demo-screen-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.demo-screen-stars i {
    font-size: 1.4rem;
    color: #fbbf24;
}

.demo-screen-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 4px 0;
}

.demo-screen-ai-box {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.demo-ai-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-ai-icon {
    width: 22px;
    height: 22px;
    background: var(--secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-ai-icon i {
    color: #fff;
    font-size: 0.6rem;
}

.demo-ai-text {
    flex: 1;
    min-width: 0;
}

.demo-ai-label {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1;
}

.demo-ai-preview {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .demo-wrapper {
        grid-template-columns: 1fr;
        padding: 48px 36px;
        text-align: center;
    }

    .demo-cta {
        align-items: center;
    }

    .demo-visual {
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .demo-phone-modern-frame {
        width: 200px;
        height: 400px;
    }

    .demo-mockup-wrapper .hero-phone-frame {
        width: 200px;
        height: 400px;
    }

    .demo-mockup-wrapper .ai-result-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 220px;
        margin-top: 20px;
    }

    .demo-mockup-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .demo-visual {
        display: none;
    }

    .demo-section {
        padding: var(--section-padding-mobile) 0;
    }

    .demo-wrapper {
        padding: 36px 24px;
    }

    .demo-title {
        font-size: 1.4rem;
    }

    .demo-checklist li {
        text-align: left;
    }
}

/* ================== Final CTA Section ================== */
.final-cta-section {
    position: relative;
    padding: 80px 0;
    background: url("../images/b (2).jpg") center / cover no-repeat;
    overflow: hidden;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 64, 165, 0.8);
    z-index: 1;
    pointer-events: none;
}

.final-cta-section > .container {
    position: relative;
    z-index: 2;
}

.final-cta-bg-image,
.final-cta-bg-overlay,
.final-cta-bg,
.final-cta-glow {
    display: none;
}

@keyframes sparkle-twinkle {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.final-cta-illustration {
    position: absolute;
    bottom: 20%;
    width: 100px;
    height: 150px;
    opacity: 0.25;
    pointer-events: none;
}

.final-cta-illustration.left {
    left: 10%;
}

.final-cta-illustration.right {
    right: 10%;
}

.final-cta-illustration svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .final-cta-illustration {
        display: none;
    }
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.final-cta-badge i {
    font-size: 0.9rem;
}

.final-cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.final-cta-title .highlight {
    color: var(--accent-yellow);
}

.final-cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-description strong {
    color: var(--text-white);
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.final-cta-feature i {
    color: #4ade80;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.final-cta-buttons .btn {
    padding: 20px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
}

.final-cta-buttons .btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.final-cta-buttons .btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.final-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta-note i {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 72px 0;
    }

    .final-cta-title {
        font-size: 1.6rem;
    }

    .final-cta-description {
        font-size: 0.95rem;
    }

    .final-cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .final-cta-buttons .btn {
        padding: 18px 32px;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 56px 0;
    }

    .final-cta-title {
        font-size: 1.4rem;
    }

    .final-cta-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* ================== Footer ================== */
.site-footer {
    background: linear-gradient(135deg, var(--secondary) 0%, #142e7a 100%);
    padding: 64px 0 32px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,60 L0,20 C360,60 1080,0 1440,20 L1440,60 Z'/%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    margin-top: -59px;
}

.site-footer::after {
    display: none;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #fff;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* ================== Floating CTA ================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

/* ================== Animations ================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* AOS Custom Styles */
[data-aos] {
    transition-property: transform, opacity;
}

/* ================== Global Hover Improvements ================== */
/* Smooth card hover transitions */
.problem-card,
.feature-card,
.result-card,
.voice-card,
.benefit-item,
.industry-item,
.faq-item {
    will-change: transform;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--secondary-light);
    outline-offset: 2px;
}

/* Button hover improvements */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Card lift effect standardization */
.problem-card:hover,
.voice-card:hover,
.benefit-item:hover {
    transform: translateY(-6px);
}

.feature-card:hover,
.result-card:hover {
    transform: translateY(-4px);
}

/* industry-item hover: defined in Industries Section */

/* ================== Responsive Final Adjustments ================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .btn-xl {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}

/* ================== Contact Section ================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 400;
    margin-left: 4px;
}

.form-label .optional {
    color: var(--gray-500);
    font-size: 0.75rem;
    font-weight: 400;
    margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-600);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-form .btn {
    margin-top: 8px;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


/* ================== Additional Animations & Effects ================== */
/* 段階的フェードインアニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* カード要素に自然なホバー効果 */
.problem-card,
.benefit-item,
.feature-card,
.voice-card {
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}

/* 吹き出し風装飾 */
.bubble-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

/* テキストハイライト効果 */
.text-highlight {
    position: relative;
    display: inline;
}

.text-highlight::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(45, 197, 115, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* 親しみやすいラベル */
.friendly-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 2px 4px 12px rgba(45, 197, 115, 0.25);
}

/* ================================================================
   Section Parallax & Animation Enhancements
   セクションごとの驚きとメリハリ（グリーン＋ネイビー＋イエロー★のみ）
   ================================================================ */

/* ================== Parallax Background Layer ================== */
[data-parallax-section] {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.parallax-shape {
    position: absolute;
    pointer-events: none;
}

/* Circle outline - 丸い輪郭 */
.parallax-shape.shape-circle-outline {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2.5px solid rgba(45, 197, 115, 0.08);
}

.parallax-shape.shape-circle-outline.light {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Dot grid - ドットグリッド */
.parallax-shape.shape-dot-grid {
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(25, 64, 165, 0.07) 2px, transparent 2px);
    background-size: 16px 16px;
}

/* Cross - プラス記号 */
.parallax-shape.shape-cross {
    width: 32px;
    height: 32px;
}

.parallax-shape.shape-cross::before,
.parallax-shape.shape-cross::after {
    content: '';
    position: absolute;
    background: rgba(45, 197, 115, 0.08);
    border-radius: 2px;
}

.parallax-shape.shape-cross::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.parallax-shape.shape-cross::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Ring - リング */
.parallax-shape.shape-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(25, 64, 165, 0.06);
}

.parallax-shape.shape-ring.light {
    border-color: rgba(255, 255, 255, 0.08);
}

/* Triple dots - 3点ドット */
.parallax-shape.shape-dots-triple {
    width: 50px;
    height: 12px;
    display: flex;
    gap: 10px;
}

.parallax-shape.shape-dots-triple::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(45, 197, 115, 0.07);
    box-shadow:
        20px 0 0 rgba(25, 64, 165, 0.06),
        40px 0 0 rgba(45, 197, 115, 0.05);
}

.parallax-shape.shape-dots-triple.light::before {
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        20px 0 0 rgba(255, 255, 255, 0.05),
        40px 0 0 rgba(255, 255, 255, 0.04);
}

/* ================== Stagger Children Animation ================== */
.stagger-children .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.stagger-children.revealed .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.revealed .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.revealed .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.revealed .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.revealed .stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.revealed .stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* ================== Animated Underline Highlight ================== */
.animated-highlight {
    background-image: linear-gradient(transparent 55%, var(--accent-yellow) 55%);
    background-size: 0% 45%;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 4px;
}

.animated-highlight.highlight-active {
    background-size: 100% 45%;
}

.animated-highlight-green {
    background-image: linear-gradient(transparent 55%, rgba(45, 197, 115, 0.5) 55%);
    background-size: 0% 45%;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 4px;
}

.animated-highlight-green.highlight-active {
    background-size: 100% 45%;
}

.animated-highlight-navy {
    background-image: linear-gradient(transparent 55%, var(--secondary) 55%);
    background-size: 0% 45%;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 4px;
}

.animated-highlight-navy.highlight-active {
    background-size: 100% 45%;
}

/* ================== Section Header - Navy Label ================== */
.section-label.navy {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
}

/* ================== Section-specific Background Variety ================== */

/* Problem section - 薄いグリーンドットパターン */
.problem-section .parallax-bg {
    opacity: 0.7;
}

/* Voice section - 微細ドットパターン */
.voice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(45, 197, 115, 0.04) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Features section - ネイビーベースにドット装飾 */
.features-section-rich {
    position: relative;
    overflow: hidden;
}

.features-section-rich .features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* FAQ section - 左側グラデーションライン */
.faq-section .faq-list {
    position: relative;
}

.faq-section .faq-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

/* Final CTA section - パルスリング装飾（波状装飾に移行済み） */

/* ================== Industries 2-Row Crossover Carousel ================== */
.industries-two-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industries-two-rows .industries-row-1 {
    animation: scrollMarqueeLeft 30s linear infinite;
}

.industries-two-rows .industries-row-2 {
    animation: scrollMarqueeRight 30s linear infinite;
}

@keyframes scrollMarqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.industries-two-rows .industries-row-1:hover,
.industries-two-rows .industries-row-2:hover {
    animation-play-state: paused;
}

/* ================== Section Slide Animation ================== */
.section-slide-wrap {
    overflow: hidden;
}

.slide-wrap-navy {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.slide-wrap-green {
    background: #16a34a;
}

.section-slide-right {
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-slide-left {
    transform: translateX(100%);
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-slide.is-visible {
    transform: translateX(0);
}

/* ================== CTA Annotation ================== */
.cta-annotation {
    font-size: 0.5em;
    vertical-align: super;
    opacity: 0.8;
}

.final-cta-note-annotation {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: -12px;
    margin-bottom: 24px;
}

/* ================== CTA White Wave Pattern - Bolder ================== */
/* Wave decorations removed */


/* ================== Benefits Icon Enhancement ================== */
.benefit-icon {
    position: relative;
}

.benefit-item:nth-child(1) .benefit-icon { border-radius: 50%; }
.benefit-item:nth-child(2) .benefit-icon { border-radius: 24px 8px 24px 8px; }
.benefit-item:nth-child(3) .benefit-icon { border-radius: 8px 24px 8px 24px; }
.benefit-item:nth-child(4) .benefit-icon { border-radius: 50% 50% 8px 50%; }
.benefit-item:nth-child(5) .benefit-icon { border-radius: 8px 50% 50% 50%; }
.benefit-item:nth-child(6) .benefit-icon { border-radius: 50% 8px 50% 8px; }

/* ================== Responsive ================== */
@media (max-width: 768px) {
    .parallax-bg {
        display: none;
    }

}

